#4 eric added a polygon to the to the main map, Chase created a new navigator that links the outdoor map to the indoor map, and make polygon's onpress event navigate to the indoor map

オープン
chase apps/ericPolygon から apps/dev への 15 コミットのマージを希望しています

+ 9 - 0
declarations.d.ts

@@ -0,0 +1,9 @@
+declare module "*.svg" {
+  import { SvgProps } from "react-native-svg";
+  const content: React.FC<SvgProps>;
+  export default content;
+}
+
+
+
+

+ 4 - 0
jest.config.js

@@ -0,0 +1,4 @@
+module.exports = {
+    preset: 'react-native',
+    moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
+  };

+ 15 - 10
metro.config.js

@@ -1,11 +1,16 @@
-// Learn more https://docs.expo.io/guides/customizing-metro
-const defaults = require('metro-config/src/defaults/defaults')
+const { getDefaultConfig } = require('metro-config');
 
-module.exports = {
-  resolver: {
-    assetExts: defaults.assetExts.concat(['tflite', 'txt', 'sjson'])
-  },
-  transformer: {
-    assetPlugins: ['expo-asset/tools/hashAssetFiles']
-  }
-}
+module.exports = (async () => {
+  const {
+    resolver: { sourceExts, assetExts },
+  } = await getDefaultConfig();
+  return {
+    transformer: {
+      babelTransformerPath: require.resolve('react-native-svg-transformer'),
+    },
+    resolver: {
+      assetExts: assetExts.filter(ext => ext !== 'svg'),
+      sourceExts: [...sourceExts, 'svg'],
+    },
+  };
+})();

+ 610 - 47
package-lock.json

@@ -11,8 +11,10 @@
         "@babel/runtime": "^7.14.8",
         "@expo-google-fonts/racing-sans-one": "^0.2.0",
         "@expo/vector-icons": "^12.0.0",
+        "@openspacelabs/react-native-zoomable-view": "^2.0.0",
         "@react-native-community/checkbox": "^0.5.8",
         "@react-native-community/slider": "4.1.10",
+        "@react-native-picker/picker": "2.1.0",
         "@react-navigation/bottom-tabs": "^5.11.11",
         "@react-navigation/native": "^5.9.8",
         "@react-navigation/stack": "^5.14.5",
@@ -60,7 +62,7 @@
         "react-native-modal": "^12.0.3",
         "react-native-multi-selectbox": "^1.5.0",
         "react-native-multiple-select": "^0.5.7",
-        "react-native-paper": "^4.9.2",
+        "react-native-paper": "^4.11.2",
         "react-native-permissions": "^3.1.0",
         "react-native-picker-select": "^7.0.0",
         "react-native-popup-menu": "^0.15.12",
@@ -69,7 +71,10 @@
         "react-native-screens": "~3.8.0",
         "react-native-sectioned-multi-select": "^0.8.1",
         "react-native-side-drawer": "^1.2.9",
+        "react-native-spinkit": "^1.5.1",
         "react-native-spokestack": "^6.1.4",
+        "react-native-svg": "12.1.1",
+        "react-native-svg-transformer": "^1.0.0",
         "react-native-web": "^0.13",
         "react-native-windows": "0.64.2",
         "react-query": "^3.19.0",
@@ -1889,18 +1894,6 @@
         "node": ">=6.9.0"
       }
     },
-    "node_modules/@callstack/react-theme-provider": {
-      "version": "3.0.6",
-      "resolved": "https://registry.npmjs.org/@callstack/react-theme-provider/-/react-theme-provider-3.0.6.tgz",
-      "integrity": "sha512-wwKMXfmklfogpalNZT0W+jh76BIquiYUiQHOaPmt/PCyCEP/E6rP+e7Uie6mBZrfkea9WJYJ+mus6r+45JAEhg==",
-      "dependencies": {
-        "deepmerge": "^3.2.0",
-        "hoist-non-react-statics": "^3.3.0"
-      },
-      "peerDependencies": {
-        "react": "^16.3.0"
-      }
-    },
     "node_modules/@cnakazawa/watch": {
       "version": "1.0.4",
       "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz",
@@ -3765,6 +3758,18 @@
         "read-package-json-fast": "^2.0.1"
       }
     },
+    "node_modules/@openspacelabs/react-native-zoomable-view": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/@openspacelabs/react-native-zoomable-view/-/react-native-zoomable-view-2.0.0.tgz",
+      "integrity": "sha512-Crkjn4gEJtBTEaLLVah4QiUZj4VEN80hoaFLYlW5o+pH837cVuKVyR71rTIZ4+DYqNtSQ6xNudKpNJoroNsYgA==",
+      "dependencies": {
+        "prop-types": "^15.7.2"
+      },
+      "peerDependencies": {
+        "react": ">=16.8.0",
+        "react-native": ">=0.54.0"
+      }
+    },
     "node_modules/@parcel/babel-ast-utils": {
       "version": "2.0.0-rc.0",
       "resolved": "https://registry.npmjs.org/@parcel/babel-ast-utils/-/babel-ast-utils-2.0.0-rc.0.tgz",
@@ -5807,6 +5812,15 @@
         "react-native-windows": "*"
       }
     },
+    "node_modules/@react-native-picker/picker": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/@react-native-picker/picker/-/picker-2.1.0.tgz",
+      "integrity": "sha512-iJ/QaDrBMBaW6cFuQyR3DXzcn2h7c5O7mGgmNLCBQHTTtLNBZR+Sxogy6YleFPeToNdysG5mTTkXqBmlWHMQqg==",
+      "peerDependencies": {
+        "react": "16 || 17",
+        "react-native": ">=0.57"
+      }
+    },
     "node_modules/@react-native-windows/cli": {
       "version": "0.64.2",
       "resolved": "https://registry.npmjs.org/@react-native-windows/cli/-/cli-0.64.2.tgz",
@@ -6101,6 +6115,320 @@
         "url": "https://github.com/sindresorhus/is?sponsor=1"
       }
     },
+    "node_modules/@svgr/babel-plugin-add-jsx-attribute": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.0.0.tgz",
+      "integrity": "sha512-MdPdhdWLtQsjd29Wa4pABdhWbaRMACdM1h31BY+c6FghTZqNGT7pEYdBoaGeKtdTOBC/XNFQaKVj+r/Ei2ryWA==",
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/gregberge"
+      },
+      "peerDependencies": {
+        "@babel/core": "^7.0.0-0"
+      }
+    },
+    "node_modules/@svgr/babel-plugin-remove-jsx-attribute": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-6.0.0.tgz",
+      "integrity": "sha512-aVdtfx9jlaaxc3unA6l+M9YRnKIZjOhQPthLKqmTXC8UVkBLDRGwPKo+r8n3VZN8B34+yVajzPTZ+ptTSuZZCw==",
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/gregberge"
+      },
+      "peerDependencies": {
+        "@babel/core": "^7.0.0-0"
+      }
+    },
+    "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-6.0.0.tgz",
+      "integrity": "sha512-Ccj42ApsePD451AZJJf1QzTD1B/BOU392URJTeXFxSK709i0KUsGtbwyiqsKu7vsYxpTM0IA5clAKDyf9RCZyA==",
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/gregberge"
+      },
+      "peerDependencies": {
+        "@babel/core": "^7.0.0-0"
+      }
+    },
+    "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.0.0.tgz",
+      "integrity": "sha512-88V26WGyt1Sfd1emBYmBJRWMmgarrExpKNVmI9vVozha4kqs6FzQJ/Kp5+EYli1apgX44518/0+t9+NU36lThQ==",
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/gregberge"
+      },
+      "peerDependencies": {
+        "@babel/core": "^7.0.0-0"
+      }
+    },
+    "node_modules/@svgr/babel-plugin-svg-dynamic-title": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.0.0.tgz",
+      "integrity": "sha512-F7YXNLfGze+xv0KMQxrl2vkNbI9kzT9oDK55/kUuymh1ACyXkMV+VZWX1zEhSTfEKh7VkHVZGmVtHg8eTZ6PRg==",
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/gregberge"
+      },
+      "peerDependencies": {
+        "@babel/core": "^7.0.0-0"
+      }
+    },
+    "node_modules/@svgr/babel-plugin-svg-em-dimensions": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.0.0.tgz",
+      "integrity": "sha512-+rghFXxdIqJNLQK08kwPBD3Z22/0b2tEZ9lKiL/yTfuyj1wW8HUXu4bo/XkogATIYuXSghVQOOCwURXzHGKyZA==",
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/gregberge"
+      },
+      "peerDependencies": {
+        "@babel/core": "^7.0.0-0"
+      }
+    },
+    "node_modules/@svgr/babel-plugin-transform-react-native-svg": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.0.0.tgz",
+      "integrity": "sha512-VaphyHZ+xIKv5v0K0HCzyfAaLhPGJXSk2HkpYfXIOKb7DjLBv0soHDxNv6X0vr2titsxE7klb++u7iOf7TSrFQ==",
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/gregberge"
+      },
+      "peerDependencies": {
+        "@babel/core": "^7.0.0-0"
+      }
+    },
+    "node_modules/@svgr/babel-plugin-transform-svg-component": {
+      "version": "6.2.0",
+      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.2.0.tgz",
+      "integrity": "sha512-bhYIpsORb++wpsp91fymbFkf09Z/YEKR0DnFjxvN+8JHeCUD2unnh18jIMKnDJTWtvpTaGYPXELVe4OOzFI0xg==",
+      "engines": {
+        "node": ">=12"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/gregberge"
+      },
+      "peerDependencies": {
+        "@babel/core": "^7.0.0-0"
+      }
+    },
+    "node_modules/@svgr/babel-preset": {
+      "version": "6.2.0",
+      "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-6.2.0.tgz",
+      "integrity": "sha512-4WQNY0J71JIaL03DRn0vLiz87JXx0b9dYm2aA8XHlQJQoixMl4r/soYHm8dsaJZ3jWtkCiOYy48dp9izvXhDkQ==",
+      "dependencies": {
+        "@svgr/babel-plugin-add-jsx-attribute": "^6.0.0",
+        "@svgr/babel-plugin-remove-jsx-attribute": "^6.0.0",
+        "@svgr/babel-plugin-remove-jsx-empty-expression": "^6.0.0",
+        "@svgr/babel-plugin-replace-jsx-attribute-value": "^6.0.0",
+        "@svgr/babel-plugin-svg-dynamic-title": "^6.0.0",
+        "@svgr/babel-plugin-svg-em-dimensions": "^6.0.0",
+        "@svgr/babel-plugin-transform-react-native-svg": "^6.0.0",
+        "@svgr/babel-plugin-transform-svg-component": "^6.2.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/gregberge"
+      },
+      "peerDependencies": {
+        "@babel/core": "^7.0.0-0"
+      }
+    },
+    "node_modules/@svgr/core": {
+      "version": "6.2.1",
+      "resolved": "https://registry.npmjs.org/@svgr/core/-/core-6.2.1.tgz",
+      "integrity": "sha512-NWufjGI2WUyrg46mKuySfviEJ6IxHUOm/8a3Ph38VCWSp+83HBraCQrpEM3F3dB6LBs5x8OElS8h3C0oOJaJAA==",
+      "dependencies": {
+        "@svgr/plugin-jsx": "^6.2.1",
+        "camelcase": "^6.2.0",
+        "cosmiconfig": "^7.0.1"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/gregberge"
+      }
+    },
+    "node_modules/@svgr/core/node_modules/cosmiconfig": {
+      "version": "7.0.1",
+      "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz",
+      "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==",
+      "dependencies": {
+        "@types/parse-json": "^4.0.0",
+        "import-fresh": "^3.2.1",
+        "parse-json": "^5.0.0",
+        "path-type": "^4.0.0",
+        "yaml": "^1.10.0"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/@svgr/core/node_modules/import-fresh": {
+      "version": "3.3.0",
+      "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
+      "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
+      "dependencies": {
+        "parent-module": "^1.0.0",
+        "resolve-from": "^4.0.0"
+      },
+      "engines": {
+        "node": ">=6"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/@svgr/core/node_modules/resolve-from": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+      "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
+      "engines": {
+        "node": ">=4"
+      }
+    },
+    "node_modules/@svgr/hast-util-to-babel-ast": {
+      "version": "6.2.1",
+      "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.2.1.tgz",
+      "integrity": "sha512-pt7MMkQFDlWJVy9ULJ1h+hZBDGFfSCwlBNW1HkLnVi7jUhyEXUaGYWi1x6bM2IXuAR9l265khBT4Av4lPmaNLQ==",
+      "dependencies": {
+        "@babel/types": "^7.15.6",
+        "entities": "^3.0.1"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/gregberge"
+      }
+    },
+    "node_modules/@svgr/hast-util-to-babel-ast/node_modules/entities": {
+      "version": "3.0.1",
+      "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz",
+      "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==",
+      "engines": {
+        "node": ">=0.12"
+      },
+      "funding": {
+        "url": "https://github.com/fb55/entities?sponsor=1"
+      }
+    },
+    "node_modules/@svgr/plugin-jsx": {
+      "version": "6.2.1",
+      "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-6.2.1.tgz",
+      "integrity": "sha512-u+MpjTsLaKo6r3pHeeSVsh9hmGRag2L7VzApWIaS8imNguqoUwDq/u6U/NDmYs/KAsrmtBjOEaAAPbwNGXXp1g==",
+      "dependencies": {
+        "@babel/core": "^7.15.5",
+        "@svgr/babel-preset": "^6.2.0",
+        "@svgr/hast-util-to-babel-ast": "^6.2.1",
+        "svg-parser": "^2.0.2"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/gregberge"
+      },
+      "peerDependencies": {
+        "@svgr/core": "^6.0.0"
+      }
+    },
+    "node_modules/@svgr/plugin-svgo": {
+      "version": "6.2.0",
+      "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-6.2.0.tgz",
+      "integrity": "sha512-oDdMQONKOJEbuKwuy4Np6VdV6qoaLLvoY86hjvQEgU82Vx1MSWRyYms6Sl0f+NtqxLI/rDVufATbP/ev996k3Q==",
+      "dependencies": {
+        "cosmiconfig": "^7.0.1",
+        "deepmerge": "^4.2.2",
+        "svgo": "^2.5.0"
+      },
+      "engines": {
+        "node": ">=10"
+      },
+      "funding": {
+        "type": "github",
+        "url": "https://github.com/sponsors/gregberge"
+      },
+      "peerDependencies": {
+        "@svgr/core": "^6.0.0"
+      }
+    },
+    "node_modules/@svgr/plugin-svgo/node_modules/cosmiconfig": {
+      "version": "7.0.1",
+      "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz",
+      "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==",
+      "dependencies": {
+        "@types/parse-json": "^4.0.0",
+        "import-fresh": "^3.2.1",
+        "parse-json": "^5.0.0",
+        "path-type": "^4.0.0",
+        "yaml": "^1.10.0"
+      },
+      "engines": {
+        "node": ">=10"
+      }
+    },
+    "node_modules/@svgr/plugin-svgo/node_modules/deepmerge": {
+      "version": "4.2.2",
+      "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
+      "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==",
+      "engines": {
+        "node": ">=0.10.0"
+      }
+    },
+    "node_modules/@svgr/plugin-svgo/node_modules/import-fresh": {
+      "version": "3.3.0",
+      "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
+      "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
+      "dependencies": {
+        "parent-module": "^1.0.0",
+        "resolve-from": "^4.0.0"
+      },
+      "engines": {
+        "node": ">=6"
+      },
+      "funding": {
+        "url": "https://github.com/sponsors/sindresorhus"
+      }
+    },
+    "node_modules/@svgr/plugin-svgo/node_modules/resolve-from": {
+      "version": "4.0.0",
+      "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+      "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
+      "engines": {
+        "node": ">=4"
+      }
+    },
     "node_modules/@swc/helpers": {
       "version": "0.2.13",
       "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.2.13.tgz",
@@ -24595,11 +24923,11 @@
       }
     },
     "node_modules/react-native-paper": {
-      "version": "4.9.2",
-      "resolved": "https://registry.npmjs.org/react-native-paper/-/react-native-paper-4.9.2.tgz",
-      "integrity": "sha512-J7FRsd0YblQawtuj9I46F//apZHadsCKk6jWpc6njFTYdgUeCdkR8KgEto7cp2WxbcGNELx7KGwPQ4zAgX746A==",
+      "version": "4.11.2",
+      "resolved": "https://registry.npmjs.org/react-native-paper/-/react-native-paper-4.11.2.tgz",
+      "integrity": "sha512-r+M5unY9Avez4we/RijVh4iy8gqxK93R4840aZmbakOJLIuxjfNh3B6SuoxBEbR6diuPRbKVeWHKju4mhltxWw==",
       "dependencies": {
-        "@callstack/react-theme-provider": "^3.0.6",
+        "@callstack/react-theme-provider": "^3.0.7",
         "color": "^3.1.2",
         "react-native-iphone-x-helper": "^1.3.1"
       },
@@ -24609,6 +24937,18 @@
         "react-native-vector-icons": "*"
       }
     },
+    "node_modules/react-native-paper/node_modules/@callstack/react-theme-provider": {
+      "version": "3.0.7",
+      "resolved": "https://registry.npmjs.org/@callstack/react-theme-provider/-/react-theme-provider-3.0.7.tgz",
+      "integrity": "sha512-Ab6rbD2w4u9W3yf7LQQ8evx9m8fZNsoWxt+MFm3AyZnyKQNCJf4K7ip9tHHZgSs+HTdoj38lEqPehvFOVQKvAg==",
+      "dependencies": {
+        "deepmerge": "^3.2.0",
+        "hoist-non-react-statics": "^3.3.0"
+      },
+      "peerDependencies": {
+        "react": ">=16.3.0"
+      }
+    },
     "node_modules/react-native-permissions": {
       "version": "3.1.0",
       "resolved": "https://registry.npmjs.org/react-native-permissions/-/react-native-permissions-3.1.0.tgz",
@@ -24708,6 +25048,14 @@
         "react-native": "*"
       }
     },
+    "node_modules/react-native-spinkit": {
+      "version": "1.5.1",
+      "resolved": "https://registry.npmjs.org/react-native-spinkit/-/react-native-spinkit-1.5.1.tgz",
+      "integrity": "sha512-XkTgP4e+/MZpbI1GdZTIEQ+6WeMWQT4duWnSiXaaVW7py0rtaBLswtAEA6uXQGUhnxMnPWZhbLz7QponpH3ciQ==",
+      "dependencies": {
+        "prop-types": "^15.5.8"
+      }
+    },
     "node_modules/react-native-spokestack": {
       "version": "6.1.4",
       "resolved": "https://registry.npmjs.org/react-native-spokestack/-/react-native-spokestack-6.1.4.tgz",
@@ -24721,7 +25069,6 @@
       "version": "12.1.1",
       "resolved": "https://registry.npmjs.org/react-native-svg/-/react-native-svg-12.1.1.tgz",
       "integrity": "sha512-NIAJ8jCnXGCqGWXkkJ1GTzO4a3Md5at5sagYV8Vh4MXYnL4z5Rh428Wahjhh+LIjx40EE5xM5YtwyJBqOIba2Q==",
-      "peer": true,
       "dependencies": {
         "css-select": "^2.1.0",
         "css-tree": "^1.0.0-alpha.39"
@@ -24731,11 +25078,24 @@
         "react-native": ">=0.50.0"
       }
     },
+    "node_modules/react-native-svg-transformer": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/react-native-svg-transformer/-/react-native-svg-transformer-1.0.0.tgz",
+      "integrity": "sha512-ALHU5VvLLyKM/BvyEG7VYJmqglvaXtU7mGRCxrEwwpJO/GBf1ZMUzc4AeJAjSodj7yYtlDYRxNSt9ySWpaa6JQ==",
+      "dependencies": {
+        "@svgr/core": "^6.1.2",
+        "@svgr/plugin-svgo": "^6.1.2",
+        "path-dirname": "^1.0.2"
+      },
+      "peerDependencies": {
+        "react-native": ">=0.59.0",
+        "react-native-svg": ">=12.0.0"
+      }
+    },
     "node_modules/react-native-svg/node_modules/css-select": {
       "version": "2.1.0",
       "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz",
       "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==",
-      "peer": true,
       "dependencies": {
         "boolbase": "^1.0.0",
         "css-what": "^3.2.1",
@@ -24747,7 +25107,6 @@
       "version": "3.4.2",
       "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz",
       "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==",
-      "peer": true,
       "engines": {
         "node": ">= 6"
       },
@@ -24759,7 +25118,6 @@
       "version": "0.2.2",
       "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz",
       "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==",
-      "peer": true,
       "dependencies": {
         "domelementtype": "^2.0.1",
         "entities": "^2.0.0"
@@ -24769,7 +25127,6 @@
       "version": "1.7.0",
       "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz",
       "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==",
-      "peer": true,
       "dependencies": {
         "dom-serializer": "0",
         "domelementtype": "1"
@@ -24778,14 +25135,12 @@
     "node_modules/react-native-svg/node_modules/domutils/node_modules/domelementtype": {
       "version": "1.3.1",
       "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz",
-      "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==",
-      "peer": true
+      "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w=="
     },
     "node_modules/react-native-svg/node_modules/nth-check": {
       "version": "1.0.2",
       "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz",
       "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==",
-      "peer": true,
       "dependencies": {
         "boolbase": "~1.0.0"
       }
@@ -27427,6 +27782,11 @@
         "node": ">=8"
       }
     },
+    "node_modules/svg-parser": {
+      "version": "2.0.4",
+      "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz",
+      "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ=="
+    },
     "node_modules/svgo": {
       "version": "2.6.0",
       "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.6.0.tgz",
@@ -32291,15 +32651,6 @@
         "to-fast-properties": "^2.0.0"
       }
     },
-    "@callstack/react-theme-provider": {
-      "version": "3.0.6",
-      "resolved": "https://registry.npmjs.org/@callstack/react-theme-provider/-/react-theme-provider-3.0.6.tgz",
-      "integrity": "sha512-wwKMXfmklfogpalNZT0W+jh76BIquiYUiQHOaPmt/PCyCEP/E6rP+e7Uie6mBZrfkea9WJYJ+mus6r+45JAEhg==",
-      "requires": {
-        "deepmerge": "^3.2.0",
-        "hoist-non-react-statics": "^3.3.0"
-      }
-    },
     "@cnakazawa/watch": {
       "version": "1.0.4",
       "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz",
@@ -33756,6 +34107,14 @@
         "read-package-json-fast": "^2.0.1"
       }
     },
+    "@openspacelabs/react-native-zoomable-view": {
+      "version": "2.0.0",
+      "resolved": "https://registry.npmjs.org/@openspacelabs/react-native-zoomable-view/-/react-native-zoomable-view-2.0.0.tgz",
+      "integrity": "sha512-Crkjn4gEJtBTEaLLVah4QiUZj4VEN80hoaFLYlW5o+pH837cVuKVyR71rTIZ4+DYqNtSQ6xNudKpNJoroNsYgA==",
+      "requires": {
+        "prop-types": "^15.7.2"
+      }
+    },
     "@parcel/babel-ast-utils": {
       "version": "2.0.0-rc.0",
       "resolved": "https://registry.npmjs.org/@parcel/babel-ast-utils/-/babel-ast-utils-2.0.0-rc.0.tgz",
@@ -35243,6 +35602,12 @@
         "flow-bin": "0.113.0"
       }
     },
+    "@react-native-picker/picker": {
+      "version": "2.1.0",
+      "resolved": "https://registry.npmjs.org/@react-native-picker/picker/-/picker-2.1.0.tgz",
+      "integrity": "sha512-iJ/QaDrBMBaW6cFuQyR3DXzcn2h7c5O7mGgmNLCBQHTTtLNBZR+Sxogy6YleFPeToNdysG5mTTkXqBmlWHMQqg==",
+      "requires": {}
+    },
     "@react-native-windows/cli": {
       "version": "0.64.2",
       "resolved": "https://registry.npmjs.org/@react-native-windows/cli/-/cli-0.64.2.tgz",
@@ -35474,6 +35839,177 @@
       "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.2.0.tgz",
       "integrity": "sha512-VkE3KLBmJwcCaVARtQpfuKcKv8gcBmUubrfHGF84dXuuW6jgsRYxPtzcIhPyK9WAPpRt2/xY6zkD9MnRaJzSyw=="
     },
+    "@svgr/babel-plugin-add-jsx-attribute": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.0.0.tgz",
+      "integrity": "sha512-MdPdhdWLtQsjd29Wa4pABdhWbaRMACdM1h31BY+c6FghTZqNGT7pEYdBoaGeKtdTOBC/XNFQaKVj+r/Ei2ryWA==",
+      "requires": {}
+    },
+    "@svgr/babel-plugin-remove-jsx-attribute": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-6.0.0.tgz",
+      "integrity": "sha512-aVdtfx9jlaaxc3unA6l+M9YRnKIZjOhQPthLKqmTXC8UVkBLDRGwPKo+r8n3VZN8B34+yVajzPTZ+ptTSuZZCw==",
+      "requires": {}
+    },
+    "@svgr/babel-plugin-remove-jsx-empty-expression": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-6.0.0.tgz",
+      "integrity": "sha512-Ccj42ApsePD451AZJJf1QzTD1B/BOU392URJTeXFxSK709i0KUsGtbwyiqsKu7vsYxpTM0IA5clAKDyf9RCZyA==",
+      "requires": {}
+    },
+    "@svgr/babel-plugin-replace-jsx-attribute-value": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.0.0.tgz",
+      "integrity": "sha512-88V26WGyt1Sfd1emBYmBJRWMmgarrExpKNVmI9vVozha4kqs6FzQJ/Kp5+EYli1apgX44518/0+t9+NU36lThQ==",
+      "requires": {}
+    },
+    "@svgr/babel-plugin-svg-dynamic-title": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.0.0.tgz",
+      "integrity": "sha512-F7YXNLfGze+xv0KMQxrl2vkNbI9kzT9oDK55/kUuymh1ACyXkMV+VZWX1zEhSTfEKh7VkHVZGmVtHg8eTZ6PRg==",
+      "requires": {}
+    },
+    "@svgr/babel-plugin-svg-em-dimensions": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.0.0.tgz",
+      "integrity": "sha512-+rghFXxdIqJNLQK08kwPBD3Z22/0b2tEZ9lKiL/yTfuyj1wW8HUXu4bo/XkogATIYuXSghVQOOCwURXzHGKyZA==",
+      "requires": {}
+    },
+    "@svgr/babel-plugin-transform-react-native-svg": {
+      "version": "6.0.0",
+      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.0.0.tgz",
+      "integrity": "sha512-VaphyHZ+xIKv5v0K0HCzyfAaLhPGJXSk2HkpYfXIOKb7DjLBv0soHDxNv6X0vr2titsxE7klb++u7iOf7TSrFQ==",
+      "requires": {}
+    },
+    "@svgr/babel-plugin-transform-svg-component": {
+      "version": "6.2.0",
+      "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.2.0.tgz",
+      "integrity": "sha512-bhYIpsORb++wpsp91fymbFkf09Z/YEKR0DnFjxvN+8JHeCUD2unnh18jIMKnDJTWtvpTaGYPXELVe4OOzFI0xg==",
+      "requires": {}
+    },
+    "@svgr/babel-preset": {
+      "version": "6.2.0",
+      "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-6.2.0.tgz",
+      "integrity": "sha512-4WQNY0J71JIaL03DRn0vLiz87JXx0b9dYm2aA8XHlQJQoixMl4r/soYHm8dsaJZ3jWtkCiOYy48dp9izvXhDkQ==",
+      "requires": {
+        "@svgr/babel-plugin-add-jsx-attribute": "^6.0.0",
+        "@svgr/babel-plugin-remove-jsx-attribute": "^6.0.0",
+        "@svgr/babel-plugin-remove-jsx-empty-expression": "^6.0.0",
+        "@svgr/babel-plugin-replace-jsx-attribute-value": "^6.0.0",
+        "@svgr/babel-plugin-svg-dynamic-title": "^6.0.0",
+        "@svgr/babel-plugin-svg-em-dimensions": "^6.0.0",
+        "@svgr/babel-plugin-transform-react-native-svg": "^6.0.0",
+        "@svgr/babel-plugin-transform-svg-component": "^6.2.0"
+      }
+    },
+    "@svgr/core": {
+      "version": "6.2.1",
+      "resolved": "https://registry.npmjs.org/@svgr/core/-/core-6.2.1.tgz",
+      "integrity": "sha512-NWufjGI2WUyrg46mKuySfviEJ6IxHUOm/8a3Ph38VCWSp+83HBraCQrpEM3F3dB6LBs5x8OElS8h3C0oOJaJAA==",
+      "requires": {
+        "@svgr/plugin-jsx": "^6.2.1",
+        "camelcase": "^6.2.0",
+        "cosmiconfig": "^7.0.1"
+      },
+      "dependencies": {
+        "cosmiconfig": {
+          "version": "7.0.1",
+          "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz",
+          "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==",
+          "requires": {
+            "@types/parse-json": "^4.0.0",
+            "import-fresh": "^3.2.1",
+            "parse-json": "^5.0.0",
+            "path-type": "^4.0.0",
+            "yaml": "^1.10.0"
+          }
+        },
+        "import-fresh": {
+          "version": "3.3.0",
+          "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
+          "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
+          "requires": {
+            "parent-module": "^1.0.0",
+            "resolve-from": "^4.0.0"
+          }
+        },
+        "resolve-from": {
+          "version": "4.0.0",
+          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+          "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="
+        }
+      }
+    },
+    "@svgr/hast-util-to-babel-ast": {
+      "version": "6.2.1",
+      "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.2.1.tgz",
+      "integrity": "sha512-pt7MMkQFDlWJVy9ULJ1h+hZBDGFfSCwlBNW1HkLnVi7jUhyEXUaGYWi1x6bM2IXuAR9l265khBT4Av4lPmaNLQ==",
+      "requires": {
+        "@babel/types": "^7.15.6",
+        "entities": "^3.0.1"
+      },
+      "dependencies": {
+        "entities": {
+          "version": "3.0.1",
+          "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz",
+          "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q=="
+        }
+      }
+    },
+    "@svgr/plugin-jsx": {
+      "version": "6.2.1",
+      "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-6.2.1.tgz",
+      "integrity": "sha512-u+MpjTsLaKo6r3pHeeSVsh9hmGRag2L7VzApWIaS8imNguqoUwDq/u6U/NDmYs/KAsrmtBjOEaAAPbwNGXXp1g==",
+      "requires": {
+        "@babel/core": "^7.15.5",
+        "@svgr/babel-preset": "^6.2.0",
+        "@svgr/hast-util-to-babel-ast": "^6.2.1",
+        "svg-parser": "^2.0.2"
+      }
+    },
+    "@svgr/plugin-svgo": {
+      "version": "6.2.0",
+      "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-6.2.0.tgz",
+      "integrity": "sha512-oDdMQONKOJEbuKwuy4Np6VdV6qoaLLvoY86hjvQEgU82Vx1MSWRyYms6Sl0f+NtqxLI/rDVufATbP/ev996k3Q==",
+      "requires": {
+        "cosmiconfig": "^7.0.1",
+        "deepmerge": "^4.2.2",
+        "svgo": "^2.5.0"
+      },
+      "dependencies": {
+        "cosmiconfig": {
+          "version": "7.0.1",
+          "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz",
+          "integrity": "sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==",
+          "requires": {
+            "@types/parse-json": "^4.0.0",
+            "import-fresh": "^3.2.1",
+            "parse-json": "^5.0.0",
+            "path-type": "^4.0.0",
+            "yaml": "^1.10.0"
+          }
+        },
+        "deepmerge": {
+          "version": "4.2.2",
+          "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
+          "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="
+        },
+        "import-fresh": {
+          "version": "3.3.0",
+          "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
+          "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
+          "requires": {
+            "parent-module": "^1.0.0",
+            "resolve-from": "^4.0.0"
+          }
+        },
+        "resolve-from": {
+          "version": "4.0.0",
+          "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
+          "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="
+        }
+      }
+    },
     "@swc/helpers": {
       "version": "0.2.13",
       "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.2.13.tgz",
@@ -50382,13 +50918,24 @@
       }
     },
     "react-native-paper": {
-      "version": "4.9.2",
-      "resolved": "https://registry.npmjs.org/react-native-paper/-/react-native-paper-4.9.2.tgz",
-      "integrity": "sha512-J7FRsd0YblQawtuj9I46F//apZHadsCKk6jWpc6njFTYdgUeCdkR8KgEto7cp2WxbcGNELx7KGwPQ4zAgX746A==",
+      "version": "4.11.2",
+      "resolved": "https://registry.npmjs.org/react-native-paper/-/react-native-paper-4.11.2.tgz",
+      "integrity": "sha512-r+M5unY9Avez4we/RijVh4iy8gqxK93R4840aZmbakOJLIuxjfNh3B6SuoxBEbR6diuPRbKVeWHKju4mhltxWw==",
       "requires": {
-        "@callstack/react-theme-provider": "^3.0.6",
+        "@callstack/react-theme-provider": "^3.0.7",
         "color": "^3.1.2",
         "react-native-iphone-x-helper": "^1.3.1"
+      },
+      "dependencies": {
+        "@callstack/react-theme-provider": {
+          "version": "3.0.7",
+          "resolved": "https://registry.npmjs.org/@callstack/react-theme-provider/-/react-theme-provider-3.0.7.tgz",
+          "integrity": "sha512-Ab6rbD2w4u9W3yf7LQQ8evx9m8fZNsoWxt+MFm3AyZnyKQNCJf4K7ip9tHHZgSs+HTdoj38lEqPehvFOVQKvAg==",
+          "requires": {
+            "deepmerge": "^3.2.0",
+            "hoist-non-react-statics": "^3.3.0"
+          }
+        }
       }
     },
     "react-native-permissions": {
@@ -50465,6 +51012,14 @@
         "prop-types": "15.7.2"
       }
     },
+    "react-native-spinkit": {
+      "version": "1.5.1",
+      "resolved": "https://registry.npmjs.org/react-native-spinkit/-/react-native-spinkit-1.5.1.tgz",
+      "integrity": "sha512-XkTgP4e+/MZpbI1GdZTIEQ+6WeMWQT4duWnSiXaaVW7py0rtaBLswtAEA6uXQGUhnxMnPWZhbLz7QponpH3ciQ==",
+      "requires": {
+        "prop-types": "^15.5.8"
+      }
+    },
     "react-native-spokestack": {
       "version": "6.1.4",
       "resolved": "https://registry.npmjs.org/react-native-spokestack/-/react-native-spokestack-6.1.4.tgz",
@@ -50475,7 +51030,6 @@
       "version": "12.1.1",
       "resolved": "https://registry.npmjs.org/react-native-svg/-/react-native-svg-12.1.1.tgz",
       "integrity": "sha512-NIAJ8jCnXGCqGWXkkJ1GTzO4a3Md5at5sagYV8Vh4MXYnL4z5Rh428Wahjhh+LIjx40EE5xM5YtwyJBqOIba2Q==",
-      "peer": true,
       "requires": {
         "css-select": "^2.1.0",
         "css-tree": "^1.0.0-alpha.39"
@@ -50485,7 +51039,6 @@
           "version": "2.1.0",
           "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz",
           "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==",
-          "peer": true,
           "requires": {
             "boolbase": "^1.0.0",
             "css-what": "^3.2.1",
@@ -50496,14 +51049,12 @@
         "css-what": {
           "version": "3.4.2",
           "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz",
-          "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==",
-          "peer": true
+          "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ=="
         },
         "dom-serializer": {
           "version": "0.2.2",
           "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz",
           "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==",
-          "peer": true,
           "requires": {
             "domelementtype": "^2.0.1",
             "entities": "^2.0.0"
@@ -50513,7 +51064,6 @@
           "version": "1.7.0",
           "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz",
           "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==",
-          "peer": true,
           "requires": {
             "dom-serializer": "0",
             "domelementtype": "1"
@@ -50522,8 +51072,7 @@
             "domelementtype": {
               "version": "1.3.1",
               "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz",
-              "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==",
-              "peer": true
+              "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w=="
             }
           }
         },
@@ -50531,13 +51080,22 @@
           "version": "1.0.2",
           "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz",
           "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==",
-          "peer": true,
           "requires": {
             "boolbase": "~1.0.0"
           }
         }
       }
     },
+    "react-native-svg-transformer": {
+      "version": "1.0.0",
+      "resolved": "https://registry.npmjs.org/react-native-svg-transformer/-/react-native-svg-transformer-1.0.0.tgz",
+      "integrity": "sha512-ALHU5VvLLyKM/BvyEG7VYJmqglvaXtU7mGRCxrEwwpJO/GBf1ZMUzc4AeJAjSodj7yYtlDYRxNSt9ySWpaa6JQ==",
+      "requires": {
+        "@svgr/core": "^6.1.2",
+        "@svgr/plugin-svgo": "^6.1.2",
+        "path-dirname": "^1.0.2"
+      }
+    },
     "react-native-vector-icons": {
       "version": "8.1.0",
       "resolved": "https://registry.npmjs.org/react-native-vector-icons/-/react-native-vector-icons-8.1.0.tgz",
@@ -52550,6 +53108,11 @@
         }
       }
     },
+    "svg-parser": {
+      "version": "2.0.4",
+      "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz",
+      "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ=="
+    },
     "svgo": {
       "version": "2.6.0",
       "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.6.0.tgz",

+ 6 - 1
package.json

@@ -28,8 +28,10 @@
     "@babel/runtime": "^7.14.8",
     "@expo-google-fonts/racing-sans-one": "^0.2.0",
     "@expo/vector-icons": "^12.0.0",
+    "@openspacelabs/react-native-zoomable-view": "^2.0.0",
     "@react-native-community/checkbox": "^0.5.8",
     "@react-native-community/slider": "4.1.10",
+    "@react-native-picker/picker": "2.1.0",
     "@react-navigation/bottom-tabs": "^5.11.11",
     "@react-navigation/native": "^5.9.8",
     "@react-navigation/stack": "^5.14.5",
@@ -77,7 +79,7 @@
     "react-native-modal": "^12.0.3",
     "react-native-multi-selectbox": "^1.5.0",
     "react-native-multiple-select": "^0.5.7",
-    "react-native-paper": "^4.9.2",
+    "react-native-paper": "^4.11.2",
     "react-native-permissions": "^3.1.0",
     "react-native-picker-select": "^7.0.0",
     "react-native-popup-menu": "^0.15.12",
@@ -86,7 +88,10 @@
     "react-native-screens": "~3.8.0",
     "react-native-sectioned-multi-select": "^0.8.1",
     "react-native-side-drawer": "^1.2.9",
+    "react-native-spinkit": "^1.5.1",
     "react-native-spokestack": "^6.1.4",
+    "react-native-svg": "12.1.1",
+    "react-native-svg-transformer": "^1.0.0",
     "react-native-web": "^0.13",
     "react-native-windows": "0.64.2",
     "react-query": "^3.19.0",

+ 1 - 1
src/components/Auth/RegistrationSteps/RegisterImage.tsx

@@ -1,4 +1,4 @@
-import axios from 'axios';
+import axios from 'axios';
 import React, { useState } from 'react';
 import { Image, TouchableOpacity, View } from 'react-native';
 import 'react-native-get-random-values';

+ 307 - 8
src/components/Map/MainMapComponent/IndoorMap.tsx

@@ -1,18 +1,317 @@
-import React from "react"
-import { View, Text, Button } from "react-native"
+import React, { useState, useEffect, Children } from 'react';
+import { View, Text, StatusBar, StyleSheet, Dimensions, Button, ActivityIndicator, Alert, Modal } from 'react-native';
+import { Svg, Defs, Rect, Mask, Circle, Marker, Path, Polyline, Image } from 'react-native-svg';
+import { RadioButton } from 'react-native-paper';
+import { Picker } from '@react-native-picker/picker';
+import ReactNativeZoomableView from '@openspacelabs/react-native-zoomable-view/src/ReactNativeZoomableView';
+import Spinner from 'react-native-spinkit'
+import { colors } from "../../../utils/GlobalUtils";
 import { MapStackNavigationProp } from "../../../navigation/MapNavigator"
+import CustomModal from './modal';
+
+import BasementC from './images/BasementC.svg'
+import FirstFloorC from './images/FirstFloorC.svg'
+import SecondFloorC from './images/SecondFloorC.svg'
+import ThirdFloorC from './images/ThirdFloorC.svg'
+import FourthFloorC from './images/FourthFloorC.svg'
+import FifthFloorC from './images/FifthFloorC.svg'
+import { number } from 'yup';
+
 
 interface IndoorMapProps {
     navigation: MapStackNavigationProp
 }
 
+interface IndoorMarker {
+  key: number,
+  coordx: number,
+  coordy: number,
+  description: string,
+  landmark: string
+}
+
 const IndoorMap: React.FC<IndoorMapProps> = ({navigation}) => {
-    return (
-        <View>
-            <Text>Indoor Map</Text>
-            <Button title="Go back to outdoor" onPress={() => navigation.navigate('Outdoor')} />
+  const [floor, setFloor] = useState(0);
+  const [showME, setShowME] = useState(false);
+  const [showDots, setShowDots] = useState(false);
+  const [showAddedDot, setShowAddedDot] = useState(false)
+  const [showModal2, setShowModal] = useState(false)
+  const [checked, setChecked] = React.useState('information');
+  const [coords, setCoords] = useState([0, 0])
+  const [SVGdim, setSVGdim] = useState([1, 1])
+  const [firstTime, setfirstTime] = useState(true)
+
+
+  // Main issue is that I need to first load the page to retrieve dimensions of SVG, THEN I can actually use the 
+  // real proper coordinate values. Before, I used raw numbers, which is why it could load immediately. However here,
+  // my state starts with ratio values (0.5 , 0.25, etc), retrieves SVG coordinates, then finally gets the real positioning.
+
+
+  let indoorCircles: IndoorMarker[][] = [ //first to fifth floor, last element is basement
+    [{ key: 1, coordx: 0.5 * SVGdim[0], coordy: 0.5 * SVGdim[1], description: "nothing yet1", landmark: "stairs" },
+    { key: 2, coordx: 0.25 * SVGdim[0], coordy: 0.25 * SVGdim[1], description: "nothing yet2", landmark: "stairs" }],
+
+    [{ key: 3, coordx: 0.35 * SVGdim[0], coordy: 0.35 * SVGdim[1], description: "nothing yet1", landmark: "stairs" },
+    { key: 4, coordx: 0.15 * SVGdim[0], coordy: 0.15 * SVGdim[1], description: "nothing yet2", landmark: "power" }],
+
+    [{ key: 5, coordx: 0.5 * SVGdim[0], coordy: 0.5 * SVGdim[1], description: "nothing yet1", landmark: "stairs" },
+    { key: 6, coordx: 0.25 * SVGdim[0], coordy: 0.25 * SVGdim[1], description: "nothing yet2", landmark: "stairs" }],
+
+    [{ key: 7, coordx: 0.35 * SVGdim[0], coordy: 0.35 * SVGdim[1], description: "nothing yet1", landmark: "power" },
+    { key: 8, coordx: 0.15 * SVGdim[0], coordy: 0.15 * SVGdim[1], description: "nothing yet2", landmark: "power" }],
+
+    [{ key: 9, coordx: 0.5 * SVGdim[0], coordy: 0.5 * SVGdim[1], description: "nothing yet1", landmark: "stairs" },
+    { key: 10, coordx: 0.25 * SVGdim[0], coordy: 0.25 * SVGdim[1], description: "nothing yet2", landmark: "stairs" }],
+
+    [{ key: 11, coordx: 0.35 * SVGdim[0], coordy: 0.35 * SVGdim[1], description: "nothing yet1", landmark: "power" },
+    { key: 12, coordx: 0.15 * SVGdim[0], coordy: 0.15 * SVGdim[1], description: "nothing yet2", landmark: "stairs" }],
+  ]
+
+  const [indoorMarkers, setIndoorMarkers] = useState([ //first to fifth floor, last element is basement
+    [{ key: 1, coordx: 0.5 * SVGdim[0], coordy: 0.5 * SVGdim[1], description: "nothing yet1", landmark: "stairs" },
+    { key: 2, coordx: 0.25 * SVGdim[0], coordy: 0.25 * SVGdim[1], description: "nothing yet2", landmark: "power" }],
+
+    [{ key: 3, coordx: 0.35 * SVGdim[0], coordy: 0.35 * SVGdim[1], description: "nothing yet1", landmark: "stairs" },
+    { key: 4, coordx: 0.15 * SVGdim[0], coordy: 0.15 * SVGdim[1], description: "nothing yet2", landmark: "power" }],
+
+    [{ key: 5, coordx: 0.5 * SVGdim[0], coordy: 0.5 * SVGdim[1], description: "nothing yet1", landmark: "stairs" },
+    { key: 6, coordx: 0.25 * SVGdim[0], coordy: 0.25 * SVGdim[1], description: "nothing yet2", landmark: "stairs" }],
+
+    [{ key: 7, coordx: 0.35 * SVGdim[0], coordy: 0.35 * SVGdim[1], description: "nothing yet1", landmark: "power" },
+    { key: 8, coordx: 0.15 * SVGdim[0], coordy: 0.15 * SVGdim[1], description: "nothing yet2", landmark: "power" }],
+
+    [{ key: 9, coordx: 0.5 * SVGdim[0], coordy: 0.5 * SVGdim[1], description: "nothing yet1", landmark: "stairs" },
+    { key: 10, coordx: 0.25 * SVGdim[0], coordy: 0.25 * SVGdim[1], description: "nothing yet2", landmark: "stairs" }],
+
+    [{ key: 11, coordx: 0.35 * SVGdim[0], coordy: 0.35 * SVGdim[1], description: "nothing yet1", landmark: "power" },
+    { key: 12, coordx: 0.15 * SVGdim[0], coordy: 0.15 * SVGdim[1], description: "nothing yet2", landmark: "stairs" }],
+  ])
+
+  const loadCircles = (indoorMarkers[floor]).map(item => {
+    while (SVGdim[0] != 1 && SVGdim[1] != 1) {
+      console.log("important numbers are " + SVGdim[0] + " AND " + SVGdim[1])
+      if (item.landmark == "stairs") {
+        return (
+          <Image onPress={() => handleDelete(item.coordx, item.coordy)} key={item.key} x={item.coordx} y={item.coordy} width={0.05 * Dimensions.get("window").width} height={0.05 * Dimensions.get("window").width} href={require('./landmark_images/stairs.png')} />
+          // <Circle onPress={() => handleDelete(item.coordx, item.coordy)} key={item.key} cx={item.coordx} cy={item.coordy} r="4" fill="black" />)
+        )
+      }
+      else if (item.landmark == "power") {
+        return (
+          <Image onPress={() => handleDelete(item.coordx, item.coordy)} key={item.key} x={item.coordx} y={item.coordy} width={0.05 * Dimensions.get("window").width} height={0.05 * Dimensions.get("window").width} href={require('./landmark_images/power.png')} />
+        )
+      }
+      else if (item.landmark == "information") {
+        return (
+          <Image onPress={() => handleDelete(item.coordx, item.coordy)} key={item.key} x={item.coordx} y={item.coordy} width={0.05 * Dimensions.get("window").width} height={0.05 * Dimensions.get("window").width} href={require('./landmark_images/information.png')} />
+        )
+      }
+    }
+  }
+  )
+
+  function addCircle(evt: any) {
+    Alert.alert("Are you sure you want to add a landmark here?", undefined,
+      [{ text: "Cancel", onPress: () => console.log("Cancelled") }
+        ,
+      {
+        text: "Confirm", onPress: () => {
+          setShowModal(true)
+          setCoords([evt.nativeEvent.locationX, evt.nativeEvent.locationY])
+        }
+      }])
+  }
+
+  function addCircleConfirmed() {
+    let newKey: number
+    if (indoorMarkers[floor].length == 0) {
+      newKey = floor * 100
+    }
+    else {
+      newKey = indoorMarkers[floor][indoorMarkers[floor].length - 1].key + 1
+    }
+    const newDot = { key: newKey, coordx: coords[0], coordy: coords[1], description: "filler", landmark: checked }
+    console.log(checked)
+    console.log(newDot)
+    indoorMarkers[floor].push(newDot)
+    setIndoorMarkers(indoorMarkers)
+    setShowAddedDot(true)
+    Alert.alert("Added Circle: coordinates are " + coords[0].toFixed(3) + " and " + coords[1].toFixed(3))
+  }
+
+  function handleDelete(coordx: number, coordy: number) {
+    Alert.alert("Are you sure you want to delete this landmark?", undefined,
+      [{ text: "Cancel", onPress: () => console.log("Cancelled") }
+        ,
+      { text: "Confirm", onPress: () => handleDeleteConfirmed() }])
+
+
+    function handleDeleteConfirmed() {
+      const result = indoorMarkers[floor].filter(indoorMarker => indoorMarker['coordx'] != coordx && indoorMarker['coordy'] != coordy)
+      indoorMarkers[floor] = result
+      setIndoorMarkers(indoorMarkers);
+      setShowDots(true)
+      Alert.alert("Delete: Coordinates of deleted circle were " + coordx.toFixed(3) + " and " + coordy.toFixed(3))
+      console.log(result)
+      console.log(indoorMarkers[floor])
+    }
+  }
+
+  useEffect(() => {
+    // Alert.alert("useEffect has been triggered")
+    setShowAddedDot(false)
+    setShowDots(false)
+    setTimeout(() => setShowME(true), 100);
+  })
+
+
+  const compArray = [
+    <FirstFloorC style={{ borderColor: "blue", borderWidth: 0 }} height={"100%"} width={"100%"} />,
+    <SecondFloorC style={{ borderColor: "blue", borderWidth: 0 }} height={"100%"} width={"100%"} />,
+    <ThirdFloorC style={{ borderColor: "blue", borderWidth: 1 }} height={"100%"} width={"100%"} />,
+    <FourthFloorC style={{ borderColor: "blue", borderWidth: 1 ,  }} height={"100%"} width={"100%"} />,
+    <FifthFloorC style={{ borderColor: "blue", borderWidth: 1 , }} height={"100%"} width={"100%"} />,
+    <BasementC style={{ borderColor: "blue", borderWidth: 1 , }} height={"100%"} width={"100%"} />
+  ]
+
+
+  return (
+    <View style={{ height: '100%', width: '100%', padding: 5 }}>
+      {console.log("THE STATE IS NOW " + floor)}
+      <StatusBar backgroundColor="#121212" />
+      <CustomModal/>
+      <Text style={{ fontSize: 16, marginBottom: 5 }}>Please select a floor you would like to go to.</Text>
+      <Picker
+        style={{ backgroundColor: '#d9d9d9' }}
+        selectedValue={floor} // the text of what gets displayed on the dropdown header
+        onValueChange={(itemValue, itemIndex: number) => {
+          setFloor(itemIndex)
+          setShowME(false)
+        }}>
+        {/* The value in Picker.Item refers to selectedValue in Picker, which refers to the state "floor" */}
+        <Picker.Item label="First Floor" value={0} />
+        <Picker.Item label="Second Floor" value={1} />
+        <Picker.Item label="Third Floor" value={2} />
+        <Picker.Item label="Fourth Floor" value={3} />
+        <Picker.Item label="Fifth Floor" value={4} />
+        <Picker.Item label="Basement" value={5} />
+      </Picker>
+
+      <View style={{ flex: 1, alignItems: "center", height: '100%', width: '100%' }}>
+        <View style={styles.container}>
+          {showME === false ?
+            <View style={{ display: 'flex', flexDirection: 'row', justifyContent: "center", }}>
+              <Spinner size={200} color={colors.red} type="9CubeGrid" />
+            </View> :
+
+            <ReactNativeZoomableView
+              zoomStep={2.8}
+              bindToBorders={true}
+              // initialZoom={2.2}
+              maxZoom={2.8}
+              minZoom={1}
+              initialOffsetY={5}
+              onLongPress={(event) => { addCircle(event) }}
+            >
+              <Modal transparent={true} visible={showModal2}>
+                <View style={{ backgroundColor: "#000000aa", flex: 1 }}>
+                  <View style={{ backgroundColor: "#ffffff", margin: 50, padding: 20, borderRadius: 10, }}>
+                    <Text style={{ fontSize: 18, marginBottom: 10 }}>Type of Landmark to Add:</Text>
+
+                    <View style={{ flexDirection: "row", alignItems: "center" }}>
+                      <RadioButton
+                        value="information"
+                        status={checked === 'information' ? 'checked' : 'unchecked'}
+                        onPress={() => setChecked('information')}
+                      />
+                      <Text style={{ fontSize: 16 }}>Information</Text>
+                    </View>
+
+                    <View style={{ flexDirection: "row", alignItems: "center" }}>
+                      <RadioButton
+                        value="power"
+                        status={checked === 'power' ? 'checked' : 'unchecked'}
+                        onPress={() => setChecked('power')}
+                      />
+                      <Text style={{ fontSize: 16 }}>Power</Text>
+                    </View>
+
+                    <View style={{ flexDirection: "row", alignItems: "center", marginBottom: 11 }}>
+                      <RadioButton
+                        value="stairs"
+                        status={checked === 'stairs' ? 'checked' : 'unchecked'}
+                        onPress={() => setChecked('stairs')}
+                      />
+                      <Text style={{ fontSize: 16 }}>Stairs</Text>
+                    </View>
+
+                    <Button color={"red"} title='OK' onPress={() => {
+                      addCircleConfirmed()
+                      setShowModal(false)
+                    }}></Button>
+                  </View>
+                </View>
+              </Modal>
+
+              <Svg onLayout={event => {
+                // console.log("OFFICIAL: " + event.nativeEvent.layout.width + " , " + event.nativeEvent.layout.height)
+                console.log(SVGdim[0] + " AND " + SVGdim[1])
+                setSVGdim([event.nativeEvent.layout.width, event.nativeEvent.layout.height])
+
+                let ans = indoorCircles[floor].map(item => {
+                  return { ...item, coordx: item.coordx * event.nativeEvent.layout.width, coordy: item.coordy * event.nativeEvent.layout.height }
+                })
+                indoorCircles[floor] = ans
+                // setIndoorMarkers(indoorCircles)
+              }}>
+
+                {firstTime==true? undefined : loadCircles}
+
+                {compArray[floor]}
+              </Svg>
+
+            </ReactNativeZoomableView>
+
+          }
+
         </View>
-    )
+      </View>
+      <Button title="load coordinates" onPress={() => {
+        setfirstTime(false) 
+        setIndoorMarkers(indoorCircles) }} />
+      {/* <Button title="Go back to map" onPress={() => props.navigation.goBack()} /> */}
+
+    </View>
+  );
 }
 
-export default IndoorMap
+const styles = StyleSheet.create({
+  container: {
+    flex: 1,
+    // backgroundColor: "#fff",
+    justifyContent: "center",
+    borderColor: "black",
+    borderWidth: 2,
+    marginVertical: 7,
+    aspectRatio: 2/3,  // (caters to portrait mode) (width is 66% the value of height dimension)
+    // flex: 1,
+    // // backgroundColor: "#fff",
+    // justifyContent: "center",
+    // borderColor: "black",
+    // borderWidth: 2,
+    // width: '100%',
+    // height: '85%',
+    // marginVertical: 15,
+  },
+  image: {
+    alignItems: 'center',
+    justifyContent: 'center',
+  },
+  png: {
+    borderColor: "red",
+    borderWidth: 3
+  }
+});
+
+
+export default IndoorMap;

+ 6455 - 0
src/components/Map/MainMapComponent/images/BasementC.svg

@@ -0,0 +1,6455 @@
+<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="238.61 131.25 322.79 337.5">
+  <title>Produce by Acme CAD Converter</title>
+  <desc>Produce by Acme CAD Converter</desc>
+<polyline points="539.46,247.5 539.46,249.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.74,247.5 541.74,249.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.46,249.6 541.74,249.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.46,247.5 541.74,247.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.8,272.83 541.74,272.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.8,275.55 541.74,275.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.74,272.83 541.74,275.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.8,272.83 539.8,275.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.99,272.99 510.99,275.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.99,275.6 513.09,275.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.99,272.99 513.09,272.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.71,273.23 320.81,273.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.71,275.33 320.81,275.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.81,273.23 320.81,275.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.71,273.23 318.71,275.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.39,276.6 292.26,276.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.64,302 541.74,302" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.64,304.1 541.74,304.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.74,302 541.74,304.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.64,302 539.64,304.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,302 510.97,304.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,304.1 513.07,304.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,302 513.07,302" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.71,302 320.81,302" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.71,304.1 320.81,304.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.81,302 320.81,304.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.71,302 318.71,304.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="290.15,303.89 290.15,305.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="290.15,305.99 291.33,305.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="290.15,303.89 291.33,303.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,330.43 510.97,332.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.07,330.43 513.07,332.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,332.47 513.07,332.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,330.43 513.07,330.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.71,330.68 320.81,330.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.71,332.78 320.81,332.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.81,330.68 320.81,332.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.71,330.68 318.71,332.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="290.15,332.13 290.15,334.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.32,332.13 292.32,334.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="290.15,334.23 292.32,334.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="290.15,332.13 292.32,332.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.64,359.35 542.75,359.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.64,361.45 542.75,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.64,359.24 539.64,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,359.35 510.97,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.07,359.35 513.07,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,361.45 513.07,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,359.35 513.07,359.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.59,359.36 320.69,359.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.59,361.46 320.69,361.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.69,359.36 320.69,361.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.59,359.36 318.59,361.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="290.25,359.35 290.25,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.35,359.35 292.35,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="290.25,361.45 292.35,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="290.25,359.35 292.35,359.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.64,388.03 541.74,388.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.64,390.13 541.74,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.74,388.03 541.74,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.64,388.03 539.64,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,388.03 510.97,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.07,388.03 513.07,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,390.13 513.07,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,388.03 513.07,388.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,388.03 360.8,388.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,390.13 360.8,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.8,388.03 360.8,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,388.03 358.7,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.92,387.78 321.02,387.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.92,389.88 321.02,389.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.02,387.78 321.02,389.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.92,387.78 318.92,389.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.64,416.7 541.71,416.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.64,418.8 541.74,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.71,416.7 541.71,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.64,416.7 539.64,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,416.7 510.97,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.07,416.7 513.07,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,418.8 513.07,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,416.7 513.07,416.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.25,416.58 472.25,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.48,416.58 474.48,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.25,418.8 474.48,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.25,416.58 474.48,416.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.21,416.58 434.21,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="436.32,416.58 436.32,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.21,418.8 436.32,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.21,416.58 436.32,416.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,416.7 360.8,416.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,418.8 360.8,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.8,416.7 360.8,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,416.7 358.7,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.31,416.55 323.18,416.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.31,419.33 323.18,419.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.18,416.55 323.18,419.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.31,416.55 320.31,419.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="306.29,416.7 306.29,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.39,416.7 308.39,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="306.29,418.8 308.39,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="306.29,416.7 308.39,416.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.74,442.29 541.74,444.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.03,444.39 541.74,444.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.03,442.29 541.74,442.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.03,442.29 539.03,444.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="306.29,442.29 308.39,442.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="306.29,444.39 308.39,444.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.39,442.29 308.39,444.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="306.29,442.29 306.29,444.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="306.65,387.78 306.65,390.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304,390.5 306.65,390.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.5,151.12 358.36,151.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="536.09,244.81 536.09,246.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="537.14,244.81 537.14,246.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="515.33,247.09 542.39,247.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="536.09,244.81 537.14,244.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="543.2,246.29 515.33,246.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.09,298.11 544.09,352.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="542.39,264.95 542.39,353.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.48,294.77 543.2,294.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.09,352.74 560.16,352.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="542.39,353.73 561.15,353.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="560.16,303.82 560.16,352.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="561.15,303.08 561.15,353.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="542.75,359.35 542.75,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="542.75,359.35 542.75,359.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="542.4,361.45 542.4,446.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.74,444.39 541.74,442.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="306.29,442.29 306.29,444.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.39,442.29 308.39,444.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="306.29,444.39 308.39,444.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="306.29,442.29 308.39,442.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.88,382.71 278.89,382.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.63,384.49 277.96,384.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.39,288.53 289.39,248.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.94,150.93 320.94,151.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.49,150.93 321.49,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.72,151.12 320.94,151.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.51,152.35 321.49,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.94,150.93 321.49,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.31,152.1 367.07,152.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.31,151.86 367.07,151.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="367.32,152.35 359.07,152.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="367.32,151.61 359.07,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.07,152.35 359.31,152.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.31,152.35 359.31,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.31,151.61 359.07,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.07,151.61 359.07,152.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.36,152.08 387.69,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.36,151.34 387.69,151.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.69,151.34 387.69,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.36,151.34 396.36,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.2,152.08 378.78,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.2,151.34 378.78,151.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.78,151.34 378.78,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.2,152.08 387.69,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.2,152.08 387.69,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.2,151.34 387.2,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="367.53,151.34 367.53,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.29,152.08 378.78,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.29,152.08 378.78,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.29,151.34 378.29,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="367.07,152.35 367.32,152.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="367.32,152.35 367.32,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="367.32,151.61 367.07,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="367.07,151.61 367.07,152.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="367.32,151.12 367.32,152.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.2,152.08 387.2,150.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.69,152.08 387.69,150.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.78,152.08 378.78,150.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.29,152.08 378.29,150.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="367.53,152.08 367.53,150.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.92,150.93 396.92,151.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.77,150.93 398.77,151.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.92,151.12 398.77,151.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.7,152.42 396.36,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.76,150.93 396.36,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.76,150.93 396.36,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.92,150.93 396.36,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.93,152.42 399.27,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.77,150.93 399.27,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.93,152.42 398.93,152.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.7,152.42 396.7,152.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.7,152.94 398.93,152.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.27,152.42 399.51,152.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.51,152.42 399.51,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.51,151.67 399.27,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.27,151.67 399.27,152.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.82,151.06 483.82,150.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.74,151.06 492.74,150.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.23,151.06 493.23,150.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.15,151.06 502.15,150.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.65,151.06 501.65,150.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.05,445.87 398.28,445.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.68,450.5 395.68,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.82,359.35 507.82,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.63,359.35 502.63,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,361.45 507.82,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.4,359.35 507.82,359.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.4,359.35 511.4,349.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.63,361.45 493.7,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.63,359.35 499.04,359.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.88,360.09 499.04,360.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.88,360.71 499.04,360.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,360.09 508.56,360.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,360.71 508.56,360.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.88,360.09 501.88,360.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.56,360.09 508.56,360.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.04,360.71 499.04,360.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="498.05,360.71 498.05,330.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.04,359.35 499.04,349.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.4,349.47 499.04,349.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.4,348.48 499.04,348.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.04,348.48 499.04,338.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.4,348.48 511.4,340.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,338.59 499.04,338.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.61,337.23 498.79,337.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,331.17 498.79,331.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="498.79,337.23 498.79,331.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,338.59 513.07,338.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,340.69 513.07,340.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.07,338.59 513.07,340.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,338.59 510.97,340.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,330.43 498.05,330.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.65,307.78 541.65,324.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="540.91,304.1 540.91,324.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.73,295.89 513.07,295.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.65,307.78 542.39,307.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.64,361.45 519.19,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.35,359.24 514.12,359.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.07,360.03 513.63,360.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.64,360.59 519.81,360.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.35,345.86 514.22,345.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.44,344.83 514.22,344.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.12,360.59 514.12,359.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.63,360.59 513.63,360.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="519.81,360.03 539.64,360.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="519.31,360.59 519.31,359.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="519.81,360.59 519.81,360.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.63,360.59 513.07,360.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="519.31,359.24 539.64,359.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="519.31,360.59 519.19,360.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="543.34,360.65 543.71,360.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="543.34,360.65 544.68,360.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="525.61,358.79 525.61,353.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="524.01,346 529.87,346" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="524.01,359.1 536.92,359.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="524.01,358.79 536.92,358.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="524.01,346.31 529.72,346.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="524.01,353.6 524.01,351.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="524.01,351.5 527.25,351.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="524.32,351.81 527.1,351.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="524.32,353.29 536.61,353.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="524.01,353.6 536.92,353.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="524.32,353.29 524.32,351.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="536.92,351.5 536.92,353.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="536.61,351.81 536.61,353.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="524.01,346 524.01,346.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="524.01,358.79 524.01,359.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="524.63,351.5 524.63,346.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="536.92,346.31 536.92,346" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="536.92,358.79 536.92,359.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="525.86,351.5 525.86,346.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="527.1,351.5 527.1,346.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="528.33,348.62 528.33,346.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="529.26,351.5 529.26,349.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.5,351.5 530.5,348.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="531.73,351.5 531.73,346.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="532.97,351.5 532.97,346.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="526.85,358.79 526.85,353.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="528.09,358.79 528.09,353.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="529.32,358.79 529.32,353.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.56,358.79 530.56,353.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="531.79,358.79 531.79,353.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="533.03,358.79 533.03,353.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="534.27,358.79 534.27,353.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="535.5,358.79 535.5,353.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="534.2,351.5 534.2,346.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="535.44,351.5 535.44,346.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="536.74,358.79 536.74,353.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="527.1,351.81 528.13,349.66 527.33,348.64 529.91,348.59 529.12,347.57 529.96,345.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="528.38,351.81 529.22,350.05 528.43,349.03 531.01,348.98 530.21,347.96 531.24,345.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="528.38,351.81 536.61,351.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="528.53,351.5 536.92,351.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="531.21,346 536.92,346" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="531.06,346.31 536.92,346.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.5,348.33 530.5,347.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="529.57,348.6 529.57,348.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="529.57,346.63 529.57,346.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="532.32,349.96 531.76,348.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="531.76,348.83 532.32,347.7" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="532.61,349.96 532.04,348.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="532.04,348.83 532.61,347.7" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="532.61,349.96 532.32,349.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="532.61,347.7 532.32,347.7" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M532.61 349.96L532.32 349.96 531.76 348.83 532.04 348.83 532.61 349.96Z" fill-rule="evenodd" fill="blue"/>
+<path d="M532.61 347.7L532.32 347.7 531.76 348.83 532.04 348.83 532.61 347.7Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="537.75,348.83 531.74,348.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="524.4,356.24 539.79,356.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.79,356.24 539.79,348.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="537.75,348.83 539.79,348.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="543.34,361.45 543.34,360.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="542.75,361.45 543.34,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="542.4,388.03 539.64,388.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.74,389.33 542.4,389.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.64,388.03 510.97,388.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.58,384.2 520.3,384.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.89,384.51 519.63,384.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="532.17,376.78 519.63,376.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="531.86,376.47 519.63,376.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="532.17,372.39 525.41,372.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="531.86,372.7 525.26,372.7" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.58,364.98 528.95,364.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.89,364.67 529.09,364.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="519.63,384.2 539.58,384.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.58,364.98 539.58,384.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.89,364.67 539.89,384.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="532.17,372.39 532.17,376.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="531.86,372.7 531.86,376.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="532.17,372.39 532.17,364.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="532.17,376.78 532.17,384.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.81,372.39 530.81,364.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="529.45,372.39 529.45,364.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="528.09,372.39 528.09,367.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="526.73,372.39 526.73,368.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.81,376.78 530.81,384.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="529.45,376.78 529.45,384.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="528.09,376.78 528.09,384.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="526.73,376.78 526.73,384.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="525.37,376.78 525.37,384.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="524.01,376.78 524.01,384.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="522.65,376.78 522.65,384.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="521.29,376.78 521.29,384.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="519.93,376.78 519.93,384.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="519.93,376.78 520.3,376.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="519.63,376.47 519.63,376.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="519.63,384.2 519.63,384.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="542.4,381.72 539.89,381.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="542.4,382.1 539.89,382.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="542.4,367.76 539.89,367.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="542.4,367.39 539.89,367.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.16,369.88 529.6,368.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="529.6,368.75 530.16,367.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.45,369.88 529.88,368.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="529.88,368.75 530.45,367.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.45,369.88 530.16,369.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.45,367.62 530.16,367.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M530.45 369.88L530.16 369.88 529.6 368.75 529.88 368.75 530.45 369.88Z" fill-rule="evenodd" fill="blue"/>
+<path d="M530.45 367.62L530.16 367.62 529.6 368.75 529.88 368.75 530.45 367.62Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="535.59,368.75 529.58,368.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="535.59,368.75 535.59,380.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="535.59,380.58 518.68,380.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.63,251.5 292.63,281.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.32,251.19 292.32,281.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.33,258.92 300.33,281.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.64,259.23 300.64,281.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.63,251.5 306.34,251.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.32,251.19 306.49,251.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.33,258.92 302.8,258.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.64,259.23 302.65,259.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.33,258.92 292.63,258.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.33,260.28 292.63,260.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.33,261.64 292.63,261.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.33,263 292.63,263" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.33,264.35 292.63,264.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.33,265.71 292.63,265.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.33,267.07 292.63,267.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.33,268.43 292.63,268.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.33,269.79 292.63,269.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.33,271.15 292.63,271.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.33,272.51 292.63,272.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.33,273.87 292.63,273.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.33,275.23 292.63,275.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.33,276.59 292.94,276.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.33,277.95 292.63,277.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.32,281.18 292.63,281.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.33,281.18 300.64,281.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.33,258.92 300.33,251.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.69,258.92 301.69,251.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.05,258.41 303.05,251.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.4,255.09 304.4,251.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.76,255.06 305.76,254.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.65,259.24 304.13,256.13 303.34,255.11 305.92,255.06 305.13,254.04 306.49,251.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.76,252.7 305.76,251.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.47,279.23 296.47,255.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.35,253.97 302.92,255.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.92,255.1 302.35,256.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.07,253.97 302.64,255.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.64,255.1 302.07,256.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.07,253.97 302.35,253.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.07,256.23 302.35,256.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M302.07 253.97L302.35 253.97 302.92 255.1 302.64 255.1 302.07 253.97Z" fill-rule="evenodd" fill="blue"/>
+<path d="M302.07 256.23L302.35 256.23 302.92 255.1 302.64 255.1 302.07 256.23Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="296.47,255.1 302.94,255.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="356.59,152.35 321.49,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.36,150.93 396.36,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.7,152.94 375.1,152.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.06,244.74 514.71,244.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.06,247.09 515.33,247.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.06,247.09 511.06,244.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="515.33,247.09 515.33,246.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.09,188.66 514.09,189.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.55,157.55 319.51,157.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,186.18 318.87,186.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.69,186.6 317.69,187.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,186.04 317.32,186.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.32,186.6 317.32,186.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.32,187.99 317.32,188.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,213.88 318.87,213.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.72,151.12 317.72,159.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.51,157.55 319.51,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.37,153.62 318.37,157.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,153.62 318.87,157.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.18,165.67 514.46,165.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.03,166.92 511.03,167.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.73,160.74 514.46,160.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.46,160.19 514.65,160.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.46,160.74 514.65,160.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.46,151.06 514.46,160.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.57,151.06 510.57,150.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.06,151.06 511.06,150.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.82,151.06 483.82,160.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.18,152.82 485.18,160.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.18,152.82 512.73,152.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.46,151.06 511.06,151.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="367.04,151.12 358.91,151.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.29,150.84 378.78,150.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.2,150.84 387.69,150.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.2,150.96 378.78,150.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.36,150.96 387.69,150.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.74,150.84 493.23,150.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.65,150.84 502.15,150.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.74,151.06 484.32,151.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.65,151.06 493.23,151.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.57,151.06 502.15,151.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.82,150.84 484.32,150.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.65,160.19 514.65,160.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.57,150.84 511.06,150.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.73,152.82 512.73,160.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.32,150.84 484.32,151.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,153.62 318.37,153.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,157.55 318.37,157.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="525.34,372.7 526.85,369.53 526.06,368.52 528.63,368.47 527.84,367.45 529.17,364.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="496.43,159.99 507.8,159.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="500.45,158.5 507.8,158.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="500.54,158.32 507.99,158.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="496.43,160.17 507.99,160.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="496.43,160.17 496.43,165.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="497.79,160.17 497.79,165.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="499.15,160.17 499.15,165.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="500.51,160.17 500.51,165.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="501.87,160.17 501.87,165.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="503.23,160.17 503.23,165.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="504.59,160.17 504.59,165.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="505.95,160.17 505.95,165.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="507.31,160.17 507.31,165.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="507.8,158.5 507.8,159.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="507.99,158.32 507.99,160.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="505.81,152.82 505.81,158.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="504.45,152.82 504.45,158.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="503.09,152.98 503.09,158.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="501.73,155.65 501.73,158.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="500.45,158.5 501.32,156.69 500.52,155.68 503.1,155.63 502.31,154.61 503.33,152.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="510.28,155.68 510.28,162.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="510.28,162.96 495.04,162.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="504,156.81 503.44,155.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="503.44,155.68 504,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="504.28,156.81 503.72,155.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="503.72,155.68 504.28,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="504.28,156.81 504,156.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="504.28,154.55 504,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M504.28 156.81L504 156.81 503.44 155.68 503.72 155.68 504.28 156.81Z" fill-rule="evenodd" fill="blue"/>
+<path d="M504.28 154.55L504 154.55 503.44 155.68 503.72 155.68 504.28 154.55Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="510.28,155.68 503.42,155.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="541.74,302 542.39,302" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="540.91,324.84 542.39,324.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.65,324.1 542.39,324.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,338.59 499.04,348.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.04,338.59 511.4,348.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.63,359.35 507.82,359.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.13,390.5 304.13,446.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="540.97,390.35 540.97,416.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.71,390.13 541.71,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.64,388.77 523.17,388.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.17,388.77 523.17,389.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.07,417.23 539.64,417.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.74,418.8 542.4,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.71,418.31 542.4,418.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.17,390.35 523.17,391.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.17,389.85 539.64,389.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.17,390.35 540.97,390.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="519.59,398.38 519.59,416.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.43,388.77 522.43,391.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="518.85,398.38 518.85,416.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.43,388.77 513.32,388.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="519.59,416.49 522.43,416.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.17,416.49 540.97,416.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.32,388.77 513.32,390.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.74,390.38 513.32,390.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.74,390.38 511.74,391.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511,390.13 511,391.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.43,397.64 511.74,397.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.43,398.38 519.59,398.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="518.85,398.38 500.37,398.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.43,398.38 522.43,416.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511,397.64 499.13,397.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.7,416.98 510.97,416.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.7,361.45 493.7,366.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.7,371.84 493.7,374.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.95,360.71 492.95,366.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.95,371.84 492.95,374.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,418.8 493.7,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.97,418.06 493.7,418.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.7,416.49 518.85,416.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.7,416.98 493.7,422.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.37,398.38 500.37,400.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.63,398.38 499.63,400.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.63,398.38 499.13,398.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.63,405.8 493.7,405.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.37,406.54 493.7,406.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.7,406.54 493.7,416.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="498.05,360.71 492.95,360.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="542.39,247.09 542.39,264.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="519.22,345.08 542.39,345.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.94,265.57 511.94,247.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="320.81,275.33 330.14,275.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.32,316.65 331.32,310.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.32,290.94 336.42,290.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.81,302.93 330.14,302.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.69,301.94 330.14,301.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.32,309.11 335.8,309.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.32,310.1 335.8,310.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.7,316.65 330.14,316.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.7,317.64 336.79,317.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.71,275.33 318.71,292.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.7,304.1 319.7,316.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.38,275.33 320.38,288.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.32,316.65 335.8,316.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.32,309.11 331.32,302.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.32,302.93 335.8,302.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.32,301.94 331.32,291.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.32,301.94 335.43,301.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.32,290.94 331.32,285.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.14,302.93 330.14,316.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.14,275.33 330.14,279.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.14,273.97 330.14,274.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.8,316.65 335.8,314.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.79,317.64 336.79,314.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.8,309.11 335.8,308.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.79,312 335.8,312" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.79,314.82 335.8,314.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.79,312 336.79,308.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.8,312 335.8,310.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.8,308.37 336.79,308.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.8,304.66 336.79,304.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.79,304.66 336.79,301.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.8,304.66 335.8,302.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.69,288.59 330.14,288.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.38,288.1 330.14,288.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.69,288.59 320.69,292.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.14,288.59 330.14,301.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.81,273.97 330.14,273.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.81,274.59 330.14,274.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.14,285.75 330.14,288.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.69,297.92 320.69,301.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.71,297.92 318.71,330.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.14,279.07 331.32,279.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.14,285.75 331.32,285.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.81,273.23 331.32,273.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304,387.78 306.65,387.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="260.5,379.07 278.89,379.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="260.5,378.33 278.89,378.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.35,334.73 303.78,334.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="319.7,317.64 319.7,330.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.85,271.53 288.55,271.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.85,280.9 263.15,280.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="262.38,281.67 262.38,321.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="263.15,280.9 263.15,298.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="263.15,298.57 281.39,298.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="263.13,299.35 280.43,299.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="263.13,299.35 263.12,321.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.85,321.62 262.38,321.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.88,322.37 291.7,322.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="263.12,321.62 284.47,321.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.21,321.62 291.48,321.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="280.43,315.69 284.47,315.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.21,315.69 291.48,315.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="280.43,299.35 280.43,315.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.16,314.58 291.33,314.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.17,314.58 281.42,314.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.42,299.35 281.42,314.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.33,305.99 291.33,314.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.48,315.69 291.48,316.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.16,300.95 282.16,314.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.33,300.95 291.33,303.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.16,281.7 282.16,300.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.39,280.85 281.39,298.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.03,276.9 288.55,276.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.21,281.7 288.21,290.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.03,276.9 288.03,280.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="473.36,419.72 473.36,445.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="479.85,398.38 479.85,418.28" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.98,418.81 480.47,418.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475.29,418.28 479.85,418.28" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="480.47,397.64 480.47,418.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="494.19,398.38 493.7,398.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="494.19,397.64 493.7,397.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.13,398.38 499.13,397.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="494.19,398.38 494.19,397.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="494.44,398.38 494.44,402.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="498.89,398.38 498.73,399.55 498.27,400.64 497.54,401.57 496.58,402.28 495.48,402.7 494.3,402.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.58,398.38 494.58,402.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.58,398.38 494.58,398.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.44,398.38 494.58,398.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="498.89,398.38 499.13,398.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.13,398.38 499.13,397.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.13,397.64 498.89,397.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="498.89,397.64 498.89,398.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.19,398.38 494.44,398.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.44,398.38 494.44,397.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.44,397.64 494.19,397.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.19,397.64 494.19,398.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.63,405.55 499.63,405.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.37,405.55 500.37,406.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.63,400.61 500.37,400.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.63,405.55 500.37,405.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.37,400.85 504.82,400.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.37,405.3 501.54,405.15 502.63,404.69 503.56,403.95 504.27,403 504.69,401.9 504.82,400.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.37,400.99 504.81,400.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.37,400.99 500.37,400.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.37,400.85 500.37,400.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.63,405.3 499.63,405.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.63,405.55 500.37,405.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.37,405.55 500.37,405.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.37,405.3 499.63,405.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.63,400.61 499.63,400.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.63,400.85 500.37,400.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.37,400.85 500.37,400.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.37,400.61 499.63,400.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.74,396.11 511.74,397.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511,396.11 511,397.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.74,391.17 511,391.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.74,396.11 511,396.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.74,391.42 516.19,391.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.74,395.87 512.91,395.71 514,395.25 514.93,394.52 515.64,393.57 516.07,392.46 516.19,391.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.74,391.56 516.18,391.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.74,391.56 511.74,391.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.74,391.42 511.74,391.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511,395.87 511,396.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511,396.11 511.74,396.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.74,396.11 511.74,395.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.74,395.87 511,395.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511,391.17 511,391.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511,391.42 511.74,391.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.74,391.42 511.74,391.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.74,391.17 511,391.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="522.43,396.83 522.43,397.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.17,396.83 523.17,416.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.43,391.89 523.17,391.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.43,396.83 523.17,396.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.17,392.13 527.62,392.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.17,396.58 524.35,396.43 525.44,395.96 526.37,395.23 527.07,394.28 527.5,393.18 527.62,392" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.17,392.27 527.61,392.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.17,392.27 523.17,392.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.17,392.13 523.17,392.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="522.43,396.58 522.43,396.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="522.43,396.83 523.17,396.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.17,396.83 523.17,396.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.17,396.58 522.43,396.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="522.43,391.89 522.43,392.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="522.43,392.13 523.17,392.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.17,392.13 523.17,391.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.17,391.89 522.43,391.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<path d="M511.31 416.49L511.19 416.49 511.19 415.5 511.31 415.5 511.31 416.49Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="515.27,414.02 515.35,414.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.35,414.34 515.6,414.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.6,414.64 515.96,414.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.96,414.83 516.41,414.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.41,414.9 517.08,414.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.67,415.28 517.85,415.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.85,415.28 517.8,415.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.8,415.07 517.64,414.82 517.36,414.72 517.08,414.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.08,413.24 517.36,413.32 517.64,413.22 517.8,412.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.67,412.77 518.67,415.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.85,412.77 517.8,412.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.67,412.77 517.85,412.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.08,413.24 516.41,413.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.41,413.14 515.96,413.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.96,413.21 515.6,413.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.6,413.4 515.35,413.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.35,413.7 515.27,414.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<path d="M518.85 411.73L518.85 411.86 511.31 411.86 511.31 411.73 518.85 411.73Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M511.31 412.54L511.19 412.54 511.19 411.05 511.31 411.05 511.31 412.54Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="511.25,415.5 512.19,415.35 513.02,414.92 513.68,414.24 514.09,413.39 514.22,412.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="511.25,412.54 514.22,412.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="515.27,409.57 515.35,409.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.35,409.9 515.6,410.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.6,410.19 515.96,410.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.96,410.38 516.41,410.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.41,410.45 517.08,410.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.67,410.83 517.85,410.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.85,410.83 517.8,410.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.8,410.62 517.64,410.37 517.36,410.27 517.08,410.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.08,408.79 517.36,408.87 517.64,408.77 517.8,408.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.67,408.32 518.67,410.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.85,408.32 517.8,408.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.67,408.32 517.85,408.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.08,408.79 516.41,408.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.41,408.69 515.96,408.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.96,408.76 515.6,408.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.6,408.95 515.35,409.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.35,409.25 515.27,409.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<path d="M518.85 407.28L518.85 407.41 511.31 407.41 511.31 407.28 518.85 407.28Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M511.31 408.09L511.19 408.09 511.19 406.6 511.31 406.6 511.31 408.09Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="511.25,411.05 512.19,410.9 513.02,410.47 513.68,409.79 514.09,408.94 514.22,408" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="511.25,408.09 514.22,408.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="515.27,405.12 515.35,405.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.35,405.45 515.6,405.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.6,405.74 515.96,405.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.96,405.93 516.41,406" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.41,406 517.08,405.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.67,406.38 517.85,406.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.85,406.38 517.8,406.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.8,406.17 517.64,405.92 517.36,405.82 517.08,405.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.08,404.34 517.36,404.42 517.64,404.32 517.8,404.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.67,403.87 518.67,406.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.85,403.87 517.8,404.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.67,403.87 517.85,403.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.08,404.34 516.41,404.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.41,404.24 515.96,404.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.96,404.31 515.6,404.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.6,404.5 515.35,404.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.35,404.8 515.27,405.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<path d="M518.85 402.84L518.85 402.96 511.31 402.96 511.31 402.84 518.85 402.84Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M511.31 403.64L511.19 403.64 511.19 402.16 511.31 402.16 511.31 403.64Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="511.25,406.6 512.19,406.45 513.02,406.02 513.68,405.34 514.09,404.49 514.22,403.55" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="511.25,403.64 514.22,403.64" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="515.27,400.67 515.35,401" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.35,401 515.6,401.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.6,401.29 515.96,401.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.96,401.48 516.41,401.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.41,401.55 517.08,401.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.67,401.93 517.85,401.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.85,401.93 517.8,401.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.8,401.72 517.64,401.48 517.36,401.37 517.08,401.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.08,399.89 517.36,399.97 517.64,399.87 517.8,399.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.67,399.42 518.67,401.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.85,399.42 517.8,399.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.67,399.42 517.85,399.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.08,399.89 516.41,399.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.41,399.79 515.96,399.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.96,399.86 515.6,400.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.6,400.05 515.35,400.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.35,400.35 515.27,400.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="511.25,402.16 512.19,402 513.02,401.57 513.68,400.89 514.09,400.04 514.22,399.1" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="511.25,399.19 514.22,399.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<path d="M511.19 398.38L511.31 398.38 511.31 399.19 511.19 399.19 511.19 398.38Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M531.02 416.48L530.89 416.48 530.89 415.68 531.02 415.68 531.02 416.48Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="526.76,414.19 526.68,413.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.68,413.87 526.43,413.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.43,413.57 526.07,413.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.07,413.38 525.63,413.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.63,413.31 524.95,413.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.37,412.94 524.18,412.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.18,412.94 524.23,413.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.23,413.15 524.4,413.39 524.67,413.49 524.95,413.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.95,414.97 524.67,414.89 524.4,415 524.23,415.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.37,415.45 523.37,412.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.18,415.45 524.23,415.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.37,415.45 524.18,415.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.95,414.97 525.63,415.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.63,415.07 526.07,415" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.07,415 526.43,414.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.43,414.81 526.68,414.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.68,414.52 526.76,414.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<path d="M523.17 412.03L523.17 411.91 530.72 411.91 530.72 412.03 523.17 412.03Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M530.84 412.71L530.72 412.71 530.72 411.23 530.84 411.23 530.84 412.71Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="530.78,412.71 529.85,412.86 529.01,413.3 528.35,413.98 527.94,414.83 527.82,415.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="530.78,415.68 527.82,415.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="526.76,409.74 526.68,409.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.68,409.42 526.43,409.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.43,409.12 526.07,408.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.07,408.93 525.63,408.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.63,408.86 524.95,408.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.37,408.49 524.18,408.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.18,408.49 524.23,408.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.23,408.7 524.4,408.94 524.67,409.04 524.95,408.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.95,410.52 524.67,410.44 524.4,410.55 524.23,410.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.37,411 523.37,408.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.18,411 524.23,410.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.37,411 524.18,411" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.95,410.52 525.63,410.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.63,410.62 526.07,410.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.07,410.55 526.43,410.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.43,410.37 526.68,410.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.68,410.07 526.76,409.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<path d="M523.17 407.58L523.17 407.46 530.72 407.46 530.72 407.58 523.17 407.58Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M530.84 408.26L530.72 408.26 530.72 406.78 530.84 406.78 530.84 408.26Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="530.78,408.26 529.85,408.41 529.01,408.85 528.35,409.53 527.94,410.38 527.82,411.32" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="530.78,411.23 527.82,411.23" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="526.76,405.29 526.68,404.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.68,404.97 526.43,404.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.43,404.67 526.07,404.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.07,404.49 525.63,404.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.63,404.42 524.95,404.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.37,404.04 524.18,404.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.18,404.04 524.23,404.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.23,404.25 524.4,404.49 524.67,404.59 524.95,404.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.95,406.07 524.67,405.99 524.4,406.1 524.23,406.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.37,406.55 523.37,404.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.18,406.55 524.23,406.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.37,406.55 524.18,406.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.95,406.07 525.63,406.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.63,406.17 526.07,406.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.07,406.1 526.43,405.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.43,405.92 526.68,405.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.68,405.62 526.76,405.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<path d="M523.17 403.13L523.17 403.01 530.72 403.01 530.72 403.13 523.17 403.13Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M530.84 403.81L530.72 403.81 530.72 402.33 530.84 402.33 530.84 403.81Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="530.78,403.81 529.85,403.96 529.01,404.4 528.35,405.08 527.94,405.93 527.82,406.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="530.78,406.78 527.82,406.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="526.76,400.84 526.68,400.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.68,400.52 526.43,400.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.43,400.22 526.07,400.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.07,400.04 525.63,399.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.63,399.97 524.95,400.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.37,399.59 524.18,399.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.18,399.59 524.23,399.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.23,399.8 524.4,400.04 524.67,400.14 524.95,400.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.95,401.62 524.67,401.55 524.4,401.65 524.23,401.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.37,402.1 523.37,399.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.18,402.1 524.23,401.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.37,402.1 524.18,402.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.95,401.62 525.63,401.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.63,401.72 526.07,401.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.07,401.65 526.43,401.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.43,401.47 526.68,401.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.68,401.17 526.76,400.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="530.78,399.36 529.85,399.51 529.01,399.95 528.35,400.63 527.94,401.48 527.82,402.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="530.78,402.33 527.82,402.33" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<path d="M523.17 398.68L523.17 398.56 530.72 398.56 530.72 398.68 523.17 398.68Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M530.72 398.56L530.84 398.56 530.84 399.36 530.72 399.36 530.72 398.56Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="498.27,414.54 496.39,414.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.14,414.79 496.14,416.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.14,416.42 498.53,416.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.53,416.42 498.53,414.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.09,414.85 496.58,414.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.58,415.86 498.09,415.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.21,415.73 498.21,414.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.45,414.98 496.45,415.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.21,414.98 498.18,414.89 498.09,414.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.58,414.85 496.49,414.89 496.45,414.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.45,415.73 496.49,415.82 496.58,415.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.09,415.86 498.18,415.82 498.21,415.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.53,414.79 498.45,414.61 498.27,414.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.39,414.54 496.21,414.61 496.14,414.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.41,414.54 499.52,414.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="499.27,414.79 499.27,416.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="499.27,416.42 501.66,416.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.66,416.42 501.66,414.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.22,414.85 499.71,414.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="499.71,415.86 501.22,415.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.34,415.73 501.34,414.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="499.59,414.98 499.59,415.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.34,414.98 501.31,414.89 501.22,414.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="499.71,414.85 499.62,414.89 499.59,414.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="499.59,415.73 499.62,415.82 499.71,415.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.22,415.86 501.31,415.82 501.34,415.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.66,414.79 501.59,414.61 501.41,414.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="499.52,414.54 499.35,414.61 499.27,414.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="504.59,414.54 502.7,414.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.45,414.79 502.45,416.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.45,416.42 504.84,416.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="504.84,416.42 504.84,414.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="504.4,414.85 502.89,414.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.89,415.86 504.4,415.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="504.52,415.73 504.52,414.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.77,414.98 502.77,415.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="504.52,414.98 504.49,414.89 504.4,414.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.89,414.85 502.8,414.89 502.77,414.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.77,415.73 502.8,415.82 502.89,415.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="504.4,415.86 504.49,415.82 504.52,415.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="504.84,414.79 504.77,414.61 504.59,414.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.7,414.54 502.53,414.61 502.45,414.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.74,414.54 505.85,414.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="505.6,414.79 505.6,416.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="505.6,416.42 507.99,416.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.99,416.42 507.99,414.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.55,414.85 506.04,414.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="506.04,415.86 507.55,415.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.67,415.73 507.67,414.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="505.92,414.98 505.92,415.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.67,414.98 507.64,414.89 507.55,414.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="506.04,414.85 505.95,414.89 505.92,414.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="505.92,415.73 505.95,415.82 506.04,415.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.55,415.86 507.64,415.82 507.67,415.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.99,414.79 507.91,414.61 507.74,414.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="505.85,414.54 505.67,414.61 505.6,414.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="536.79,392.93 539.05,392.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.3,392.68 539.3,390.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.3,390.67 536.54,390.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="536.54,390.67 536.54,392.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="536.98,392.62 538.86,392.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="538.86,391.24 536.98,391.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="536.85,391.37 536.85,392.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="538.99,392.5 538.99,391.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="536.85,392.5 536.89,392.58 536.98,392.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="538.86,392.62 538.95,392.58 538.99,392.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="538.99,391.37 538.95,391.28 538.86,391.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="536.98,391.24 536.89,391.28 536.85,391.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="536.54,392.68 536.61,392.86 536.79,392.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.05,392.93 539.23,392.86 539.3,392.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="533.01,392.93 535.27,392.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="535.53,392.68 535.53,390.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="535.53,390.67 532.76,390.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.76,390.67 532.76,392.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="533.2,392.62 535.09,392.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="535.09,391.24 533.2,391.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="533.08,391.37 533.08,392.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="535.21,392.5 535.21,391.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="533.08,392.5 533.11,392.58 533.2,392.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="535.09,392.62 535.17,392.58 535.21,392.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="535.21,391.37 535.17,391.28 535.09,391.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="533.2,391.24 533.11,391.28 533.08,391.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.76,392.68 532.84,392.86 533.01,392.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="535.27,392.93 535.45,392.86 535.53,392.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="529.33,392.93 531.59,392.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="531.84,392.68 531.84,390.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="531.84,390.67 529.08,390.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="529.08,390.67 529.08,392.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="529.52,392.62 531.4,392.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="531.4,391.24 529.52,391.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="529.4,391.37 529.4,392.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="531.53,392.5 531.53,391.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="529.4,392.5 529.43,392.58 529.52,392.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="531.4,392.62 531.49,392.58 531.53,392.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="531.53,391.37 531.49,391.28 531.4,391.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="529.52,391.24 529.43,391.28 529.4,391.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="529.08,392.68 529.15,392.86 529.33,392.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="531.59,392.93 531.77,392.86 531.84,392.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="540.85,413.12 539.72,413.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.72,413.12 539.72,413.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.72,413.63 539.34,414.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.34,414.38 539.72,414.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.72,415.38 539.72,414.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="540.85,415.38 539.72,415.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="540.85,415.38 540.85,413.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.34,414.07 539.34,414.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="540.85,409.91 539.72,409.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.72,409.91 539.72,410.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.72,410.41 539.34,410.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.34,411.17 539.72,411.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.72,412.17 539.72,411.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="540.85,412.17 539.72,412.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="540.85,412.17 540.85,409.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.34,410.85 539.34,411.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="540.85,406.79 539.72,406.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.72,406.79 539.72,407.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.72,407.29 539.34,407.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.34,408.04 539.72,408.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.72,409.05 539.72,408.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="540.85,409.05 539.72,409.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="540.85,409.05 540.85,406.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.34,407.73 539.34,408.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="540.85,403.74 539.72,403.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.72,403.74 539.72,404.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.72,404.24 539.34,404.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.34,404.99 539.72,405.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.72,406 539.72,405.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="540.85,406 539.72,406" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="540.85,406 540.85,403.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.34,404.68 539.34,404.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="540.85,400.68 539.72,400.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.72,400.68 539.72,401.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.72,401.19 539.34,401.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.34,401.94 539.72,402.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.72,402.94 539.72,402.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="540.85,402.94 539.72,402.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="540.85,402.94 540.85,400.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.34,401.63 539.34,401.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="281.23,295.94 280.1,295.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.1,295.94 280.1,296.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.1,296.44 279.72,296.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.72,297.2 280.1,297.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.1,298.2 280.1,297.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="281.23,298.2 280.1,298.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="281.23,298.2 281.23,295.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.72,296.88 279.72,297.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="281.23,292.86 280.1,292.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.1,292.86 280.1,293.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.1,293.37 279.72,293.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.72,294.12 280.1,294.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.1,295.12 280.1,294.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="281.23,295.12 280.1,295.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="281.23,295.12 281.23,292.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.72,293.8 279.72,294.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="281.23,289.78 280.1,289.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.1,289.78 280.1,290.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.1,290.29 279.72,290.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.72,291.04 280.1,291.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.1,292.04 280.1,291.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="281.23,292.04 280.1,292.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="281.23,292.04 281.23,289.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.72,290.73 279.72,291.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="281.21,286.85 280.08,286.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.08,286.85 280.08,287.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.08,287.35 279.7,287.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.7,288.11 280.08,288.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.08,289.11 280.08,288.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="281.21,289.11 280.08,289.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="281.21,289.11 281.21,286.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.7,287.79 279.7,288.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="282.16,300.21 285.2,300.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.16,300.95 285.2,300.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="278.46,300.85 278.46,302.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.71,302.98 280.34,302.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.34,302.98 280.34,300.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.34,300.6 278.71,300.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.77,301.03 278.77,302.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.77,302.54 279.77,301.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.65,300.91 278.89,300.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.89,302.67 279.65,302.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.89,300.91 278.81,300.95 278.77,301.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.77,302.54 278.81,302.63 278.89,302.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.65,302.67 279.74,302.63 279.77,302.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.77,301.03 279.74,300.95 279.65,300.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.71,300.6 278.53,300.67 278.46,300.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.46,302.73 278.53,302.91 278.71,302.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.46,304.18 278.46,306.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.71,306.32 280.34,306.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.34,306.32 280.34,303.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.34,303.93 278.71,303.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.77,304.37 278.77,305.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.77,305.88 279.77,304.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.65,304.24 278.89,304.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.89,306 279.65,306" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.89,304.24 278.81,304.28 278.77,304.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.77,305.88 278.81,305.97 278.89,306" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.65,306 279.74,305.97 279.77,305.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.77,304.37 279.74,304.28 279.65,304.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.71,303.93 278.53,304 278.46,304.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.46,306.07 278.53,306.24 278.71,306.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.46,307.44 278.46,309.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.71,309.58 280.34,309.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.34,309.58 280.34,307.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.34,307.19 278.71,307.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.77,307.63 278.77,309.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.77,309.14 279.77,307.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.65,307.51 278.89,307.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.89,309.26 279.65,309.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.89,307.51 278.81,307.54 278.77,307.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.77,309.14 278.81,309.23 278.89,309.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.65,309.26 279.74,309.23 279.77,309.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.77,307.63 279.74,307.54 279.65,307.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.71,307.19 278.53,307.27 278.46,307.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.46,309.33 278.53,309.5 278.71,309.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.46,310.84 278.46,312.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.71,312.97 280.34,312.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.34,312.97 280.34,310.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.34,310.59 278.71,310.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.77,311.03 278.77,312.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.77,312.53 279.77,311.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.65,310.9 278.89,310.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.89,312.66 279.65,312.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.89,310.9 278.81,310.94 278.77,311.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.77,312.53 278.81,312.62 278.89,312.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.65,312.66 279.74,312.62 279.77,312.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.77,311.03 279.74,310.94 279.65,310.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.71,310.59 278.53,310.66 278.46,310.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="278.46,312.72 278.53,312.9 278.71,312.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="291.48,321.19 291.48,321.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.41,320.94 286.96,320.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.41,316.49 290.24,316.65 289.15,317.11 288.22,317.84 287.51,318.79 287.08,319.89 286.96,321.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.41,320.8 286.97,320.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.41,320.8 291.41,320.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.41,320.94 291.41,320.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.41,321.19 292.4,321.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.41,320.94 291.41,321.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.4,320.94 291.41,320.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.4,321.19 292.4,320.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.32,300.21 292.32,316.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.65,300.95 291.33,300.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.65,300.21 292.32,300.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.65,300.95 289.65,300.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.2,300.95 285.2,300.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.44,300.95 285.44,304.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.4,300.95 289.26,302 288.85,302.96 288.2,303.79 287.35,304.42 286.37,304.8 285.33,304.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.57,300.95 285.57,304.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.57,300.95 285.57,300.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.44,300.95 285.57,300.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.4,300.95 289.65,300.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.65,300.95 289.65,300.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.65,300.21 289.4,300.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.4,300.21 289.4,300.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.2,300.95 285.44,300.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.44,300.95 285.44,300.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.44,300.21 285.2,300.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.2,300.21 285.2,300.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.14,302.93 319.7,316.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.81,304.1 330.14,316.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.14,279.07 330.14,285.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.69,292.73 320.69,297.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.43,301.94 335.43,300.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.42,301.94 336.42,300.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.43,292.55 336.42,292.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.43,300.95 336.42,300.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.29,292.79 336.29,292.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.29,292.55 335.55,292.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.55,292.55 335.55,292.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.55,292.79 336.29,292.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.29,300.95 336.29,300.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.29,300.7 335.55,300.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.55,300.7 335.55,300.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.55,300.95 336.29,300.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.24,360.59 514.12,360.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.24,361.45 513.07,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="519.19,360.59 519.19,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.24,360.59 514.24,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.49,360.71 514.49,356.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="518.94,360.71 518.78,359.54 518.32,358.45 517.59,357.52 516.64,356.82 515.54,356.39 514.36,356.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.63,360.71 514.63,356.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.63,360.71 514.63,360.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.49,360.71 514.63,360.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="518.94,361.45 519.19,361.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="519.19,361.45 519.19,360.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="519.19,360.71 518.94,360.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="518.94,360.71 518.94,361.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.24,361.45 514.49,361.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.49,361.45 514.49,360.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.49,360.71 514.24,360.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.24,360.71 514.24,361.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="519.22,345.86 542.39,345.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="519.22,344.83 520.42,344.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="519.22,345.86 519.22,344.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.22,345.86 514.22,344.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.47,345.86 514.47,350.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="518.92,345.86 518.76,347.04 518.3,348.13 517.57,349.06 516.61,349.76 515.51,350.19 514.33,350.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.61,345.86 514.61,350.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.61,345.86 514.61,345.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.47,345.86 514.61,345.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="518.98,344.83 518.98,345.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="519.22,344.83 518.98,344.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="519.22,345.86 519.22,344.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="518.98,345.86 519.22,345.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.22,344.83 514.22,345.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.47,344.83 514.22,344.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.47,345.86 514.47,344.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.22,345.86 514.47,345.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.65,334.23 291.65,359.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.02,387.78 321.11,387.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="321.02,388.4 321.11,388.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="338.36,387.87 338.36,385.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="338.98,388.4 338.98,385.71" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="318.59,361.46 318.59,373.32" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="319.21,361.46 319.21,372.83" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="318.71,332.78 318.71,347.37" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="479.85,398.38 479.85,388.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="318.59,353.8 322.95,353.8" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="335.8,312 335.8,314.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.8,304.66 335.8,308.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.71,347.37 322.95,347.37" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="319.33,346.81 323.57,346.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="319.21,354.35 319.21,359.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="318.59,353.8 318.59,359.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="323.57,346.81 323.57,347.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="291.7,322.37 291.7,323.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.32,321.19 292.32,323.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.25,153.56 359.25,152.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.55,157.55 321.55,159.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.18,165.3 485.18,165.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.82,165.3 483.82,166.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.18,160.36 483.82,160.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.18,165.3 483.82,165.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.18,165.06 489.63,165.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.18,160.61 486.36,160.76 487.45,161.22 488.38,161.96 489.08,162.91 489.51,164.01 489.63,165.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.18,164.92 489.62,164.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.18,164.92 485.18,164.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.18,165.06 485.18,164.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.18,160.61 485.18,160.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.18,160.36 483.82,160.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.82,160.36 483.82,160.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.82,160.61 485.18,160.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.18,165.3 485.18,165.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.18,165.06 483.82,165.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.82,165.06 483.82,165.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.82,165.3 485.18,165.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.46,165.69 514.46,166.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.72,160.74 514.46,160.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.72,165.69 514.46,165.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.46,165.44 518.91,165.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.46,160.99 515.63,161.15 516.72,161.61 517.65,162.34 518.36,163.29 518.79,164.4 518.91,165.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.46,165.3 518.9,165.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.46,165.3 514.46,165.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.46,165.44 514.46,165.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.46,160.99 514.46,160.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.46,160.74 513.72,160.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.72,160.74 513.72,160.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.72,160.99 514.46,160.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.46,165.69 514.46,165.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.46,165.44 513.72,165.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.72,165.44 513.72,165.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.72,165.69 514.46,165.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.67,150.93 396.67,135.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="367.04,150.38 367.04,135.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.67,135.42 394.48,135.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="367.78,150.96 367.78,136.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.94,150.96 395.94,136.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.94,136.16 394.48,136.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="368.77,150.96 368.77,137.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="389.53,137.15 368.77,137.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.45,143.47 388.45,142.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="375.67,143.47 388.45,143.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="380.71,142.73 388.45,142.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="380.63,142.91 388.26,142.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="388.26,148.82 388.26,143.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="375.67,143.28 388.26,143.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="388.26,142.73 388.26,137.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="388.26,143.28 388.26,142.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="383.19,137.54 388.45,137.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="383.28,137.35 388.45,137.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="375.67,148.82 388.45,148.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="375.67,149.01 388.45,149.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="375.94,148.82 375.94,143.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="375.67,143.28 375.67,143.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="387.05,148.82 387.05,143.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.81,148.82 385.81,143.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="384.57,148.82 384.57,143.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="383.34,148.82 383.34,143.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="382.1,148.82 382.1,143.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="380.87,148.82 380.87,143.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="379.63,148.82 379.63,143.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.39,148.82 378.39,143.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="377.16,148.82 377.16,143.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="387.05,142.73 387.05,137.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.81,142.73 385.81,137.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="384.57,142.73 384.57,137.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="383.34,142.73 383.34,137.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="382.1,142.73 382.1,140.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="380.87,142.73 380.87,142.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="388.45,148.82 388.45,149.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="375.67,148.82 375.67,149.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="388.45,137.54 388.45,137.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.29,152.08 375.86,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369,150.96 369,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.17,152.94 359.25,152.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.17,152.08 367.53,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="375.11,152.94 375.11,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.17,152.94 369.17,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.41,152.08 369.41,147.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.86,152.08 373.71,150.9 373.24,149.81 372.51,148.88 371.56,148.18 370.46,147.75 369.28,147.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.55,152.08 369.55,147.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.55,152.08 369.55,152.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.41,152.08 369.55,152.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.86,152.94 374.11,152.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.11,152.94 374.11,152.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.11,152.08 373.86,152.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.86,152.08 373.86,152.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.17,152.94 369.41,152.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.41,152.94 369.41,152.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.41,152.08 369.17,152.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.17,152.08 369.17,152.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="367.53,150.96 369,150.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.29,151.3 375.11,151.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="375.11,152.08 375.11,151.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="375.86,152.94 375.86,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.52,143.14 381.63,140.8 381.04,140.04 382.97,140 382.38,139.24 383.4,137.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="389.53,137.15 389.53,136.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="389.53,136.16 367.78,136.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="389.53,135.42 367.04,135.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="394.48,136.16 394.48,135.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="389.53,136.16 389.53,135.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="394.23,135.95 394.23,131.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.78,135.95 389.94,134.77 390.4,133.68 391.13,132.75 392.08,132.05 393.19,131.62 394.36,131.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="394.09,135.95 394.09,131.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="394.09,135.95 394.09,135.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="394.23,135.95 394.09,135.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.78,135.95 389.53,135.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.53,135.95 389.53,136.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.53,136.69 389.78,136.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.78,136.69 389.78,135.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="394.48,135.95 394.23,135.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="394.23,135.95 394.23,136.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="394.23,136.69 394.48,136.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="394.48,136.69 394.48,135.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="392.12,140.14 392.12,146.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="392.12,146.02 374.78,146.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.36,141.27 384.79,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="384.79,140.14 385.36,139.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.64,141.27 385.08,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.08,140.14 385.64,139.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.64,141.27 385.36,141.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.64,139.01 385.36,139.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M385.64 141.27L385.36 141.27 384.79 140.14 385.08 140.14 385.64 141.27Z" fill-rule="evenodd" fill="blue"/>
+<path d="M385.64 139.01L385.36 139.01 384.79 140.14 385.08 140.14 385.64 139.01Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="392.12,140.14 384.78,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="356.44,152.94 319.51,152.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="515.9,379.63 515.9,380.69 515.96,380.9 516.06,381.04 516.22,381.11 516.33,381.11 516.49,381.04 516.59,380.9 516.65,380.69 516.65,379.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="517.07,381.11 517.07,379.63 517.55,379.63 517.71,379.7 517.76,379.77 517.81,379.91 517.81,380.12 517.76,380.26 517.71,380.33 517.55,380.4 517.07,380.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="521.94,355.22 521.94,356.28 521.99,356.49 522.09,356.63 522.25,356.7 522.36,356.7 522.52,356.63 522.62,356.49 522.68,356.28 522.68,355.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.1,356.7 523.1,355.22 523.58,355.22 523.74,355.29 523.79,355.36 523.84,355.5 523.84,355.71 523.79,355.85 523.74,355.92 523.58,355.99 523.1,355.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="295.78,279.85 295.78,280.55 295.83,280.76 295.93,280.84 296.09,280.84 296.2,280.76 296.36,280.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.36,279.85 296.36,280.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.78,279.85 296.78,281.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.78,280.06 296.89,279.92 296.99,279.85 297.15,279.85 297.26,279.92 297.36,280.06 297.42,280.27 297.42,280.41 297.36,280.62 297.26,280.76 297.15,280.84 296.99,280.84 296.89,280.76 296.78,280.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="371.64,144.54 371.64,145.24 371.69,145.45 371.79,145.52 371.95,145.52 372.06,145.45 372.22,145.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.22,144.54 372.22,145.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.64,144.54 372.64,146.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.64,144.75 372.75,144.61 372.85,144.54 373.01,144.54 373.12,144.61 373.22,144.75 373.28,144.96 373.28,145.1 373.22,145.31 373.12,145.45 373.01,145.52 372.85,145.52 372.75,145.45 372.64,145.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="491.56,162.34 491.56,163.04 491.62,163.26 491.72,163.33 491.88,163.33 491.99,163.26 492.15,163.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="492.15,162.34 492.15,163.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="492.57,162.34 492.57,163.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="492.57,162.55 492.67,162.41 492.78,162.34 492.94,162.34 493.05,162.41 493.15,162.55 493.2,162.76 493.2,162.9 493.15,163.11 493.05,163.26 492.94,163.33 492.78,163.33 492.67,163.26 492.57,163.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="351.41,385.09 349.27,385.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="542.9,354.17 542.9,353.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="543.71,354.17 543.71,353.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="542.9,354.17 543.64,354.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="542.9,359.12 543.64,359.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="543.2,354.42 547.65,354.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.2,358.87 544.37,358.71 545.46,358.25 546.39,357.52 547.1,356.57 547.52,355.46 547.65,354.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.2,354.56 547.64,354.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.2,354.56 543.2,354.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.2,354.42 543.2,354.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="542.97,358.87 542.97,359.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="542.97,359.12 543.71,359.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.71,359.12 543.71,358.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.71,358.87 542.97,358.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="542.97,354.17 542.97,354.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="542.97,354.42 543.71,354.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.71,354.42 543.71,354.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.71,354.17 542.97,354.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.71,359.12 542.75,359.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.54,450.5 347.54,464.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.25,450.5 378.25,464.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.54,464.84 371.32,464.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.28,448.59 348.28,464.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.28,464.1 371.32,464.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="377.51,448.59 377.51,464.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="349.49,450.53 349.49,463.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="349.49,463.26 371.32,463.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="376.3,450.53 376.3,463.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="349.09,464 348.35,464" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="349.09,463.26 348.35,463.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.35,463.26 348.35,464" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="349.09,463.26 349.09,464" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="377.44,463.26 377.44,464" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="376.7,463.26 376.7,464" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="377.44,463.26 376.7,463.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="377.44,464 376.7,464" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="369.67,462.99 369.67,457.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.05,463.17 357.01,463.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.05,457.49 357.2,457.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.05,457.67 357.01,457.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.05,462.99 357.01,462.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.05,457.49 370.05,457.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.05,462.99 370.05,463.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="349.49,450.53 376.3,450.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="377.64,450.5 378.38,450.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="377.64,449.76 378.38,449.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.38,449.76 378.38,450.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="377.64,449.76 377.64,450.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="370.05,457.67 357.01,457.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.43,451.27 357.01,451.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.43,451.27 357.01,451.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.52,451.08 357.01,451.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.89,456.58 357.01,456.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.81,456.77 357.2,456.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.01,451.08 357.01,451.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.01,462.99 357.01,463.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.01,456.58 357.01,457.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.2,456.77 357.2,457.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.44,462.99 368.44,457.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="367.2,462.99 367.2,457.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.97,462.99 365.97,457.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="364.73,462.99 364.73,457.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="363.49,462.99 363.49,457.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.26,462.99 362.26,457.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="361.02,462.99 361.02,457.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.79,462.99 359.79,457.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="358.55,462.99 358.55,457.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.31,462.99 357.31,457.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.31,456.58 357.31,451.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="358.55,456.58 358.55,451.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.79,456.58 359.79,451.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="361.02,456.58 361.02,451.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.26,456.58 362.26,451.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="363.49,455.32 363.49,451.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="364.73,453.84 364.73,451.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="376.3,463.26 376.27,463.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="376.7,464 376.27,464" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="376.27,464.1 377.51,464.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="376.27,463.26 376.27,464.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="371.32,463.26 371.32,464.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="376.02,464.05 376.02,468.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.57,464.05 371.73,465.22 372.19,466.31 372.92,467.24 373.87,467.95 374.97,468.38 376.15,468.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.88,464.05 375.88,468.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.88,464.05 375.88,464.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.02,464.05 375.88,464.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.57,463.31 371.32,463.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.32,463.31 371.32,464.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.32,464.05 371.57,464.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.57,464.05 371.57,463.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.27,463.31 376.02,463.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.02,463.31 376.02,464.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.02,464.05 376.27,464.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.27,464.05 376.27,463.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.32,464.1 371.32,464.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="376.27,464.1 376.27,464.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="376.27,464.84 378.25,464.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.4,453.21 361.96,454.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="361.96,454.34 361.4,455.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="361.11,453.21 361.68,454.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="361.68,454.34 361.11,455.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="361.11,453.21 361.4,453.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="361.11,455.47 361.4,455.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M361.11 453.21L361.4 453.21 361.96 454.34 361.68 454.34 361.11 453.21Z" fill-rule="evenodd" fill="blue"/>
+<path d="M361.11 455.47L361.4 455.47 361.96 454.34 361.68 454.34 361.11 455.47Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="355.97,454.34 361.98,454.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="355.97,454.34 353.86,454.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="353.86,454.34 353.86,460.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="353.86,460.27 370.61,460.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.61,457.17 363.7,454.89 362.91,453.88 365.49,453.83 364.69,452.81 365.66,450.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.65,137.07 367.91,137.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="368.65,136.33 367.91,136.33" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="367.91,136.33 367.91,137.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="368.65,136.33 368.65,137.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="368.65,149.89 368.65,150.63" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="367.91,149.89 367.91,150.63" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="368.65,149.89 367.91,149.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="368.65,150.63 367.91,150.63" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="395.9,150.63 395.16,150.63" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="395.9,149.89 395.16,149.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="395.16,149.89 395.16,150.63" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="395.9,149.89 395.9,150.63" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="395.16,136.33 395.16,137.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="395.9,136.33 395.9,137.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="395.16,136.33 395.9,136.33" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="395.16,137.07 395.9,137.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="291.7,331.95 291.7,332.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.32,331.95 292.32,332.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.7,323.05 292.32,323.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.7,331.95 292.32,331.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.38,323.29 296.58,323.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.38,327.5 293.49,327.35 294.52,326.91 295.39,326.22 296.06,325.32 296.46,324.28 296.58,323.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.38,323.42 296.57,323.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.38,323.42 292.38,323.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.38,323.29 292.38,323.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.38,331.7 292.38,331.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.38,331.57 292.38,331.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.38,331.57 296.57,331.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.58,331.82 296.46,330.71 296.06,329.67 295.39,328.77 294.52,328.08 293.49,327.64 292.38,327.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.38,331.7 296.58,331.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.64,331.7 291.64,331.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.64,331.95 292.38,331.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.38,331.95 292.38,331.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.38,331.7 291.64,331.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.64,323.05 291.64,323.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.64,323.29 292.38,323.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.38,323.29 292.38,323.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.38,323.05 291.64,323.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.33,332.78 319.33,346.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="322.95,347.37 322.95,347.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="322.95,353.55 322.95,353.8" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="323.57,353.55 323.57,354.35" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="322.95,347.86 323.57,347.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="322.95,353.55 323.57,353.55" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="322.95,353.3 317.76,353.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.95,348.11 321.58,348.3 320.31,348.83 319.23,349.69 318.4,350.8 317.9,352.08 317.76,353.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.95,353.14 317.77,353.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.95,353.14 322.95,353.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.95,353.3 322.95,353.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="323.57,348.11 323.57,347.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="323.57,347.86 322.95,347.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.95,347.86 322.95,348.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.95,348.11 323.57,348.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="323.57,353.55 323.57,353.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="323.57,353.3 322.95,353.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.95,353.3 322.95,353.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.95,353.55 323.57,353.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.4,458.2 370.4,458.91 370.46,459.12 370.56,459.19 370.72,459.19 370.83,459.12 370.99,458.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.99,458.2 370.99,459.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="371.41,458.2 371.41,459.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="371.41,458.42 371.52,458.28 371.62,458.2 371.78,458.2 371.89,458.28 371.99,458.42 372.05,458.63 372.05,458.77 371.99,458.98 371.89,459.12 371.78,459.19 371.62,459.19 371.52,459.12 371.41,458.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="479.73,374.82 479.73,295.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.47,374.82 480.47,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.95,374.82 493.7,374.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.7,375.07 497.9,375.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.7,379.27 494.8,379.12 495.83,378.68 496.71,377.99 497.38,377.09 497.78,376.05 497.9,374.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.7,375.2 497.89,375.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.7,375.2 493.7,375.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.7,375.07 493.7,375.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.7,383.47 493.7,383.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.7,383.34 493.7,383.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.7,383.34 497.89,383.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.9,383.6 497.78,382.48 497.38,381.44 496.71,380.54 495.83,379.85 494.8,379.42 493.7,379.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.7,383.47 497.9,383.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.95,383.47 492.95,383.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.95,383.72 493.7,383.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.7,383.72 493.7,383.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.7,383.47 492.95,383.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.95,374.82 492.95,375.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.95,375.07 493.7,375.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.7,375.07 493.7,374.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.7,374.82 492.95,374.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.37,167.66 511.37,187.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.37,189.67 511.37,216.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.37,218.4 511.37,244.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.72,361.45 480.72,330.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.72,330.68 480.72,296.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.72,296.87 512.3,296.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.76,157.55 358.76,153.56" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="504.02,166.91 504.02,168.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.02,168.16 511.37,168.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.51,166.91 504.51,167.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.51,167.66 511.37,167.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.82,166.91 514.71,166.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.42,186.18 319.42,159.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.42,214.87 319.42,188.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.25,152.94 359.25,153.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.94,296.87 507.94,302.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="507.94,302.5 510.97,302.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="508.43,296.87 508.43,302" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="508.43,302 510.97,302" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="512.08,296.87 508.43,302" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.43,296.87 512.02,302" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.09,272.99 513.09,275.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.64,264.92 512.64,247.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="512.64,340.69 512.64,359.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.76,340.69 512.76,359.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.61,332.47 512.61,332.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="513.44,337.23 513.44,344.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.35,337.23 513.44,337.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.61,336.98 508.4,336.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.61,332.78 511.5,332.92 510.47,333.36 509.59,334.05 508.93,334.95 508.52,335.99 508.41,337.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.61,336.85 508.41,336.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.61,336.85 512.61,336.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.61,336.98 512.61,336.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.35,332.78 513.35,332.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.35,332.53 512.61,332.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.61,332.53 512.61,332.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.61,332.78 513.35,332.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.35,337.23 513.35,336.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.35,336.98 512.61,336.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.61,336.98 512.61,337.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.61,337.23 513.35,337.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.22,330.09 513.22,323.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="513.44,330.09 513.44,332.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="513.07,330.09 513.44,330.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="513.35,345.86 513.35,359.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.3,304.1 512.3,323.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.74,302.75 542.39,302.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.3,296.87 512.3,302" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.3,323.02 512.3,330.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.07,323.02 513.07,295.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.74,272.83 542.39,272.83" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="542.22,275.55 542.39,275.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.69,292.73 318.71,292.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.69,297.92 318.71,297.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="520.15,245.36 514.71,245.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.98,245.36 523.48,245.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.04,245.36 529.54,245.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.12,245.36 544.12,251.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.05,446.98 378.84,446.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.79,304.66 336.79,308.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.79,312 336.79,314.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="386.75,449.95 378.38,449.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="386.75,450.5 386.75,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.31,450.5 386.75,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.31,448.59 387.31,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.68,449.95 387.31,449.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.24,450.5 395.68,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.24,449.7 396.24,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.09,449.7 396.24,449.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.09,450.5 398.09,449.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.65,450.5 398.09,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.02,449.95 398.65,449.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.95,449.95 407.58,449.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.51,450.5 415.95,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="425.44,450.5 424.88,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="433.78,450.5 433.78,449.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.34,450.5 433.78,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.34,449.7 434.34,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="436.16,449.7 434.34,449.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="436.16,450.5 436.16,449.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="436.72,449.95 436.72,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="436.72,450.5 436.16,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="445.65,450.5 445.09,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="462.95,449.95 454.58,449.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="454.58,450.5 454.02,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.51,450.5 462.95,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.88,449.95 463.51,449.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.88,450.5 471.88,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.44,450.5 471.88,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.44,449.7 472.44,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.29,449.7 472.44,449.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.29,450.5 474.29,449.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.85,450.5 474.29,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.85,448.59 474.85,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.19,449.95 474.85,449.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.12,449.95 483.78,449.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.71,450.5 492.15,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.05,449.95 492.71,449.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.64,450.5 501.08,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.98,449.95 501.64,449.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="519.93,449.76 512.95,449.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="519.93,450.32 519.93,449.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.27,450.32 519.93,450.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.27,449.76 523.27,450.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.27,449.76 523.27,449.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.27,450.32 534.27,449.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="537.6,450.32 534.27,450.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="537.6,449.76 537.6,450.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.71,449.76 537.6,449.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.71,442.66 544.71,449.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.71,428.32 544.71,439.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.9,428.32 544.71,428.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.9,424.98 544.9,428.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.71,424.98 544.9,424.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.71,414.01 544.71,424.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.9,410.67 544.9,414.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.71,399.67 544.71,410.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.9,396.34 544.9,399.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.71,385.37 544.71,396.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.87,381.88 544.87,385.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.68,381.88 544.87,381.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.68,370.91 544.68,381.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.87,367.57 544.87,370.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.68,359.12 544.68,367.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.68,359.12 543.71,359.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.71,303.08 545.33,303.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.71,298.11 544.71,303.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.67,298.11 543.2,298.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.67,294.77 545.67,298.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.48,294.77 545.67,294.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.48,283.71 545.48,294.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.67,283.71 545.48,283.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.67,280.37 545.67,283.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.48,280.37 545.67,280.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.48,269.4 545.48,280.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.67,269.4 545.48,269.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.67,266.07 545.67,269.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.48,266.07 545.67,266.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.48,255.1 545.48,266.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.67,255.1 545.48,255.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.67,251.76 545.67,255.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.48,251.76 545.67,251.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.48,244.74 545.48,251.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="538.38,244.74 545.48,244.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="538.38,244.56 538.38,244.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.04,244.56 538.38,244.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.04,244.74 535.04,244.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.54,244.74 535.04,244.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.54,244.56 529.54,244.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.98,244.56 529.54,244.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.98,244.74 528.98,244.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.48,244.74 528.98,244.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.48,244.56 523.48,244.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="520.15,244.56 523.48,244.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="520.15,244.74 520.15,244.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.71,244.74 520.15,244.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.71,236.37 514.71,245.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.71,227.47 514.71,235.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.71,218.6 514.71,226.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,218.6 514.71,218.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,218.05 514.89,218.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.09,218.05 514.89,218.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.09,216.56 514.09,218.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,216.56 514.09,216.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,216.01 514.89,216.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.71,207.63 514.71,216" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.71,198.73 514.71,207.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.71,189.85 514.71,198.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,189.85 512.98,189.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,189.3 514.89,189.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.09,189.3 514.89,189.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.09,187.86 514.09,189.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,187.86 514.09,187.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,187.3 514.89,187.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.98,187.3 514.89,187.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.71,178.9 514.71,187.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.71,169.97 514.71,178.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.71,166.91 514.71,169.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.46,151.06 463.8,151.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.56,151.06 454.9,151.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.66,151.06 445.97,151.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.66,150.87 437.66,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.1,150.87 437.66,150.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.1,151.67 437.1,150.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="435.25,151.67 437.1,151.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="435.25,150.93 435.25,151.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.69,151.06 434.69,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.58,245.78 316.86,245.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.58,267.29 286.58,245.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.95,267.29 286.58,267.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.95,267.76 283.95,267.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.01,267.76 283.95,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="261.73,267.76 272.67,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="261.73,267.57 261.73,269.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.4,267.57 261.73,267.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.4,271.8 258.4,267.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.4,286.08 258.4,282.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.4,300.36 258.4,297.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.58,311.39 258.58,306.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.54,464.84 347.54,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.25,450.5 378.25,464.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="561.15,303.08 559.67,303.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="386.75,449.33 378.38,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.68,449.33 387.31,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.75,448.59 378.38,448.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.68,448.59 387.31,448.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.31,449.33 387.31,448.59 387.56,448.59 387.56,449.33 387.31,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.5,449.33 386.5,448.59 386.75,448.59 386.75,449.33 386.5,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.43,449.33 395.43,448.59 395.68,448.59 395.68,449.33 395.43,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.56,448.84 395.43,448.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.56,449.08 395.43,449.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.31,448.59 386.75,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.63,449.08 386.5,449.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="378.63,448.84 386.5,448.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="378.38,449.33 378.38,448.59 378.63,448.59 378.63,449.33 378.38,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="378.38,448.59 378.38,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.38,448.59 359.53,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="386.75,446.98 359.53,446.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.71,448.84 407.83,448.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.71,449.08 407.83,449.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.02,448.59 407.58,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.78,449.08 398.9,449.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.78,448.84 398.9,448.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.83,449.33 407.83,448.59 407.58,448.59 407.58,449.33 407.83,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.02,449.33 407.02,448.59 406.78,448.59 406.78,449.33 407.02,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.65,448.59 407.02,448.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.58,448.59 415.95,448.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.65,449.33 407.02,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.58,449.33 415.95,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.02,448.59 407.02,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.58,450.5 407.58,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.9,449.33 398.9,448.59 398.65,448.59 398.65,449.33 398.9,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.65,450.5 398.65,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.95,449.33 415.95,448.59 415.71,448.59 415.71,449.33 415.95,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.28,446.98 434.15,446.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.58,450.5 407.02,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.28,448.59 398.28,445.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.05,448.59 396.05,445.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.68,448.59 396.05,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.28,448.59 398.65,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.51,450.5 416.51,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.95,448.59 415.95,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.95,448.59 416.51,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="425.44,450.5 425.44,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.88,448.59 424.88,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.88,448.59 425.44,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="445.65,450.5 445.65,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="445.09,448.59 445.09,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="445.09,448.59 445.65,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.88,449.33 424.88,448.59 424.63,448.59 424.63,449.33 424.88,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.51,449.33 424.88,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.51,448.59 424.88,448.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.76,449.33 416.76,448.59 416.51,448.59 416.51,449.33 416.76,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.63,449.08 416.76,449.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.63,448.84 416.76,448.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.88,449.95 416.51,449.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="433.81,449.33 433.81,448.59 433.56,448.59 433.56,449.33 433.81,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.44,449.33 433.81,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.44,448.59 433.81,448.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.69,449.33 425.69,448.59 425.44,448.59 425.44,449.33 425.69,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="433.56,449.08 425.69,449.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="433.56,448.84 425.69,448.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="433.81,449.95 425.44,449.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="445.09,449.33 445.09,448.59 444.84,448.59 444.84,449.33 445.09,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="436.72,449.33 445.09,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="436.72,448.59 445.09,448.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="436.96,449.33 436.96,448.59 436.72,448.59 436.72,449.33 436.96,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="444.84,449.08 436.96,449.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="444.84,448.84 436.96,448.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.09,449.95 436.72,449.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="454.02,449.33 454.02,448.59 453.77,448.59 453.77,449.33 454.02,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.65,449.33 454.02,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.65,448.59 454.02,448.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.89,449.33 445.89,448.59 445.65,448.59 445.65,449.33 445.89,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="453.77,449.08 445.89,449.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="453.77,448.84 445.89,448.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="454.02,449.95 445.65,449.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.15,448.59 434.15,445.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="436.38,448.59 436.38,445.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.15,445.87 436.38,445.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="436.38,446.98 472.28,446.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="433.78,448.59 434.15,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="436.38,448.59 436.75,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.49,446.98 321.65,446.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.54,448.59 357.3,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.53,448.59 359.9,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.93,448.59 357.3,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.3,448.59 357.3,445.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.53,448.59 359.53,445.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.9,450.5 359.9,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.9,450.5 359.34,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.34,450.5 359.34,449.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.34,449.7 357.49,449.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.49,449.7 357.49,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.49,450.5 356.93,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.93,450.5 356.93,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.3,445.87 359.53,445.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.93,446.98 357.3,446.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.59,446.98 318.59,445.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.93,445.87 318.59,445.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.93,446.98 320.93,445.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="462.7,448.84 454.82,448.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.7,449.08 454.82,449.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="454.82,449.33 454.82,448.59 454.58,448.59 454.58,449.33 454.82,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="454.58,448.59 462.95,448.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="454.58,449.33 462.95,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.95,449.33 462.95,448.59 462.7,448.59 462.7,449.33 462.95,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="454.02,448.59 454.58,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="454.58,450.5 454.58,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="454.02,448.59 454.02,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.51,450.5 463.51,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="462.95,448.59 463.51,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.88,449.33 471.88,448.59 471.63,448.59 471.63,449.33 471.88,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.51,449.33 471.88,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.51,448.59 471.88,448.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.75,449.33 463.75,448.59 463.51,448.59 463.51,449.33 463.75,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.63,449.08 463.75,449.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.63,448.84 463.75,448.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.95,448.59 462.95,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.25,448.59 472.25,445.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.25,445.87 474.48,445.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.48,448.59 474.48,445.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.51,446.98 501.73,446.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.48,448.59 474.85,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.88,448.59 472.25,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="473.98,418.81 473.98,445.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="472.25,390.13 474.48,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.48,387.9 474.48,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.25,387.9 474.48,387.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.25,387.9 472.25,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.21,390.13 436.32,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.21,387.9 436.32,387.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="436.32,387.9 436.32,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.21,387.9 434.21,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.11,387.9 396.11,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.11,387.9 398.22,387.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.11,416.58 398.22,416.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.11,418.8 398.22,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.22,416.58 398.22,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.11,416.58 396.11,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.32,291.93 335.43,291.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.45,372.7 361.45,368.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="365.98,372.7 365.82,371.53 365.36,370.44 364.63,369.51 363.68,368.8 362.57,368.38 361.4,368.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.59,372.7 361.59,368.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.59,372.7 361.59,372.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.45,372.7 361.59,372.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="365.98,372.7 365.98,373.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.26,373.26 423.46,373.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="318.59,373.32 333.02,373.32" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.43,361.45 360.43,372.83" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.17,358.98 361.17,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,358.98 361.17,358.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,358.98 358.7,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,361.45 361.17,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.43,332.78 360.43,336.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="358.7,332.78 361.17,332.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,330.31 358.7,332.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,330.31 361.17,330.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.17,330.31 361.17,332.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.9,359.35 475,359.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.9,361.45 475,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475,359.35 475,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.9,359.35 472.9,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.43,322.27 475.43,322.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475,322.77 475,325.71" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475,322.27 479.73,322.27" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475,322.77 479.73,322.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475,330.65 475,330.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475,330.4 474.51,330.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.51,330.4 474.51,330.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.51,330.65 475,330.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475,325.95 475,325.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475,325.71 474.51,325.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.51,325.71 474.51,325.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.51,325.95 475,325.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.51,330.4 470.06,330.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.51,325.95 473.33,326.11 472.24,326.57 471.31,327.3 470.61,328.25 470.18,329.36 470.06,330.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.51,330.26 470.07,330.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.51,330.26 474.51,330.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.51,330.4 474.51,330.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.51,330.65 475,330.65" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.51,325.71 475,325.71" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475,330.65 475,330.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.51,330.65 474.51,330.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475,302 475,296.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475,330.68 479.73,330.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="472,331.17 472.9,331.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.51,302 474.51,296.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.51,304.1 474.51,325.71" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475,304.1 475,322.27" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="472.9,330.68 475,330.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.9,332.78 475,332.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475,330.68 475,332.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.9,330.68 472.9,332.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.9,302 475,302" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.9,304.1 475,304.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475,302 475,304.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.9,302 472.9,304.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.51,296.38 461.47,296.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="479.73,295.89 461.47,295.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="479.73,296.38 475,296.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="333.09,374.52 333.09,374.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.09,374.77 333.58,374.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.58,374.77 333.58,374.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.58,374.52 333.09,374.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.09,383.67 333.09,383.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.09,383.91 333.58,383.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.58,383.91 333.58,383.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.58,383.67 333.09,383.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.02,383.91 333.65,383.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="333.02,374.52 333.65,374.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="333.65,374.52 333.65,373.32" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="333.65,387.87 333.65,383.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="321.02,387.78 321.02,389.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="306.65,388.4 307.15,388.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="311.84,388.09 315.06,388.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.6,388.4 311.84,388.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.84,388.4 311.84,387.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.84,387.78 311.6,387.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.6,387.78 311.6,388.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.06,388.4 315.31,388.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.31,388.4 315.31,387.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.31,387.78 315.06,387.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.06,387.78 315.06,388.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.31,388.4 311.6,388.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.31,387.78 311.6,387.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.31,387.78 315.31,388.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="315.31,388.4 318.92,388.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="315.31,387.78 318.92,387.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="307.15,388.4 307.39,388.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.39,388.4 307.39,387.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.39,387.78 307.15,387.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.15,387.78 307.15,388.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.39,388.4 307.39,392.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.6,388.4 311.45,389.51 311.01,390.54 310.32,391.41 309.42,392.08 308.38,392.48 307.27,392.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.53,388.4 307.53,392.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.53,388.4 307.53,388.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.39,388.4 307.53,388.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.15,387.78 307.15,388.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="318.92,387.78 318.92,389.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.92,389.88 321.02,389.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.92,387.78 321.02,387.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,416.7 358.7,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.8,416.7 360.8,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,418.8 360.8,418.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,416.7 360.8,416.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,388.03 358.7,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.8,388.03 360.8,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,390.13 360.8,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,388.03 360.8,388.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="278.89,382.71 278.89,379.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="279.69,384.37 279.69,371.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.1,392.2 298.55,390.13 298.97,389.71 299.14,389.67 299.21,389.72 299.31,389.87 299.36,390.07 299.37,390.31 299.35,390.46 299.23,390.7" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="298.81,391.12 299.23,390.7 299.4,390.65 299.47,390.7 299.57,390.85 299.65,391.15 299.66,391.39 299.64,391.54 299.52,391.78 299.1,392.2" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="300.36,388.94 300.26,388.79 300.12,388.69 300,388.69 299.81,388.87 299.74,389.06 299.7,389.35 299.71,389.6 299.74,389.94 299.87,390.43 300,390.68 300.1,390.83 300.24,390.93 300.36,390.94 300.55,390.75 300.62,390.56 300.66,390.27 300.65,390.02" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="300.62,388.57 300.68,388.37 300.75,387.94 301.3,390" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="294.59,392.42 294.04,390.35 294.46,389.93 294.62,389.89 294.7,389.94 294.79,390.09 294.85,390.29 294.85,390.53 294.83,390.68 294.72,390.92" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="294.3,391.34 294.72,390.92 294.89,390.87 294.96,390.92 295.06,391.07 295.14,391.37 295.14,391.61 295.12,391.76 295.01,392 294.59,392.42" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="295.85,389.16 295.75,389.01 295.6,388.91 295.48,388.91 295.3,389.09 295.23,389.28 295.19,389.57 295.19,389.82 295.23,390.16 295.36,390.65 295.48,390.9 295.58,391.05 295.73,391.15 295.85,391.15 296.04,390.97 296.1,390.78 296.14,390.49 296.14,390.24" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="296.17,388.84 296.15,388.74 296.14,388.49 296.16,388.35 296.23,388.16 296.42,387.97 296.54,387.98 296.61,388.03 296.71,388.18 296.76,388.37 296.77,388.62 296.75,389.01 296.55,390.45 297.2,389.8" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="292.73,391.05 292.9,391.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.24,391.05 302.52,391.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.9,389.32 292.9,389.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.9,389.88 293.14,389.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.14,389.88 293.14,390.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.14,390.62 292.9,390.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.9,390.62 292.9,389.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.9,390.62 292.9,391.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.55,390.43 297.7,391.58 298.14,392.66 298.85,393.58 299.77,394.29 300.85,394.73 302,394.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.14,394.88 294.29,394.73 295.36,394.29 296.28,393.58 296.98,392.65 297.41,391.58 297.55,390.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.14,390.62 293.14,395.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="302,390.62 302,395.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="302.24,390.62 302.24,391.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.24,390.62 302.24,389.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="302,390.62 302.24,390.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="302,389.88 302,390.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="302.24,389.88 302,389.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="302.24,389.32 302.24,389.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.52,389.32 292.9,389.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.17,382.46 304.15,382.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.17,381.29 304.15,381.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.17,380.11 304.15,380.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.17,378.94 304.15,378.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.17,377.83 304.15,377.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.15,377.83 304.15,382.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.17,382.46 291.17,377.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.57,389.32 302.57,382.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.57,382.71 304.15,382.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.15,387.78 304.15,382.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.35,371.53 279.69,371.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.61,370.46 278.89,370.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304,387.78 304,390.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.21,372.83 360.43,372.83" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="302.52,426.06 302.52,391.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.13,446.98 318.59,446.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.78,448.59 483.78,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.09,448.84 482.97,448.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.09,449.08 482.97,449.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.97,449.33 482.97,448.59 483.22,448.59 483.22,449.33 482.97,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.22,448.59 474.85,448.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.22,449.33 474.85,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.85,449.33 474.85,448.59 475.09,448.59 475.09,449.33 474.85,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.78,448.59 483.22,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.22,450.5 483.22,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.71,448.59 492.71,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.15,450.5 492.15,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.71,448.59 492.15,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.78,449.33 483.78,448.59 484.02,448.59 484.02,449.33 483.78,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.15,449.33 483.78,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.15,448.59 483.78,448.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.9,449.33 491.9,448.59 492.15,448.59 492.15,449.33 491.9,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.02,449.08 491.9,449.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.02,448.84 491.9,448.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.95,448.84 500.83,448.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.95,449.08 500.83,449.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.08,448.59 492.71,448.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.08,449.33 492.71,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.71,449.33 492.71,448.59 492.95,448.59 492.95,449.33 492.71,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.75,450.5 483.22,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.64,449.33 501.64,448.59 501.88,448.59 501.88,449.33 501.64,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.64,448.59 501.08,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.83,449.33 500.83,448.59 501.08,448.59 501.08,449.33 500.83,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.08,450.5 501.08,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.64,448.59 501.64,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.95,449.33 512.95,448.59 513.19,448.59 513.19,449.33 512.95,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.98,448.59 510.35,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.58,448.59 512.95,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.58,448.59 512.58,445.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.35,445.87 512.58,445.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.35,448.59 510.35,445.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.98,449.33 509.98,448.59 509.73,448.59 509.73,449.33 509.98,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.95,448.59 512.95,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.95,450.5 512.39,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.39,450.5 512.39,449.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.39,449.7 510.54,449.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.54,449.7 510.54,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.54,450.5 509.98,450.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.98,450.5 509.98,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.73,446.98 510.35,446.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.58,446.98 542.4,446.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="519.68,449.33 512.95,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.19,449.08 519.68,449.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="519.68,448.59 512.95,448.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.19,448.84 519.68,448.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="519.68,449.33 519.68,448.59 519.93,448.59 519.93,449.33 519.68,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,449.08 501.88,449.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.64,448.59 509.98,448.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,448.84 501.88,448.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.64,449.33 509.98,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="519.93,449.76 519.93,446.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.27,449.76 523.27,446.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="537.6,449.76 537.6,446.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.27,449.76 534.27,446.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.64,449.33 528.64,448.59 528.89,448.59 528.89,449.33 528.64,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.02,449.33 534.02,448.59 534.27,448.59 534.27,449.33 534.02,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.27,449.33 523.27,448.59 523.51,448.59 523.51,449.33 523.27,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.51,448.59 528.64,448.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="528.77,448.59 534.02,448.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.02,449.33 528.89,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="528.64,449.33 523.51,449.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.51,448.84 528.64,448.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.51,449.08 528.64,449.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="528.89,449.08 534.02,449.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="528.89,448.84 534.02,448.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.78,433.94 543.78,439.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.03,433.94 544.03,439.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.03,428.57 544.03,433.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.78,428.57 543.78,433.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.54,433.82 543.54,439.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.54,428.57 543.54,433.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.28,428.32 543.54,428.32 543.54,428.57 544.28,428.57 544.28,428.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.28,439.07 543.54,439.07 543.54,439.32 544.28,439.32 544.28,439.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.28,433.7 543.54,433.7 543.54,433.94 544.28,433.94 544.28,433.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.71,428.32 542.4,428.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.28,433.7 544.28,428.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.28,439.07 544.28,433.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.71,424.98 542.4,424.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.9,442.66 542.4,442.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.9,439.32 542.4,439.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.9,439.32 544.9,442.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="519.62,361.45 519.62,374.56" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="519.62,374.56 510.97,374.56" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="510.97,374.56 510.97,379.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="511.46,375.05 511.46,379.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="520.11,375.05 511.46,375.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="520.11,361.45 520.11,375.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="511.46,384.01 511.46,388.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="510.97,384.01 510.97,388.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="511.46,379.07 510.97,379.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="511.46,384.01 510.97,384.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="511.46,383.76 515.91,383.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.46,379.31 512.64,379.47 513.73,379.93 514.66,380.66 515.36,381.62 515.79,382.72 515.91,383.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.46,383.62 515.9,383.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.46,383.62 511.46,383.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.46,383.76 511.46,383.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.46,379.31 511.46,379.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.46,379.07 510.97,379.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="510.97,379.07 510.97,379.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="510.97,379.31 511.46,379.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.46,384.01 511.46,383.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.46,383.76 510.97,383.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="510.97,383.76 510.97,384.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="510.97,384.01 511.46,384.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.9,410.67 542.4,410.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.9,399.67 542.4,399.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.28,405.05 543.54,405.05 543.54,405.3 544.28,405.3 544.28,405.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.28,410.43 543.54,410.43 543.54,410.67 544.28,410.67 544.28,410.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.28,399.67 543.54,399.67 543.54,399.92 544.28,399.92 544.28,399.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.54,399.92 543.54,405.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.54,405.17 543.54,410.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.78,399.92 543.78,405.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.03,399.92 544.03,405.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.03,405.3 544.03,410.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.78,405.3 543.78,410.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.9,396.34 542.4,396.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.28,405.05 544.28,399.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.28,410.43 544.28,405.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.9,414.01 542.4,414.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.37,424.73 544.37,419.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.37,419.36 544.37,414.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.88,419.6 543.88,424.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.12,419.6 544.12,424.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.12,414.23 544.12,419.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.88,414.23 543.88,419.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.63,419.48 543.63,424.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.63,414.23 543.63,419.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.37,413.98 543.63,413.98 543.63,414.23 544.37,414.23 544.37,413.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.37,424.73 543.63,424.73 543.63,424.98 544.37,424.98 544.37,424.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.37,419.36 543.63,419.36 543.63,419.6 544.37,419.6 544.37,419.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.12,245.36 538.38,245.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.04,244.74 535.04,246.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="538.38,244.74 538.38,246.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.54,244.74 529.54,246.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.98,244.74 528.98,246.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.48,244.74 523.48,246.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.25,244.81 522.25,246.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="520.15,244.74 520.15,246.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="521.2,244.81 521.2,246.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="521.2,244.81 522.25,244.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.48,255.1 543.2,255.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.48,251.76 543.2,251.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.42,253.86 543.2,253.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.42,252.81 543.2,252.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.42,252.81 545.42,253.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.37,390.71 543.63,390.71 543.63,390.96 544.37,390.96 544.37,390.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.37,396.09 543.63,396.09 543.63,396.34 544.37,396.34 544.37,396.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.37,385.34 543.63,385.34 543.63,385.58 544.37,385.58 544.37,385.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.63,385.58 543.63,390.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.63,390.84 543.63,396.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.88,385.58 543.88,390.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.12,385.58 544.12,390.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.12,390.96 544.12,396.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.88,390.96 543.88,396.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.37,390.71 544.37,385.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.37,396.09 544.37,390.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.87,385.34 542.37,385.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.84,370.88 542.4,370.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.34,381.63 544.34,376.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.34,376.26 544.34,371.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.85,376.5 543.85,381.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.1,376.5 544.1,381.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.1,371.13 544.1,376.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.85,371.13 543.85,376.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.6,376.38 543.6,381.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.6,371.13 543.6,376.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.34,370.88 543.6,370.88 543.6,371.13 544.34,371.13 544.34,370.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.34,381.63 543.6,381.63 543.6,381.88 544.34,381.88 544.34,381.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.34,376.26 543.6,376.26 543.6,376.5 544.34,376.5 544.34,376.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.87,381.88 542.37,381.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.84,367.54 542.4,367.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.09,303.82 545.33,303.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="560.16,303.82 559.67,303.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="549.53,303.82 550.15,303.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="549.53,303.08 550.15,303.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="549.53,303.82 549.53,303.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.33,303.82 545.33,303.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.58,303.7 545.58,307.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="549.28,303.7 549.1,304.87 548.55,305.92 547.7,306.74 546.64,307.25 545.47,307.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="545.69,303.7 545.69,307.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="545.69,303.7 545.69,303.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="545.58,303.7 545.69,303.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="549.28,303.7 549.53,303.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="549.53,303.7 549.53,303.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="549.53,303.21 549.28,303.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="549.28,303.21 549.28,303.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="545.33,303.7 545.58,303.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="545.58,303.7 545.58,303.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="545.58,303.21 545.33,303.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="545.33,303.21 545.33,303.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="550.15,303.7 550.4,303.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="550.4,303.7 550.4,303.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="550.4,303.21 550.15,303.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="550.15,303.21 550.15,303.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="550.15,303.82 550.15,303.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="559.42,303.7 559.67,303.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="559.67,303.7 559.67,303.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="559.67,303.21 559.42,303.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="559.42,303.21 559.42,303.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="559.67,303.82 559.67,303.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="550.4,303.7 559.42,303.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="543.2,246.29 543.2,298.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.42,267.12 543.2,267.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.42,268.17 543.2,268.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.42,267.12 545.42,268.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.48,266.07 543.2,266.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.48,269.4 543.2,269.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.42,281.42 543.2,281.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.42,282.47 543.2,282.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.42,281.42 545.42,282.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.48,280.37 543.2,280.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.48,283.71 543.2,283.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.12,266.07 544.12,255.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.12,280.37 544.12,269.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="544.12,294.68 544.12,283.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.42,295.82 545.42,296.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.42,295.82 543.2,295.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="545.42,296.87 543.2,296.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.66,236.37 513.66,244.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.66,240.68 513.66,240.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.66,240.43 512.98,240.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.98,240.43 512.98,240.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.98,240.68 513.66,240.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.98,236.37 512.98,240.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.66,244.74 513.66,244.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.66,244.5 512.98,244.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.98,244.5 512.98,244.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.98,244.74 513.66,244.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.98,244.5 512.98,240.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.41,240.68 513.41,244.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.41,236.62 513.41,240.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.22,236.62 513.22,240.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.22,240.68 513.22,244.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.98,187.45 512.98,187.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.98,189.85 512.98,189.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.26,189.67 510.26,187.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.98,187.45 510.26,187.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.98,189.67 510.26,189.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.72,197.93 512.98,197.93 512.98,198.18 513.72,198.18 513.72,197.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.72,187.05 512.98,187.05 512.98,187.3 513.72,187.3 513.72,187.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.72,198.73 512.98,198.73 512.98,198.98 513.72,198.98 513.72,198.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.72,189.85 512.98,189.85 512.98,190.1 513.72,190.1 513.72,189.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.98,198.73 512.98,198.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.98,198.73 514.89,198.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,198.18 512.98,198.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.13,262.85 353.13,167" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="352.39,249.47 352.39,248.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="352.39,247.95 352.39,166.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="352.39,260.59 352.39,248.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="347.57,247.95 352.39,247.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="347.57,248.73 352.39,248.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="342.63,248.73 342.63,247.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="347.57,248.73 347.57,247.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="338.27,248.73 342.63,248.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="338.27,247.95 342.63,247.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.16,216.44 343.16,217.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.16,217.18 352.39,217.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.16,216.44 352.39,216.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.47,157.7 473.47,159.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.57,157.7 475.57,159.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="473.47,159.8 475.57,159.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="473.47,157.7 475.57,157.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.94,157.7 434.94,159.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.04,157.7 437.04,159.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.94,159.8 437.04,159.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.94,157.7 437.04,157.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="374.82,166.38 374.58,166.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.58,166.38 374.58,166.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.58,166.88 374.82,166.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.82,166.88 374.82,166.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.13,166.38 369.88,166.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.88,166.38 369.88,166.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.88,166.88 370.13,166.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.13,166.88 370.13,166.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.58,166.38 374.58,161.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.13,166.38 370.29,165.21 370.75,164.12 371.48,163.19 372.43,162.49 373.53,162.06 374.71,161.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.44,166.38 374.44,161.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.44,166.38 374.44,166.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.58,166.38 374.44,166.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.88,166.04 369.88,167" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="374.82,166.26 374.82,167" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="374.82,167 375.1,167" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="374.82,166.26 375.1,166.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.84,152.94 375.84,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.1,152.94 375.1,166.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="359.2,165.73 359.2,165.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.2,165.49 358.7,165.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.7,165.49 358.7,165.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.7,165.73 359.2,165.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.2,161.04 359.2,160.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.2,160.79 358.7,160.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.7,160.79 358.7,161.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.7,161.04 359.2,161.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.2,165.49 363.65,165.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.2,161.04 360.37,161.19 361.46,161.66 362.39,162.39 363.09,163.34 363.52,164.44 363.65,165.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.2,165.35 363.64,165.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.2,165.35 359.2,165.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.2,165.49 359.2,165.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.65,165.73 359.25,165.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="358.65,160.79 359.25,160.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="359.25,160.79 359.25,159.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="358.65,160.79 358.65,159.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.13,167 369.88,167" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="359.25,166.04 359.25,165.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="358.65,166.04 358.65,165.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="352.39,166.04 369.88,166.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="356.84,157.55 359.25,157.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.84,159.77 359.25,159.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.25,157.55 359.25,159.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.84,157.55 356.84,159.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.9,273.33 475,273.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.9,275.43 475,275.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475,273.33 475,275.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.9,273.33 472.9,275.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.39,262.85 352.39,261.43" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.13,262.85 352.39,262.85" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="352.53,263.09 348.08,263.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.53,267.54 351.36,267.39 350.27,266.93 349.34,266.19 348.63,265.24 348.21,264.14 348.08,262.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.53,263.23 348.09,263.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.53,263.23 352.53,263.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.53,263.09 352.53,263.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.53,271.99 352.53,271.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.53,271.85 352.53,271.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.53,271.85 348.09,271.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.08,272.13 348.21,270.95 348.63,269.85 349.34,268.89 350.27,268.16 351.36,267.7 352.53,267.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.53,271.99 348.08,271.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.03,262.85 353.03,263.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.03,263.09 352.53,263.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.53,263.09 352.53,262.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.53,262.85 353.03,262.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.64,262.63 337.64,262.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.64,262.88 338.13,262.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.13,262.88 338.13,262.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.13,262.63 337.64,262.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.64,262.88 333.19,262.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.64,267.33 336.46,267.17 335.37,266.71 334.44,265.98 333.74,265.03 333.31,263.92 333.19,262.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.64,263.02 333.2,263.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.64,263.02 337.64,263.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.64,262.88 337.64,263.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.64,271.78 337.64,271.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.64,271.64 337.64,271.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.64,271.64 333.2,271.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.19,271.91 333.31,270.73 333.74,269.63 334.44,268.68 335.37,267.95 336.46,267.49 337.64,267.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.64,271.78 333.19,271.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.5,262.63 338.27,262.63" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="338.27,262.63 338.27,261.43" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="337.5,262.63 337.5,247.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="338.27,260.59 338.27,248.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="338.27,261.43 352.39,261.43" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="338.27,260.59 352.39,260.59" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="433.23,273.92 434.83,273.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="433.23,273.18 437.24,273.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="409.5,273.92 433.23,273.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.5,273.18 433.23,273.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.85,273.92 409.5,273.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="408.85,273.18 409.5,273.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="404.15,273.8 404.15,278.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.6,273.8 408.45,274.97 407.98,276.06 407.25,276.99 406.3,277.7 405.2,278.13 404.02,278.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="404.29,273.8 404.29,278.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="404.29,273.8 404.29,273.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="404.15,273.8 404.29,273.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.85,273.18 408.85,273.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="403.91,273.26 403.91,273.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="408.6,273.8 408.85,273.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.85,273.8 408.85,273.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.85,273.31 408.6,273.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.6,273.31 408.6,273.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.91,273.8 404.15,273.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="404.15,273.8 404.15,273.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="404.15,273.31 403.91,273.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.91,273.31 403.91,273.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.5,273.18 409.5,273.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="433.23,273.18 433.23,273.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="409.75,273.18 409.75,273.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.98,273.18 432.98,273.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.24,273.18 421.24,273.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.49,273.18 421.49,273.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.37,273.18 415.37,273.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.62,273.18 415.62,273.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.75,273.55 415.37,273.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.62,273.55 421.24,273.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="427.11,273.55 421.49,273.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.98,273.55 427.36,273.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="427.11,273.18 427.11,273.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="427.36,273.18 427.36,273.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.96,317.11 359.72,317.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.72,317.11 359.72,317.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.72,317.61 359.96,317.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.96,317.61 359.96,317.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="355.27,317.11 355.02,317.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="355.02,317.11 355.02,317.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="355.02,317.61 355.27,317.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="355.27,317.61 355.27,317.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.72,317.11 359.72,312.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="355.27,317.11 355.42,315.94 355.88,314.85 356.62,313.92 357.57,313.22 358.67,312.79 359.85,312.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.58,317.11 359.58,312.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.58,317.11 359.58,317.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.72,317.11 359.58,317.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="355.02,317.64 355.02,317.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="359.96,317.64 359.96,317.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="359.96,317.08 360.43,317.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="359.96,317.64 360.43,317.64" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="436.5,304.24 436.5,330.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.17,316.77 361.17,336.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="434.83,302 434.83,304.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.83,302 437.03,302" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.83,304.24 437.03,304.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.83,273.18 434.83,275.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.83,275.43 437.03,275.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.83,273.18 437.03,273.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="366.2,273.26 403.91,273.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.43,317.64 360.43,330.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="402.8,273.92 402.8,336.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="396.76,304.1 398.96,304.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.76,301.86 398.96,301.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.96,273.26 398.96,275.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.76,273.26 398.96,273.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="386.47,273.26 386.47,274" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.23,273.26 386.23,274" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="392.1,273.63 386.47,273.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.23,273.63 380.6,273.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.73,273.63 380.36,273.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="368.86,273.63 374.49,273.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.73,273.26 374.73,274" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.49,273.26 374.49,274" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.6,273.26 380.6,274" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.36,273.26 380.36,274" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="392.1,273.26 392.1,274" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="368.86,273.26 368.86,274" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="392.34,273.26 392.34,274" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="368.61,273.26 368.61,274" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.26,273.79 361.51,273.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.51,273.79 361.51,273.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.51,273.29 361.26,273.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.26,273.29 361.26,273.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="365.96,273.79 366.2,273.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="366.2,273.79 366.2,273.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="366.2,273.29 365.96,273.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="365.96,273.29 365.96,273.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.51,273.79 361.51,278.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="365.96,273.79 365.8,274.96 365.34,276.05 364.61,276.98 363.66,277.68 362.55,278.11 361.37,278.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.65,273.79 361.65,278.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.65,273.79 361.65,273.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.51,273.79 361.65,273.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.26,273.26 361.26,274" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="366.2,273.26 366.2,274" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="366.2,274 396.76,274" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.13,272.24 352.39,272.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.03,271.99 353.03,272.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.03,272.24 352.53,272.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.53,272.24 352.53,271.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.53,271.99 353.03,271.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.57,273.69 340.82,273.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.82,273.69 340.82,273.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.82,273.2 340.57,273.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.57,273.2 340.57,273.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.27,273.69 345.52,273.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.52,273.69 345.52,273.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.52,273.2 345.27,273.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.27,273.2 345.27,273.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.82,273.69 340.82,278.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.27,273.69 345.11,274.87 344.65,275.96 343.92,276.89 342.97,277.59 341.86,278.02 340.69,278.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.96,273.69 340.96,278.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.96,273.69 340.96,273.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.82,273.69 340.96,273.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.57,273.82 340.57,273.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.52,273.82 345.52,273.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.52,273.07 352.39,273.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.13,273.26 361.26,273.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.52,273.82 347.24,273.82" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.17,274 361.26,274" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="358.7,275.73 361.17,275.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,273.26 358.7,275.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,273.26 361.17,273.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.17,273.26 361.17,275.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.43,301.63 360.43,287.75" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.17,301.63 361.17,275.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.17,301.63 361.17,304.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,301.63 361.17,301.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.17,304.1 361.17,330.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.43,304.1 360.43,317.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.79,317.64 355.02,317.64" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="339.88,300.7 339.68,299.48 339.12,298.38 338.25,297.5 337.14,296.94 335.92,296.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.92,296.75 337.14,296.55 338.25,295.99 339.12,295.12 339.68,294.02 339.88,292.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.92,300.7 339.88,300.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.92,292.79 339.88,292.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.79,317.08 355.02,317.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="331.32,273.82 340.57,273.82" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="331.32,273.23 337.5,273.23" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.13,273.26 353.13,272.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="352.39,273.07 352.39,272.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="358.7,301.63 358.7,304.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.7,304.1 361.17,304.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.96,301.86 398.96,304.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.76,301.86 396.76,304.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.76,275.61 398.96,275.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.76,273.26 396.76,275.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="436.67,275.43 436.67,302" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="437.24,273.68 437.24,295.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="436.5,342.29 436.5,354.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="437.24,296.38 437.24,320.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="403.55,273.92 403.55,336.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="403.42,341.17 403.42,340.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.42,340.92 402.93,340.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="402.93,340.92 402.93,341.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="402.93,341.17 403.42,341.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.42,336.47 403.42,336.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.42,336.22 402.93,336.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="402.93,336.22 402.93,336.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="402.93,336.47 403.42,336.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.42,340.92 407.87,340.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.42,336.47 404.6,336.63 405.69,337.09 406.62,337.82 407.32,338.77 407.75,339.87 407.87,341.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.42,340.78 407.86,340.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.42,340.78 403.42,340.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.42,340.92 403.42,340.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.55,341.17 402.8,341.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="403.55,336.22 402.8,336.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="402.8,341.17 402.8,341.55" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="403.55,341.17 403.55,341.55" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="403.55,341.55 408.38,341.55" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="436.5,332.78 436.5,341.55" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.17,342.29 370.31,342.29" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.17,341.55 370.31,341.55" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="434.83,332.78 437.03,332.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.83,330.54 437.03,330.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.03,330.54 437.03,332.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.83,330.54 434.83,332.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.76,330.54 396.76,332.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.96,330.54 398.96,332.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.76,330.54 398.96,330.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.76,332.78 398.96,332.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.22,189.67 472.71,189.67 472.71,187.45 475.22,187.45 475.22,189.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,198.73 514.89,198.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.72,198.18 513.72,189.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.98,198.18 512.98,189.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.47,190.1 513.47,197.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.22,190.1 513.22,197.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.22,206.82 513.22,198.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.47,206.82 513.47,198.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.98,198.73 512.98,207.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.72,198.73 513.72,207.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.89,198.73 514.89,198.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,207.63 514.89,207.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,207.63 514.89,207.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,207.08 512.98,207.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.98,207.63 514.89,207.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.98,207.63 512.98,207.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.72,207.63 512.98,207.63 512.98,207.88 513.72,207.88 513.72,207.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.72,206.83 512.98,206.83 512.98,207.08 513.72,207.08 513.72,206.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.89,227.47 514.89,226.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,227.47 514.89,226.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,226.92 512.98,226.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.98,227.47 514.89,227.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.98,227.47 512.98,226.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.72,227.47 512.98,227.47 512.98,227.72 513.72,227.72 513.72,227.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.72,226.67 512.98,226.67 512.98,226.92 513.72,226.92 513.72,226.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.72,235.57 512.98,235.57 512.98,235.81 513.72,235.81 513.72,235.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.72,236.37 512.98,236.37 512.98,236.62 513.72,236.62 513.72,236.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.98,236.37 512.98,235.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.98,236.37 514.89,236.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,235.81 512.98,235.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,236.37 514.89,235.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,236.37 514.89,235.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.26,218.4 510.26,216.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.98,216.18 510.26,216.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.98,218.4 510.26,218.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.72,207.67 513.72,216" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.72,216 512.98,216 512.98,215.75 513.72,215.75 513.72,216" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.89,216 514.71,216" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.98,216 512.98,216.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.22,215.75 513.22,207.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.47,215.75 513.47,207.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.98,207.67 512.98,216" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.71,216 512.98,216" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.71,218.6 512.98,218.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.98,226.93 512.98,218.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.47,218.85 513.47,226.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.22,218.85 513.22,226.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.98,218.6 512.98,218.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.72,218.6 512.98,218.6 512.98,218.85 513.72,218.85 513.72,218.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.72,226.93 513.72,218.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.22,227.72 513.22,235.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.72,235.8 513.72,227.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.47,227.72 513.47,235.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.98,235.8 512.98,227.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.89,170 514.89,169.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,170 514.89,169.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,169.44 512.98,169.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.98,170 514.89,170" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.98,170 512.98,169.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.72,170 512.98,170 512.98,170.25 513.72,170.25 513.72,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.72,178.09 512.98,178.09 512.98,178.34 513.72,178.34 513.72,178.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.72,178.9 512.98,178.9 512.98,179.14 513.72,179.14 513.72,178.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.98,178.9 512.98,178.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.98,178.9 514.89,178.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,178.34 512.98,178.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,178.9 514.89,178.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.89,178.9 514.89,178.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.47,178.08 513.47,170.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.98,170 512.98,178.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.72,170 513.72,178.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.22,178.08 513.22,170.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.22,187.02 513.22,179.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.47,187.02 513.47,179.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.98,178.94 512.98,187.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.72,178.94 513.72,187.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.46,150.5 454.9,150.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="454.9,151.67 454.9,152.42 454.65,152.42 454.65,151.67 454.9,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.7,151.67 455.7,152.42 455.46,152.42 455.46,151.67 455.7,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="454.9,152.42 455.46,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.46,150.5 455.46,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="454.9,152.42 454.9,150.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.46,152.42 463.83,152.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.55,151.92 455.7,151.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.55,152.17 455.7,152.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.46,151.67 463.8,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.93,152.94 483.82,152.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.53,151.67 454.9,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="446.53,152.42 454.9,152.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="454.65,151.92 446.77,151.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="454.65,152.17 446.77,152.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="446.53,150.5 445.97,150.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.53,150.5 446.53,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="445.97,152.42 445.97,150.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="445.97,152.42 446.53,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="445.97,151.67 445.97,152.42 445.72,152.42 445.72,151.67 445.97,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="446.77,151.67 446.77,152.42 446.53,152.42 446.53,151.67 446.77,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475,218.4 472.5,218.4 472.5,216.18 475,216.18 475,218.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.18,218.4 434.68,218.4 434.68,216.18 437.18,216.18 437.18,218.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.4,189.67 434.89,189.67 434.89,187.45 437.4,187.45 437.4,189.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.27,189.67 396.76,189.67 396.76,187.45 399.27,187.45 399.27,189.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.05,218.4 396.55,218.4 396.55,216.18 399.05,216.18 399.05,218.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="464.36,150.5 463.8,150.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.8,151.67 463.8,152.42 463.55,152.42 463.55,151.67 463.8,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.36,150.5 464.36,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.8,152.42 464.36,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="464.6,151.67 464.6,152.42 464.36,152.42 464.36,151.67 464.6,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.8,152.42 463.8,150.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.82,151.06 475.57,151.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.69,152.42 434.94,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.41,152.42 437.66,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="445.97,152.42 437.67,152.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.92,152.17 445.72,152.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.91,151.92 445.72,151.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.97,151.67 437.66,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.66,151.67 437.66,152.42 437.91,152.42 437.91,151.67 437.66,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.69,151.06 434.69,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.41,152.42 437.41,152.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.94,152.42 434.94,152.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.57,152.42 475.57,152.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.95,152.42 472.95,152.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.57,151.06 475.57,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.69,151.67 472.69,152.42 472.45,152.42 472.45,151.67 472.69,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.95,152.42 472.69,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.57,151.06 475.57,150.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.57,150.87 475.02,150.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.02,150.87 475.02,151.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.02,151.67 473.26,151.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="473.26,151.67 473.26,150.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="473.26,150.87 472.7,150.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.7,150.87 472.7,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="464.39,152.42 472.69,152.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.44,152.17 464.63,152.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.39,151.67 472.69,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.44,151.92 464.63,151.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.7,151.06 464.36,151.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.82,151.92 483.58,151.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.82,151.67 475.57,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.82,152.17 483.58,152.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.82,152.42 475.58,152.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.57,151.67 475.57,152.42 475.82,152.42 475.82,151.67 475.57,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.58,151.67 483.58,152.42 483.82,152.42 483.82,151.67 483.58,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.75,151.67 407.75,152.42 408,152.42 408,151.67 407.75,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.55,152.42 408,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.55,151.67 408.55,152.42 408.8,152.42 408.8,151.67 408.55,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.58,151.67 425.58,152.42 425.82,152.42 425.82,151.67 425.58,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="426.38,151.67 426.38,152.42 426.63,152.42 426.63,151.67 426.38,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="426.38,152.42 425.82,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="417.7,152.17 425.58,152.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.7,151.92 425.58,151.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.82,152.42 417.45,152.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.82,151.67 417.45,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.89,151.67 408.55,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.8,152.17 416.65,152.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.8,151.92 416.65,151.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.89,152.42 408.52,152.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.45,152.42 416.89,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.65,151.67 416.65,152.42 416.89,152.42 416.89,151.67 416.65,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.45,151.67 417.45,152.42 417.7,152.42 417.7,151.67 417.45,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.82,151.06 417.45,151.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.89,151.06 408.55,151.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.55,152.42 408.55,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408,150.93 408,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="426.38,152.42 426.38,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="425.82,150.93 425.82,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="417.45,152.42 417.45,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.89,150.93 416.89,152.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.44,152.17 426.63,152.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="426.38,151.67 434.69,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.44,151.92 426.63,151.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="426.38,152.42 434.68,152.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.69,151.06 426.38,151.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.69,151.67 434.69,152.42 434.44,152.42 434.44,151.67 434.69,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.75,151.92 399.51,151.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.75,152.17 399.51,152.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.27,151.67 408,151.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.27,152.42 408.03,152.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.27,151.12 408,151.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.85,152.1 338.18,152.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.85,151.86 338.18,151.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.74,151.61 321.49,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.45,151.12 338.58,151.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.43,152.35 330.61,152.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.43,151.61 330.61,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.74,152.35 321.49,152.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.74,151.86 329.5,151.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.74,152.1 329.5,152.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.49,151.12 329.9,151.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.49,151.61 321.49,152.35 321.74,152.35 321.74,151.61 321.49,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.87,160.07 318.87,159.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,160.07 318.87,160.07 318.87,160.32 318.12,160.32 318.12,160.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.12,167.93 318.12,160.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.87,167.96 318.87,160.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.37,160.32 318.37,167.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.62,160.32 318.62,167.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.87,176.79 318.87,168.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.12,176.79 318.12,168.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.62,169.07 318.62,176.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.37,169.07 318.37,176.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.87,186.04 318.87,177.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.37,177.91 318.37,185.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.12,186.04 318.12,177.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.62,177.91 318.62,185.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.12,185.8 318.87,185.8 318.87,186.04 318.12,186.04 318.12,185.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.31,219.1 353.13,219.1 353.13,214.76 359.31,214.76 359.31,219.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.65,217.09 318.5,217.09 318.5,214.87 321.65,214.87 321.65,217.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.59,189.04 356.35,189.04 356.35,185.7 359.59,185.7 359.59,189.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.62,188.4 318.5,188.4 318.5,186.18 321.62,186.18 321.62,188.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.69,186.6 317.32,186.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.69,187.99 317.32,187.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,188.55 317.32,188.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,188.41 318.87,188.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,159.76 321.55,159.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="334.22,216.35 334.22,217.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="318.62,197.79 318.62,188.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.12,188.55 318.12,198.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.37,197.79 318.37,188.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.87,188.55 318.87,198.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.37,206.75 318.37,199.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.62,206.75 318.62,199.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.87,206.75 318.87,207" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.12,206.75 318.12,207" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.87,214.59 318.87,207.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.37,208.11 318.37,214.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.12,214.59 318.12,207.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.62,208.11 318.62,214.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.95,214.59 316.95,217.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.42,217.43 319.42,244.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,217.43 318.87,217.43 318.87,217.68 318.12,217.68 318.12,217.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.62,225.76 318.62,217.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.12,217.68 318.12,226.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.37,225.76 318.37,217.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.87,217.68 318.87,226.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.42,217.43 316.95,217.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475,248.68 472.5,248.68 472.5,246.46 475,246.46 475,248.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.59,247.9 356.35,247.9 356.35,243.94 359.59,243.94 359.59,247.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.05,248.68 396.55,248.68 396.55,246.46 399.05,246.46 399.05,248.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.18,248.68 434.68,248.68 434.68,246.46 437.18,246.46 437.18,248.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475,246.46 475,238.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475,238.55 472.5,238.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.5,238.55 472.5,246.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.99,239.04 472.99,246.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.51,246.46 474.51,239.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.51,239.04 472.99,239.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.99,246.46 474.51,239.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.99,239.04 474.51,246.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.14,291.14 293.59,289.08 294.01,288.66 294.17,288.62 294.25,288.67 294.35,288.82 294.4,289.01 294.41,289.26 294.38,289.4 294.27,289.64" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="293.85,290.06 294.27,289.64 294.44,289.6 294.51,289.65 294.61,289.8 294.69,290.09 294.69,290.34 294.67,290.48 294.56,290.72 294.14,291.14" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="295.4,287.89 295.3,287.74 295.15,287.63 295.04,287.63 294.85,287.82 294.78,288.01 294.74,288.3 294.75,288.54 294.78,288.88 294.91,289.37 295.04,289.62 295.14,289.77 295.28,289.87 295.4,289.88 295.59,289.69 295.65,289.5 295.7,289.21 295.69,288.97" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="296.34,287.2 296.37,287.54 296.33,287.83 296.22,288.07 296.17,288.11 296,288.15 295.86,288.05 295.73,287.8 295.71,287.71 295.67,287.36 295.72,287.07 295.83,286.84 295.88,286.79 296.04,286.75 296.19,286.85 296.34,287.2 296.47,287.69 296.56,288.23 296.54,288.61 296.43,288.85 296.33,288.95 296.17,288.99 296.07,288.84" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="308.73,274.82 303.38,288.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.53,274.35 304.22,290.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.82,289.92 293.06,289.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.06,289.92 293.06,289.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.06,289.43 292.82,289.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.82,289.43 292.82,289.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.51,289.92 297.76,289.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.76,289.92 297.76,289.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.76,289.43 297.51,289.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.51,289.43 297.51,289.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.06,289.43 293.06,284.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.51,289.43 297.36,288.25 296.9,287.16 296.16,286.23 295.21,285.53 294.11,285.1 292.93,284.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.2,289.43 293.2,284.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.2,289.43 293.2,289.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.06,289.43 293.2,289.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.82,290.05 292.82,288.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.76,290.05 297.76,288.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.76,288.53 303.38,288.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.76,290.05 304.22,290.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.39,288.53 292.82,288.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.21,290.05 292.82,290.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.73,247.87 308.73,274.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.53,247.87 309.53,274.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.71,244.47 321.71,247.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.71,247.87 308.73,247.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.71,244.47 318.87,244.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,236.08 318.87,236.08 318.87,235.83 318.12,235.83 318.12,236.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.87,234.97 318.87,235.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,234.97 318.87,234.97 318.87,234.72 318.12,234.72 318.12,234.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.87,235.83 318.87,243.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.12,243.58 318.87,243.58 318.87,243.33 318.12,243.33 318.12,243.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.62,243.33 318.62,236.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.37,243.33 318.37,236.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.12,235.83 318.12,243.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.87,243.58 318.87,244.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,226.87 318.87,234.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.62,234.72 318.62,227.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.37,234.72 318.37,227.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.12,226.87 318.12,234.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.73,248.15 289.39,248.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.32,279.07 331.32,273.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.27,272.02 338.27,273.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="337.5,272.02 338.27,272.02" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="337.64,272.02 337.64,271.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.64,271.78 338.13,271.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.13,271.78 338.13,272.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.13,272.02 337.64,272.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.5,272.02 337.5,273.23" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="338.27,273.07 340.57,273.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="270.66,304 271.83,303.81 272.88,303.26 273.7,302.41 274.22,301.35 274.37,300.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="270.66,300.29 274.37,300.29" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<path d="M270.6 299.35L270.73 299.35 270.73 300.29 270.6 300.29 270.6 299.35Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="266.64,306 266.56,305.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.56,305.68 266.31,305.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.31,305.38 265.95,305.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.95,305.2 265.5,305.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.5,305.13 264.83,305.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.24,304.75 264.06,304.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.06,304.75 264.11,304.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.11,304.96 264.27,305.2 264.54,305.3 264.83,305.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.83,306.78 264.54,306.7 264.27,306.81 264.11,307.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.24,307.26 263.24,304.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.06,307.26 264.11,307.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.24,307.26 264.06,307.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.83,306.78 265.5,306.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.5,306.88 265.95,306.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.95,306.81 266.31,306.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.31,306.63 266.56,306.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.56,306.33 266.64,306" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<path d="M270.72 308.97L270.6 308.97 270.6 304 270.73 304 270.72 308.97Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M270.51 280.84L270.63 280.84 270.63 281.64 270.51 281.64 270.51 280.84Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M263.15 280.96L263.15 280.84 270.51 280.84 270.51 280.96 263.15 280.96Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="270.57,286.09 269.64,286.24 268.8,286.68 268.14,287.35 267.73,288.21 267.6,289.14" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="270.57,289.05 267.6,289.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="266.55,283.12 266.47,282.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.47,282.8 266.22,282.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.22,282.5 265.86,282.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.86,282.31 265.41,282.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.41,282.24 264.74,282.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.15,281.87 263.97,281.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.97,281.87 264.02,282.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.02,282.08 264.18,282.32 264.46,282.42 264.74,282.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.74,283.9 264.46,283.82 264.18,283.92 264.02,284.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.15,284.38 263.15,281.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.97,284.38 264.02,284.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.15,284.38 263.97,284.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.74,283.9 265.41,284" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.41,284 265.86,283.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.86,283.93 266.22,283.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.22,283.74 266.47,283.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.47,283.45 266.55,283.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="270.57,281.64 269.64,281.79 268.8,282.23 268.14,282.9 267.73,283.76 267.6,284.69" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="270.57,284.6 267.6,284.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<path d="M270.63 286.09L270.51 286.09 270.51 284.6 270.63 284.6 270.63 286.09Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M263.15 285.41L263.15 285.28 270.51 285.28 270.51 285.41 263.15 285.41Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="266.55,287.57 266.47,287.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.47,287.25 266.22,286.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.22,286.95 265.86,286.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.86,286.76 265.41,286.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.41,286.69 264.74,286.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.15,286.32 263.97,286.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.97,286.32 264.02,286.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.02,286.52 264.18,286.77 264.46,286.87 264.74,286.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.74,288.35 264.46,288.27 264.18,288.37 264.02,288.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.15,288.83 263.15,286.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.97,288.83 264.02,288.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.15,288.83 263.97,288.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.74,288.35 265.41,288.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.41,288.45 265.86,288.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.86,288.38 266.22,288.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.22,288.19 266.47,287.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.47,287.9 266.55,287.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<path d="M270.63 294.25L270.51 294.25 270.51 289.05 270.63 289.05 270.63 294.25Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M263.15 289.86L263.15 289.73 270.51 289.73 270.51 289.86 263.15 289.86Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="266.55,292.02 266.47,291.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.47,291.7 266.22,291.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.22,291.4 265.86,291.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.86,291.21 265.41,291.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.41,291.14 264.74,291.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.15,290.76 263.97,290.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.97,290.76 264.02,290.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.02,290.97 264.18,291.22 264.46,291.32 264.74,291.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.74,292.8 264.46,292.72 264.18,292.82 264.02,293.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.15,293.28 263.15,290.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.97,293.28 264.02,293.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.15,293.28 263.97,293.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.74,292.8 265.41,292.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.41,292.9 265.86,292.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.86,292.83 266.22,292.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.22,292.64 266.47,292.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.47,292.34 266.55,292.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="270.57,294.25 271.74,294.43 272.78,294.98 273.61,295.83 274.12,296.89 274.28,298.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="270.57,297.95 274.28,297.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<path d="M270.63 298.57L270.51 298.57 270.51 297.95 270.63 297.95 270.63 298.57Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="270.66,311.94 269.72,311.79 268.89,311.35 268.23,310.67 267.82,309.82 267.69,308.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="270.66,308.97 267.69,308.97" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<path d="M263.12 308.29L263.12 308.17 270.6 308.17 270.6 308.29 263.12 308.29Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="266.64,310.45 266.56,310.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.56,310.13 266.31,309.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.31,309.83 265.95,309.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.95,309.64 265.5,309.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.5,309.57 264.83,309.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.24,309.2 264.06,309.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.06,309.2 264.11,309.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.11,309.41 264.27,309.65 264.54,309.75 264.83,309.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.83,311.23 264.54,311.15 264.27,311.26 264.11,311.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.24,311.71 263.24,309.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.06,311.71 264.11,311.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.24,311.71 264.06,311.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.83,311.23 265.5,311.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.5,311.33 265.95,311.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.95,311.26 266.31,311.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.31,311.08 266.56,310.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.56,310.78 266.64,310.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="270.66,316.39 269.72,316.24 268.89,315.8 268.23,315.12 267.82,314.27 267.69,313.33" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="270.66,313.42 267.69,313.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<path d="M270.72 313.42L270.6 313.42 270.6 311.94 270.72 311.94 270.72 313.42Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M263.12 312.74L263.12 312.62 270.6 312.62 270.6 312.74 263.12 312.74Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="266.64,314.9 266.56,314.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.56,314.58 266.31,314.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.31,314.28 265.95,314.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.95,314.09 265.5,314.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.5,314.02 264.83,314.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.24,313.65 264.06,313.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.06,313.65 264.11,313.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.11,313.86 264.27,314.1 264.54,314.2 264.83,314.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.83,315.68 264.54,315.6 264.27,315.71 264.11,315.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.24,316.16 263.24,313.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.06,316.16 264.11,315.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.24,316.16 264.06,316.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.83,315.68 265.5,315.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.5,315.78 265.95,315.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.95,315.71 266.31,315.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.31,315.52 266.56,315.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.56,315.23 266.64,314.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="270.66,320.84 269.72,320.69 268.89,320.25 268.23,319.57 267.82,318.72 267.69,317.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="270.66,317.87 267.69,317.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<path d="M270.72 317.87L270.6 317.87 270.6 316.39 270.72 316.39 270.72 317.87Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M263.12 317.19L263.12 317.07 270.6 317.07 270.6 317.19 263.12 317.19Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="266.64,319.35 266.56,319.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.56,319.03 266.31,318.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.31,318.73 265.95,318.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.95,318.54 265.5,318.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.5,318.47 264.83,318.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.24,318.1 264.06,318.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.06,318.1 264.11,318.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.11,318.31 264.27,318.55 264.54,318.65 264.83,318.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.83,320.13 264.54,320.05 264.27,320.16 264.11,320.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.24,320.61 263.24,318.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.06,320.61 264.11,320.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="263.24,320.61 264.06,320.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.83,320.13 265.5,320.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.5,320.23 265.95,320.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="265.95,320.16 266.31,319.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.31,319.97 266.56,319.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="266.56,319.68 266.64,319.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<path d="M270.72 321.64L270.6 321.64 270.6 320.84 270.72 320.84 270.72 321.64Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="287.72,281.03 287.47,281.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.47,281.03 287.47,281.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.47,281.52 287.72,281.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.72,281.52 287.72,281.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.72,280.85 287.72,281.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.72,281.7 288.21,281.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.39,280.85 282.78,280.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.16,281.7 282.78,281.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.21,283.77 280.08,283.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.08,283.77 280.08,284.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.08,284.27 279.7,284.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.7,285.03 280.08,285.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="280.08,286.03 280.08,285.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="281.21,286.03 280.08,286.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="281.21,286.03 281.21,283.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="279.7,284.71 279.7,285.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="287.47,281.03 287.47,276.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.02,281.03 283.18,279.86 283.64,278.77 284.37,277.84 285.32,277.13 286.43,276.71 287.6,276.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.33,281.03 287.33,276.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.33,281.03 287.33,281.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.47,281.03 287.33,281.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.01,269.27 276.01,267.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="272.67,269.27 272.67,267.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="272.67,267.57 276.01,267.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.78,334.73 303.78,333.46" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="259.72,300.36 258.4,300.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.51,305.56 258.4,305.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.4,306.12 259.51,306.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.4,306.12 258.4,305.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.51,305.56 259.51,306.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.58,305.56 258.58,300.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.58,291.29 258.58,286.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.4,291.84 258.4,291.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.4,291.84 259.51,291.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.51,291.29 258.4,291.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.58,297.02 258.58,291.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.51,291.29 259.51,291.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.72,297.02 258.4,297.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.72,286.08 258.4,286.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.72,282.74 258.4,282.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.85,269.31 289.39,269.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="260.5,322.37 260.5,378.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="259.51,277.01 259.51,277.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.58,282.74 258.58,277.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.51,277.01 258.4,277.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.4,277.57 259.51,277.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.4,277.57 258.4,277.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.58,277.01 258.58,271.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.72,271.8 258.4,271.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.72,311.39 258.4,311.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.72,314.72 258.4,314.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.4,314.72 258.4,311.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.55,329.27 258.55,324" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.69,329.27 258.36,329.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.55,337.81 258.55,332.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.48,337.81 259.48,338.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.36,338.37 258.36,337.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.36,338.37 259.48,338.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.48,337.81 258.36,337.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.69,332.61 258.36,332.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.36,332.61 258.36,329.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.55,338.37 258.55,343.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.48,323.45 259.48,324" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.36,324 258.36,323.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.36,324 259.48,324" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.48,323.45 258.36,323.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.55,323.45 258.55,314.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="260.5,379.07 260.5,382.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="278.89,378.33 278.89,370.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.78,385.07 508.23,383 508.65,382.58 508.81,382.54 508.88,382.59 508.98,382.74 509.04,382.94 509.04,383.18 509.02,383.33 508.91,383.57" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="508.49,383.99 508.91,383.57 509.07,383.52 509.15,383.58 509.25,383.73 509.33,384.02 509.33,384.26 509.31,384.41 509.2,384.65 508.78,385.07" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="510.04,381.81 509.94,381.66 509.79,381.56 509.67,381.56 509.49,381.74 509.42,381.93 509.38,382.22 509.38,382.47 509.42,382.81 509.55,383.3 509.67,383.55 509.77,383.7 509.92,383.8 510.04,383.81 510.23,383.62 510.29,383.43 510.33,383.14 510.33,382.89" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="510.36,381.49 510.34,381.39 510.33,381.15 510.35,381 510.42,380.81 510.61,380.62 510.73,380.63 510.8,380.68 510.9,380.83 510.95,381.03 510.96,381.27 510.94,381.66 510.74,383.11 511.39,382.45" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="511.3,380.55 511.27,380.46 511.27,380.21 511.29,380.07 511.35,379.88 511.54,379.69 511.66,379.69 511.73,379.74 511.83,379.89 511.89,380.09 511.89,380.33 511.88,380.72 511.67,382.17 512.33,381.52" style="fill:none;stroke:black;stroke-width:0.5"/>
+<path d="M297.36 381.27L297.55 382.46 297.55 382.46 297.75 381.27 297.36 381.27Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="297.55,381.27 297.55,378.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="361.17,336.22 361.17,341.55" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.43,336.22 360.43,353.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="350.84,385.71 350.84,446.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="351.41,385.09 351.41,387.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="350.84,385.71 349.2,385.71" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="321.02,387.78 321.02,390.65" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="321.02,390.65 317.44,390.65" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="317.44,390.65 317.44,388.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="320.77,390.41 317.68,390.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="317.68,390.41 317.68,388.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="320.77,389.88 320.77,390.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="333.65,373.41 361.17,373.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="321.11,387.78 321.11,388.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="330.62,387.78 330.62,388.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="330.62,387.78 333.02,387.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.57,385.71 338.98,385.71" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.57,385.09 338.36,385.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.82,385.71 344.57,385.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.57,385.71 344.57,385.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.57,385.09 344.82,385.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.82,385.09 344.82,385.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.02,385.09 349.27,385.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.27,385.09 349.27,385.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.27,385.71 349.02,385.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.02,385.71 349.02,385.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.03,385.69 349.03,389.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.83,385.69 344.98,386.8 345.41,387.83 346.1,388.71 347,389.37 348.04,389.78 349.15,389.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.9,385.69 348.9,389.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.9,385.69 348.9,385.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.03,385.69 348.9,385.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.57,385.09 344.57,385.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="349.27,385.71 349.27,385.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.57,385.09 344.57,385.71" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="320.93,446.36 350.84,446.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="306.65,387.78 307.15,387.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.42,301.94 336.79,301.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.42,292.55 336.42,290.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.43,292.55 335.43,291.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="370.7,387.81 351.41,387.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="371.26,388.37 360.8,388.37" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="351.41,388.37 351.41,446.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="370.7,373.32 370.7,377.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="371.26,373.26 371.26,377.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="370.76,386.92 370.76,387.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.76,387.16 371.26,387.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.26,387.16 371.26,386.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.26,386.92 370.76,386.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.76,377.77 370.76,378.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.76,378.02 371.26,378.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.26,378.02 371.26,377.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.26,377.77 370.76,377.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.76,378.02 366.32,378.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.76,382.47 369.59,382.31 368.5,381.85 367.57,381.12 366.87,380.16 366.44,379.06 366.32,377.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.76,378.16 366.32,378.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.76,378.16 370.76,378.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.76,378.02 370.76,378.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.76,386.92 370.76,386.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.76,386.78 370.76,386.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.76,386.78 366.32,386.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="366.32,387.05 366.44,385.87 366.87,384.77 367.57,383.82 368.5,383.08 369.59,382.62 370.76,382.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.76,386.92 366.32,386.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.26,387.16 371.26,388.37" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="370.7,387.16 370.7,387.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.43,357.75 361.17,357.75" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.17,357.75 361.17,357.99 360.55,357.99 360.49,357.99 360.43,357.99 360.43,357.75 361.17,357.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.43,353.3 361.17,353.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.43,357.75 360.43,358.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.17,357.75 361.17,373.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.17,353.05 361.17,353.3 360.55,353.3 360.49,353.3 360.43,353.3 360.43,353.05 361.17,353.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.43,357.75 355.98,357.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.43,353.3 359.25,353.45 358.16,353.92 357.23,354.65 356.53,355.6 356.1,356.7 355.98,357.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.43,357.61 355.98,357.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.43,357.61 360.43,357.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.43,357.75 360.43,357.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.17,342.29 361.17,353.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="319.21,354.35 323.57,354.35" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="370.56,341.77 370.31,341.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.31,341.77 370.31,342.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.31,342.26 370.56,342.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.56,342.26 370.56,341.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.26,341.77 375.01,341.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.01,341.77 375.01,342.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.01,342.26 375.26,342.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.26,342.26 375.26,341.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.01,341.77 375.01,337.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.56,341.77 370.72,340.6 371.18,339.51 371.91,338.58 372.86,337.87 373.97,337.44 375.14,337.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.87,341.77 374.87,337.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.87,341.77 374.87,341.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.01,341.77 374.87,341.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.31,342.29 370.31,341.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.26,342.29 375.26,341.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="370.31,341.55 370.31,342.29" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.26,341.55 375.26,342.29" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.26,341.55 402.8,341.55" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.26,342.29 408.63,342.29" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="408.63,342.26 408.63,342.29" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="413.67,342.29 413.67,354.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="408.63,341.8 408.38,341.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.38,341.8 408.38,342.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.38,342.29 408.63,342.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.63,342.29 408.63,341.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.33,341.8 413.08,341.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.08,341.8 413.08,342.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.08,342.29 413.33,342.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.33,342.29 413.33,341.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.38,341.55 408.38,342.29" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="408.38,342.29 408.38,341.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="413.33,341.55 413.33,342.29" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="413.33,342.29 413.33,341.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="414.22,342.29 414.22,354.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="413.33,341.55 436.5,341.55" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="413.33,342.29 413.67,342.29" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="414.22,342.29 436.5,342.29" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="413.08,342.13 413.08,346.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.63,342.13 408.79,343.31 409.25,344.4 409.98,345.33 410.93,346.03 412.03,346.46 413.21,346.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.94,342.13 412.94,346.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.94,342.13 412.94,342.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.08,342.13 412.94,342.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.67,354.78 415.06,354.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="414.22,354.22 415.06,354.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="420,354.28 419.75,354.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="419.75,354.28 419.75,354.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="419.75,354.78 420,354.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="420,354.78 420,354.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.3,354.28 415.06,354.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.06,354.28 415.06,354.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.06,354.78 415.3,354.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.3,354.78 415.3,354.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.06,354.22 415.06,354.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="415.06,354.78 415.06,354.25" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="420,354.78 420.34,354.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="420,354.22 420,354.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="420,354.78 420,354.25" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="420,354.22 436.5,354.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="420,354.78 422.9,354.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="422.9,354.78 422.9,355.9" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="423.46,354.78 423.46,355.9" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="437.24,345.26 451.7,345.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="437.24,344.7 451.15,344.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.15,321.04 437.24,321.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.64,319.98 451.64,319.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.64,319.73 451.15,319.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,319.73 451.15,319.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,319.98 451.64,319.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.1,321.51 446.65,321.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.1,325.96 449.93,325.81 448.84,325.35 447.91,324.61 447.2,323.66 446.78,322.56 446.65,321.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.1,321.65 446.66,321.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.1,321.65 451.1,321.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.1,321.51 451.1,321.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.64,321.54 451.64,321.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.64,321.29 451.15,321.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,321.29 451.15,321.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,321.54 451.64,321.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.64,326.23 451.64,325.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.64,325.99 451.15,325.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,325.99 451.15,326.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,326.23 451.64,326.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.7,326.23 451.15,326.23" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.7,321.29 451.15,321.29" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.15,326.23 451.15,344.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.7,326.23 451.7,345.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.15,319.98 451.15,320.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.7,319.98 451.7,321.29" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.15,320.48 437.24,320.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.15,321.04 451.15,321.29" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="437.24,345.26 437.24,354.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="437.24,321.04 437.24,344.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.7,338.96 451.15,338.96 451.15,338.71 451.7,338.71 451.7,338.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.7,333.64 451.15,333.64 451.15,333.4 451.7,333.4 451.7,333.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.42,338.71 451.42,333.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.42,332.67 451.42,327.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.7,327.61 451.15,327.61 451.15,327.36 451.7,327.36 451.7,327.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.7,332.92 451.15,332.92 451.15,332.67 451.7,332.67 451.7,332.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.64,319.73 451.64,319.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.64,319.98 451.15,319.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,319.98 451.15,319.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,319.73 451.64,319.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.64,315.04 451.64,315.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.64,315.28 451.15,315.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,315.28 451.15,315.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,315.04 451.64,315.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.7,315.04 451.7,296.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.15,315.04 451.15,296.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.42,302.56 451.42,307.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.7,307.63 451.15,307.63 451.15,307.88 451.7,307.88 451.7,307.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.7,302.31 451.15,302.31 451.15,302.56 451.7,302.56 451.7,302.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.7,315.04 451.15,315.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.7,313.66 451.15,313.66 451.15,313.91 451.7,313.91 451.7,313.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.42,308.6 451.42,313.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.7,308.35 451.15,308.35 451.15,308.6 451.7,308.6 451.7,308.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,320.23 451.15,319.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.7,319.98 451.15,319.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.1,319.76 446.65,319.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.1,315.31 449.93,315.46 448.84,315.93 447.91,316.66 447.2,317.61 446.78,318.71 446.65,319.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.1,319.62 446.66,319.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.1,319.62 451.1,319.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.1,319.76 451.1,319.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,296.38 437.24,296.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="452.07,295.89 452.32,295.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="452.32,295.89 452.32,296.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="452.32,296.38 452.07,296.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="452.07,296.38 452.07,295.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.47,295.89 461.22,295.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.22,295.89 461.22,296.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.22,296.38 461.47,296.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.47,296.38 461.47,295.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.22,295.89 461.22,291.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.77,295.89 456.93,294.71 457.39,293.62 458.12,292.69 459.07,291.99 460.18,291.56 461.35,291.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.08,295.89 461.08,291.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.08,295.89 461.08,295.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.22,295.89 461.08,295.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="452.32,295.89 452.46,295.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="452.46,295.89 452.46,295.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="452.46,295.89 452.46,291.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="452.19,291.44 453.37,291.56 454.47,291.99 455.42,292.69 456.15,293.62 456.61,294.71 456.77,295.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="452.32,295.89 452.32,291.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="452.07,295.89 452.07,296.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="461.47,295.89 461.47,296.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="452.07,296.38 451.7,296.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="452.07,295.89 451.7,295.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.51,301.07 473.74,301.21 473.09,301.64 472.65,302.29 472.5,303.05 472.65,303.81 473.09,304.46 473.74,304.88 474.51,305.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="472,331.16 472.14,331.93 472.57,332.58 473.21,333.02 473.98,333.17 474.74,333.02 475.39,332.58 475.81,331.93 475.95,331.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475,331.17 479.73,331.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="471.99,360.41 472.18,359.55 472.73,358.86 473.52,358.48 474.4,358.48 475.2,358.86 475.75,359.55 475.94,360.41 475.75,361.27 475.2,361.95 474.4,362.33 473.52,362.33 472.73,361.95 472.18,361.27 471.99,360.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="471.4,389.07 471.6,388.21 472.15,387.52 472.94,387.14 473.82,387.14 474.62,387.52 475.16,388.21 475.36,389.07 475.16,389.93 474.62,390.62 473.82,391 472.94,391 472.15,390.62 471.6,389.93 471.4,389.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475.29,418.28 475.34,417.47 475.06,416.7 474.5,416.11 473.75,415.8 472.93,415.82 472.2,416.16 471.66,416.77 471.41,417.55 471.5,418.36 471.91,419.07 472.57,419.55 473.36,419.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="433.37,389.07 433.56,388.21 434.11,387.52 434.91,387.14 435.79,387.14 436.58,387.52 437.13,388.21 437.32,389.07 437.13,389.93 436.58,390.62 435.79,391 434.91,391 434.11,390.62 433.56,389.93 433.37,389.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="433.37,417.74 433.56,416.89 434.11,416.2 434.91,415.82 435.79,415.82 436.58,416.2 437.13,416.89 437.32,417.74 437.13,418.6 436.58,419.29 435.79,419.67 434.91,419.67 434.11,419.29 433.56,418.6 433.37,417.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="357.85,417.87 358.04,417.01 358.59,416.32 359.39,415.94 360.27,415.94 361.06,416.32 361.61,417.01 361.8,417.87 361.61,418.73 361.06,419.41 360.27,419.8 359.39,419.8 358.59,419.41 358.04,418.73 357.85,417.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="423.18,370.54 423.18,362.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.46,362.09 422.9,362.09 422.9,361.85 423.46,361.85 423.46,362.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.46,370.79 422.9,370.79 422.9,370.54 423.46,370.54 423.46,370.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.4,356.15 423.4,355.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.4,355.9 422.9,355.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="422.9,355.9 422.9,356.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="422.9,356.15 423.4,356.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.4,360.85 423.4,360.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.4,360.6 422.9,360.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="422.9,360.6 422.9,360.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="422.9,360.85 423.4,360.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.46,360.85 422.9,360.85" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="423.46,355.9 422.9,355.9" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="423.4,356.15 427.85,356.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.4,360.6 424.57,360.44 425.66,359.98 426.59,359.25 427.3,358.3 427.72,357.19 427.85,356.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.4,356.29 427.84,356.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.4,356.29 423.4,356.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.4,356.15 423.4,356.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.46,360.85 423.46,373.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="422.9,360.85 422.9,372.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="423.46,354.78 437.24,354.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="410.03,372.98 418.48,372.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.79,373.26 409.79,372.7 410.03,372.7 410.03,373.26 409.79,373.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="418.48,373.26 418.48,372.7 418.74,372.7 418.74,373.26 418.48,373.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.61,372.98 394.06,372.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.36,373.26 385.36,372.7 385.61,372.7 385.61,373.26 385.36,373.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="394.06,373.26 394.06,372.7 394.31,372.7 394.31,373.26 394.06,373.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.32,372.98 381.77,372.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.07,373.26 373.07,372.7 373.32,372.7 373.32,373.26 373.07,373.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="381.77,373.26 381.77,372.7 382.02,372.7 382.02,373.26 381.77,373.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="397.77,372.98 406.22,372.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="397.52,373.26 397.52,372.7 397.77,372.7 397.77,373.26 397.52,373.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.22,373.26 406.22,372.7 406.47,372.7 406.47,373.26 406.22,373.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="357.9,388.37 358.09,389.23 358.64,389.92 359.44,390.3 360.32,390.3 361.11,389.92 361.66,389.23 361.85,388.37" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="358.7,388.37 351.41,388.37" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="358.33,419.16 351.41,419.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="357.99,418.6 351.41,418.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="366.33,387.81 366.58,387.81 366.58,388.31 366.58,388.37 366.33,388.37 366.33,387.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.63,387.81 369.88,387.81 369.88,388.31 369.88,388.37 369.63,388.37 369.63,387.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.9,387.81 363.15,387.81 363.15,388.31 363.15,388.37 362.9,388.37 362.9,387.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.63,388.09 366.58,388.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="366.33,388.09 363.15,388.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="366.26,372.7 422.9,372.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="366.26,373.32 370.7,373.32" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="371.26,377.77 370.7,377.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="370.11,373.32 370.36,373.32" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="370.36,373.32 370.36,372.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.36,372.7 370.11,372.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="370.11,372.7 370.11,373.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="366.26,373.32 366.26,372.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.11,373.01 366.26,373.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.45,373.32 361.45,372.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.45,372.7 361.17,372.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.17,372.7 361.17,373.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="356.26,388.39 354.7,390.71 353.46,393.21 352.58,395.86 352.07,398.61 351.94,401.4 352.19,404.18 352.81,406.9 353.8,409.51 355.13,411.97 356.79,414.22 358.74,416.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="356.59,388.37 355.01,390.66 353.76,393.15 352.86,395.79 352.33,398.53 352.18,401.31 352.42,404.08 353.04,406.8 354.02,409.41 355.36,411.86 357.01,414.1 358.96,416.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="433.37,360.51 433.56,359.65 434.11,358.96 434.91,358.58 435.79,358.58 436.58,358.96 437.13,359.65 437.32,360.51 437.13,361.37 436.58,362.05 435.79,362.44 434.91,362.44 434.11,362.05 433.56,361.37 433.37,360.51" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="434.21,359.34 434.21,361.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="436.32,359.34 436.32,361.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.21,359.34 436.32,359.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.21,361.57 436.32,361.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.98,388.4 330.62,388.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="333.02,374.52 333.02,373.32" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="333.02,387.78 333.02,383.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="333.65,387.87 338.36,387.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="415.3,354.78 415.3,359.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="419.75,354.78 419.6,355.95 419.14,357.04 418.4,357.97 417.45,358.67 416.35,359.1 415.17,359.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.44,354.78 415.44,359.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.44,354.78 415.44,354.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.3,354.78 415.44,354.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="480.6,387.91 480.6,397.64" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.84,170 376.34,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475.57,159.8 475.57,170.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.47,159.8 473.47,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.97,159.8 473.97,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475.08,159.8 475.08,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475.57,157.7 475.57,152.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.47,157.7 473.47,152.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.97,157.7 473.97,152.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475.08,157.7 475.08,152.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.1,170.49 376.34,170.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.97,170 475.08,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="435.43,157.7 435.43,152.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="436.55,157.7 436.55,152.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="437.04,157.7 437.04,152.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="434.94,157.7 434.94,152.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="437.04,159.8 437.04,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="436.55,159.8 436.55,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="435.43,159.8 435.43,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="434.94,159.8 434.94,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="435.43,170 436.55,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="437.04,170 448.13,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.1,167 375.1,170.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.2,157.7 397.2,152.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.31,157.7 398.31,152.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.8,157.7 398.8,152.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="396.7,157.7 396.7,152.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.8,159.8 398.8,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.31,159.8 398.31,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.2,159.8 397.2,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="396.7,159.8 396.7,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="396.7,157.7 396.7,159.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.8,157.7 398.8,159.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.7,159.8 398.8,159.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.7,157.7 398.8,157.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.2,170 398.31,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.8,170 410.5,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="389.29,170.37 392.75,170.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.29,170.12 392.75,170.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.58,170.12 389.04,170.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.58,170.37 389.04,170.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.58,170.49 385.33,170.49 385.33,170 385.58,170 385.58,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.29,170.49 389.04,170.49 389.04,170 389.29,170 389.29,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="392.99,170.12 396.45,170.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="392.99,170.37 396.45,170.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="392.99,170.49 392.75,170.49 392.75,170 392.99,170 392.99,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.7,170.49 396.45,170.49 396.45,170 396.7,170 396.7,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.59,170.49 376.34,170.49 376.34,170 376.59,170 376.59,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="381.28,170 381.04,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="381.04,170 381.04,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="381.04,170.49 381.28,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="381.28,170.49 381.28,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.59,170 376.59,165.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="381.04,170 380.88,168.83 380.42,167.74 379.69,166.81 378.73,166.1 377.63,165.67 376.45,165.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.73,170 376.73,165.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.73,170 376.73,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.59,170 376.73,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="381.28,170 396.7,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="381.28,170.49 410.5,170.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="406.22,170.12 402.76,170.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.22,170.37 402.76,170.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.22,170.49 406.47,170.49 406.47,170 406.22,170 406.22,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="402.51,170.37 399.05,170.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="402.51,170.12 399.05,170.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="402.51,170.49 402.76,170.49 402.76,170 402.51,170 402.51,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.8,170.49 399.05,170.49 399.05,170 398.8,170 398.8,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="410.5,170 410.75,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="410.75,170 410.75,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="410.75,170.49 410.5,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="410.5,170.49 410.5,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.2,170.49 415.45,170.49 415.45,170 415.2,170 415.2,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.2,170 415.2,165.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="410.75,170 410.91,168.83 411.37,167.74 412.1,166.81 413.05,166.1 414.16,165.67 415.33,165.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.06,170 415.06,165.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.06,170 415.06,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.2,170 415.06,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.42,170 417.42,152.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="416.93,170 416.93,152.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="417.42,170 418.91,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="415.45,170 416.93,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="415.45,170.49 418.91,170.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="423.85,170 423.6,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.6,170 423.6,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.6,170.49 423.85,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.85,170.49 423.85,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="419.16,170.49 418.91,170.49 418.91,170 419.16,170 419.16,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="419.16,170 419.16,165.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.6,170 423.45,168.83 422.99,167.74 422.25,166.81 421.3,166.1 420.2,165.67 419.02,165.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="419.29,170 419.29,165.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="419.29,170 419.29,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="419.16,170 419.29,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="427.52,170.37 430.98,170.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="427.52,170.12 430.98,170.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="431.23,170.49 430.98,170.49 430.98,170 431.23,170 431.23,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="427.52,170.49 427.28,170.49 427.28,170 427.52,170 427.52,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.94,170.49 434.69,170.49 434.69,170 434.94,170 434.94,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="431.23,170.12 434.69,170.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="431.23,170.37 434.69,170.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.85,170 434.94,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="423.85,170.49 448.13,170.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="444.46,170.37 441,170.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="444.46,170.12 441,170.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="444.46,170.49 444.7,170.49 444.7,170 444.46,170 444.46,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="440.75,170.12 437.29,170.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="440.75,170.37 437.29,170.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="440.75,170.49 441,170.49 441,170 440.75,170 440.75,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.04,170.49 437.29,170.49 437.29,170 437.04,170 437.04,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.13,170 448.38,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.38,170 448.38,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.38,170.49 448.13,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.13,170.49 448.13,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="452.83,170 452.83,165.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.38,170 448.53,168.83 448.99,167.74 449.73,166.81 450.68,166.1 451.78,165.67 452.96,165.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="452.69,170 452.69,165.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="452.69,170 452.69,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="452.83,170 452.69,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="452.83,170.49 453.07,170.49 453.07,170 452.83,170 452.83,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.44,170 455.44,152.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="454.94,170 454.94,152.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="453.07,170 454.94,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="453.07,170.49 457.3,170.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="455.44,170 457.3,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469.76,170.37 473.22,170.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469.76,170.12 473.22,170.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="473.47,170.49 473.22,170.49 473.22,170 473.47,170 473.47,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.06,170.12 469.52,170.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.06,170.37 469.52,170.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469.76,170.49 469.52,170.49 469.52,170 469.76,170 469.76,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.06,170.49 465.81,170.49 465.81,170 466.06,170 466.06,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.25,170 462,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462,170 462,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462,170.49 462.25,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.25,170.49 462.25,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.55,170.49 457.3,170.49 457.3,170 457.55,170 457.55,170.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.55,170 457.55,165.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462,170 461.84,168.83 461.38,167.74 460.65,166.81 459.7,166.1 458.59,165.67 457.42,165.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.69,170 457.69,165.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.69,170 457.69,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.55,170 457.69,170" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.25,170 473.47,170" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="462.25,170.49 475.57,170.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.06,173.72 495.06,173.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,173.48 494.56,173.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,173.48 494.56,173.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,173.72 495.06,173.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,181.1 494.56,180.86 495.06,180.86 495.06,181.1 494.56,181.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,169.03 499.5,169.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,173.48 496.23,173.32 497.32,172.86 498.25,172.12 498.95,171.17 499.38,170.07 499.5,168.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,169.16 499.5,169.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,169.16 495.06,169.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,169.03 495.06,169.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,169.03 494.56,168.78 495.06,168.78 495.06,169.03 494.56,169.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,177.39 494.56,177.15 495.06,177.15 495.06,177.39 494.56,177.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.68,177.39 494.68,180.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.93,177.39 494.93,180.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,184.81 494.56,184.56 495.06,184.56 495.06,184.81 494.56,184.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.93,181.1 494.93,184.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.68,181.1 494.68,184.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,173.72 494.56,190.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.06,173.72 495.06,187.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="494.56,166.91 494.56,168.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.06,166.91 495.06,168.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="510.26,187.45 495.06,187.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="510.26,187.94 495.06,187.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="510.26,189.67 495.06,189.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="510.26,189.18 495.06,189.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="510.26,217.91 495.06,217.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="510.26,218.4 495.06,218.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="510.26,216.67 495.06,216.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="510.26,216.18 495.06,216.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="511.06,244.87 495.06,244.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="511.06,245.36 495.06,245.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="511.06,247.09 495.63,247.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.07,247.09 494.56,247.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="511.06,246.6 495.06,246.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.06,187.94 495.06,189.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.06,189.67 495.06,190.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.06,218.4 495.06,219.14" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.06,216.67 495.06,217.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.06,245.36 495.06,246.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.06,195.36 495.06,195.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,195.11 494.56,195.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,195.11 494.56,195.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,195.36 495.06,195.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,190.66 494.56,190.42 495.06,190.42 495.06,190.66 494.56,190.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,190.66 499.5,190.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,195.11 496.23,194.95 497.32,194.49 498.25,193.76 498.95,192.81 499.38,191.71 499.5,190.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,190.8 499.5,190.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,190.8 495.06,190.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,190.66 495.06,190.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.93,204.24 494.93,210.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.68,204.24 494.68,210.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.68,198.33 494.68,203.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.93,198.33 494.93,203.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,198.33 494.56,198.08 495.06,198.08 495.06,198.33 494.56,198.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,204.24 494.56,203.99 495.06,203.99 495.06,204.24 494.56,204.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.68,210.27 494.68,215.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.93,210.27 494.93,215.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,210.27 494.56,210.02 495.06,210.02 495.06,210.27 494.56,210.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,216.18 494.56,215.93 495.06,215.93 495.06,216.18 494.56,216.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,195.36 495.06,216.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="494.56,195.36 494.56,219.14" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.06,224.09 495.06,223.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,223.84 494.56,223.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,223.84 494.56,224.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,224.09 495.06,224.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,219.39 499.5,219.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,223.84 496.23,223.68 497.32,223.22 498.25,222.49 498.95,221.54 499.38,220.44 499.5,219.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,219.53 499.5,219.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,219.53 495.06,219.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,219.39 495.06,219.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,227.01 494.56,226.77 495.06,226.77 495.06,227.01 494.56,227.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,219.39 494.56,219.14 495.06,219.14 495.06,219.39 494.56,219.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,244.87 494.56,244.62 495.06,244.62 495.06,244.87 494.56,244.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.93,227.01 494.93,232.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.68,227.01 494.68,232.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.93,232.92 494.93,238.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.68,232.92 494.68,238.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.68,238.96 494.68,244.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.93,238.96 494.93,244.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,238.96 494.56,238.71 495.06,238.71 495.06,238.96 494.56,238.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.56,232.92 494.56,232.68 495.06,232.68 495.06,232.92 494.56,232.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,224.09 495.06,244.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="494.56,224.09 494.56,247.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="437.03,273.18 437.03,275.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.24,273.18 451.7,273.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="437.24,273.68 451.15,273.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.7,295.89 451.7,279.43" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.15,295.89 451.15,279.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.15,295.89 437.24,295.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.52,283.71 451.52,287.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.27,283.71 451.27,287.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.27,287.42 451.27,290.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.52,287.42 451.52,290.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.64,291.13 451.64,290.88 451.15,290.88 451.15,291.13 451.64,291.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.64,287.42 451.64,287.17 451.15,287.17 451.15,287.42 451.64,287.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.64,283.71 451.64,283.47 451.15,283.47 451.15,283.71 451.64,283.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,279.43 451.15,279.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,279.18 451.64,279.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.64,279.18 451.64,279.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.64,279.43 451.15,279.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.64,274.73 451.64,274.49 451.15,274.49 451.15,274.73 451.64,274.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,274.73 446.7,274.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,279.18 449.97,279.02 448.88,278.56 447.95,277.83 447.25,276.88 446.82,275.78 446.7,274.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,274.87 446.71,274.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,274.87 451.15,274.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,274.73 451.15,274.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.15,274.49 451.7,274.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.15,279.43 451.7,279.43" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.15,274.73 451.15,273.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.7,274.49 451.7,273.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="493.7,422.88 492.95,422.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.7,440.68 492.95,440.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.7,440.68 493.7,446.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.95,440.68 492.95,446.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.48,388.44 479.85,388.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.48,387.91 480.6,387.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="492.95,397.64 492.95,422.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.7,398.38 493.7,405.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.7,383.72 493.7,397.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.95,383.72 492.95,397.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.73,374.82 480.47,374.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.47,397.64 480.6,397.64" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.17,373.32 361.45,373.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.18,374.52 297.18,375.58 297.23,375.79 297.34,375.93 297.5,376 297.6,376 297.76,375.93 297.87,375.79 297.92,375.58 297.92,374.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.35,376 298.35,374.52 298.82,374.52 298.98,374.59 299.03,374.66 299.09,374.8 299.09,375.02 299.03,375.16 298.98,375.23 298.82,375.3 298.35,375.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.35,334.73 292.35,359.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.63,415.34 398.96,415.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.63,418.68 396.11,418.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.22,418.68 398.96,418.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.63,415.34 395.63,418.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.96,415.34 398.96,418.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.11,387.9 396.11,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.34,387.9 398.34,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.11,390.13 398.34,390.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.11,387.9 398.34,387.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.5,415.27 390.37,415.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="395.87,415.34 395.87,404.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="396.07,404.47 396.07,415.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.37,389.84 390.37,415.27" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="390.69,416.65 390.69,406.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.5,406.39 390.5,416.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.69,414.42 395.87,414.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.69,414.3 395.87,414.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.69,415.76 395.63,415.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.69,415.63 395.63,415.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.69,413.08 395.87,413.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.69,412.96 395.87,412.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.69,411.74 395.87,411.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.69,411.62 395.87,411.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.69,410.4 395.87,410.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.69,410.28 395.87,410.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.69,409.06 395.87,409.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.69,408.94 395.87,408.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.69,407.73 395.87,407.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.69,407.6 395.87,407.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.69,406.39 395.87,406.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.85,406.27 395.87,406.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="394.38,405.05 395.87,405.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="394.73,404.93 395.87,404.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="393.28,416.6 393.28,405.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="393.28,405.96 392.59,406.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="393.28,405.96 393.97,406.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="396.11,390.13 396.11,415.34" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="396.7,390.13 396.7,415.34" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="390.37,388.49 390.37,424.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="389.79,387.9 389.79,425.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="396.11,387.9 389.79,387.9" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="396.11,388.49 390.37,388.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="389.79,425.49 390.81,425.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="395.68,424.91 398.38,424.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="390.37,424.91 390.81,424.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="395.68,425.49 398.96,425.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.96,418.68 398.96,425.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.38,418.68 398.38,424.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="395.68,425.49 395.68,424.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.81,425.49 390.81,424.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.05,429.87 392.19,429.72 393.24,429.29 394.15,428.59 394.85,427.68 395.28,426.63 395.43,425.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.68,425.49 395.68,424.91 395.43,424.91 395.43,425.49 395.68,425.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.05,425.49 391.05,429.87 391.27,429.87 391.27,425.49 391.05,425.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.81,424.91 390.81,425.49 391.05,425.49 391.05,424.91 390.81,424.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.69,416.65 390.5,416.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="398.38,390.13 398.38,415.34" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.96,387.9 398.96,415.34" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.34,387.9 398.96,387.9" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.34,390.13 398.38,390.13" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="390.37,406.43 392.79,405.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="393.38,405.4 396.11,404.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="395.43,425.49 395.68,425.49 395.68,424.91 395.43,424.91 395.43,425.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="392.79,405.6 393.03,405.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="393.03,405.97 393.16,405" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="393.16,405 393.38,405.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="392.95,415.74 393.05,415.51 393.28,415.42 393.51,415.51 393.61,415.74 393.51,415.98 393.28,416.07 393.05,415.98 392.95,415.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="392.4,417.07 392.4,417.7 392.44,417.82 392.53,417.9 392.65,417.95 392.74,417.95 392.86,417.9 392.94,417.82 392.99,417.7 392.99,417.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="393.32,417.07 393.32,417.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="393.32,417.07 393.7,417.07 393.82,417.11 393.86,417.15 393.9,417.24 393.9,417.36 393.86,417.45 393.82,417.49 393.7,417.53 393.32,417.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="389.79,425.49 389.79,430.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="389.79,430.36 390.37,430.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="390.37,430.36 390.37,425.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="257.47,424.8 258.58,424.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,425.04 257.47,425.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,399.71 259.63,399.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.63,399.71 259.63,398.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.63,398.75 260.4,398.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="260.4,398.75 260.4,397.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="260.4,397.06 259.63,397.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.63,397.06 259.63,396.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.63,396.11 258.58,396.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.12,427.98 291.12,426.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.03,396.11 257.03,399.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.09,413.3 291.69,413.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.73,427.98 291.12,427.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.73,414.34 287.13,414.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.12,426.06 288.13,426.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="266.25,396.97 271.53,396.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266.25,395.61 271.53,395.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266.25,394.25 271.53,394.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.59,397.26 277.83,397.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.53,397.27 271.78,397.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,396.97 277.59,396.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,395.61 277.59,395.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,394.25 277.59,394.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="267.81,397.95 267.81,399.01 267.86,399.22 267.97,399.36 268.13,399.43 268.23,399.43 268.39,399.36 268.5,399.22 268.55,399.01 268.55,397.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.97,399.43 268.97,397.95 269.45,397.95 269.61,398.02 269.66,398.09 269.72,398.23 269.72,398.44 269.66,398.58 269.61,398.66 269.45,398.73 268.97,398.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="273.74,398.06 273.74,399.12 273.79,399.33 273.89,399.48 274.05,399.55 274.16,399.55 274.32,399.48 274.42,399.33 274.48,399.12 274.48,398.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.9,399.55 274.9,398.06 275.38,398.06 275.54,398.13 275.59,398.2 275.64,398.35 275.64,398.56 275.59,398.7 275.54,398.77 275.38,398.84 274.9,398.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.37,427.98 291.37,432.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.12,427.98 291.12,427.24 291.37,427.24 291.37,427.98 291.12,427.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="266.25,396.97 271.53,396.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266.25,396.85 271.53,396.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,396.97 277.59,396.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,396.85 277.59,396.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,395.61 277.59,395.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,394.25 277.59,394.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.53,397.27 271.78,397.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.59,397.26 277.83,397.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266.25,395.49 271.53,395.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,395.49 277.59,395.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266.25,394.13 271.53,394.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,394.13 277.59,394.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.51,396.97 268.59,396.79 268.78,396.71 268.97,396.79 269.04,396.97 268.97,397.16 268.78,397.24 268.59,397.16 268.51,396.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.34,396.97 274.42,396.79 274.61,396.71 274.79,396.79 274.87,396.97 274.79,397.16 274.61,397.24 274.42,397.16 274.34,396.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.48,410.3 297.48,402.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.64,412.08 296.64,410.59 297.01,410.59 297.16,410.66 297.27,410.8 297.32,410.95 297.38,411.16 297.38,411.51 297.32,411.72 297.27,411.86 297.16,412.01 297.01,412.08 296.64,412.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.75,412.08 297.75,410.59 298.49,412.08 298.49,410.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.21,409.82 297.29,409.63 297.48,409.56 297.67,409.63 297.74,409.82 297.67,410.01 297.48,410.08 297.29,410.01 297.21,409.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.87,401.5 297.48,401.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.91,401.53 297.52,401.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.94,401.55 297.56,401.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.98,401.57 297.6,401.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.02,401.59 297.63,401.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.06,401.61 297.67,402" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.1,401.64 297.71,402.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.13,401.66 297.75,402.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.17,401.68 297.79,402.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.21,401.7 297.83,402.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.25,401.72 297.86,402.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.29,401.75 297.9,402.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.33,401.77 297.94,402.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.36,401.79 297.98,402.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.4,401.81 298.02,402.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.44,401.83 298.05,402.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.48,401.86 298.09,402.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.52,401.88 298.13,402.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.55,401.9 298.17,402.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.83,401.48 297.35,401.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.79,401.46 297.21,402.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.75,401.44 297.06,402.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.72,401.42 296.92,402.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.68,401.39 296.78,402.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.64,401.37 296.64,402.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.6,401.35 296.49,402.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.56,401.33 296.35,402.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.52,401.31 296.26,402.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.49,401.28 296.26,402.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.36,401.35 296.26,402.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.22,401.43 296.26,402.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.08,401.51 296.26,402.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.94,401.59 296.26,402.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.79,401.68 296.26,402.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.65,401.76 296.26,402.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.51,401.84 296.26,402.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.37,401.92 296.26,402.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.02,401.98 297.6,401.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.48,402.03 296.02,402.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.48,401.89 296.26,402.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.26,402.59 296.26,401.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.14,402.94 296.14,401.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.26,401.98 297.48,401.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="286.61,439.5 290.94,439.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.61,439.5 286.61,443.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="290.94,439.5 290.94,443.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.61,443.37 290.94,443.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.51,445.52 295.85,445.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.51,445.52 292.51,449.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.85,445.52 295.85,449.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.51,449.85 295.85,449.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.62,414.17 259.84,414.28 260.06,413.84 259.84,413.73 259.62,414.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.53,418.35 266.65,422.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.2,418.46 268.42,418.02 268.64,418.13 268.42,418.57 268.2,418.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,426.93 283.85,430.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.62,427.15 285.84,426.71 286.06,426.82 285.84,427.26 285.62,427.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.95,427.04 287.08,427.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.97,427.83 287.19,427.39 287.41,427.5 287.19,427.94 286.97,427.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.84,427.26 286.97,427.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.06,426.82 287.19,427.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.76,422.96 275.89,426.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.43,423.07 277.65,422.63 277.88,422.74 277.65,423.18 277.43,423.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.71,422.43 277.54,422.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.38,422.54 276.6,422.1 276.82,422.21 276.6,422.65 276.38,422.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.49,422.32 274.61,426.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.82,422.21 277.65,422.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.6,422.65 277.43,423.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.41,427.5 286.06,426.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.65,422.63 276.82,422.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.42,418.02 260.06,413.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.08,427.61 285.95,427.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.54,422.85 276.71,422.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.31,418.24 264.24,416.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="264.02,416.09 259.95,414.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.19,427.94 285.84,427.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.43,423.07 276.6,422.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.35,436.24 282.48,436.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.13,436.69 282.26,437.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="271.89,432.08 272.72,432.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.11,431.64 272.94,432.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="271.78,431.75 269.91,435.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="271.67,431.97 271.89,431.53 272.11,431.64 271.89,432.08 271.67,431.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272,431.86 272.83,432.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.06,432.38 271.18,436.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.02,436.36 279.15,440.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.26,437.25 282.48,436.81 282.71,436.92 282.49,437.36 282.26,437.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.24,436.47 282.37,437.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.91,436.58 281.13,436.13 281.35,436.24 281.13,436.69 280.91,436.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.08,428.16 285.35,431.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.79,431.85 287.52,428.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.27,436.92 285.68,432.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.04,436.81 285.46,431.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.52,428.38 287.63,428.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.63,428.16 287.19,427.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.19,427.94 287.08,428.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.52,428.38 287.08,428.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.3,428.27 285.57,431.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.68,432.07 285.24,431.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.79,431.85 285.35,431.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.68,432.07 285.79,431.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.16,437.14 283.27,436.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.27,436.92 282.82,436.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.82,436.7 282.71,436.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.16,437.14 282.71,436.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.63,428.16 287.52,428.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.79,431.85 285.68,432.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.27,436.92 283.16,437.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.16,437.14 282.71,436.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.71,436.92 282.82,436.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.35,431.63 287.08,428.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.08,428.16 287.19,427.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.63,428.16 287.73,427.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.19,427.94 287.63,428.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.19,427.94 288.13,426.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.47,419.48 258.58,419.48 258.58,419.73 257.47,419.73 257.47,419.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,424.8 258.58,425.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,425.04 257.84,425.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,425.04 258.58,419.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.99,419.73 257.99,424.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,425.04 257.47,419.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,414.4 257.47,419.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.99,419.48 257.99,414.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,414.4 258.58,419.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,414.4 258.58,414.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,414.15 257.84,414.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,414.15 257.47,414.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,414.4 258.58,414.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="266,397.26 266.25,397.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266,397.26 266.25,397.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.59,398.25 277.83,398.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.59,398.25 277.83,398.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266,398.25 266.25,398.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266,398.25 266.25,398.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="258.58,414.15 259.63,414.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.63,414.15 259.63,413.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.63,413.19 260.4,413.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="260.4,413.19 260.4,411.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="260.4,411.51 259.63,411.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.63,411.51 259.63,410.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.63,410.55 258.58,410.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.03,410.55 257.03,414.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.03,414.15 258.58,414.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.58,414.15 257.47,414.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.25,413.3 290.25,411.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.09,413.3 288.09,411.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.09,413.3 290.25,413.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.09,411.48 290.25,411.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.82,436.7 285.24,431.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.35,431.63 285.24,431.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.49,437.36 282.71,436.92 283.16,437.14 282.94,437.59 282.49,437.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,425.04 257.47,424.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="262.88,425.77 259.63,425.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.63,425.77 259.63,425" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.63,425 258.58,425" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.03,425.09 258.58,425.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.03,425.09 257.03,428.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.03,428.43 261.33,428.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="262.88,425.77 261.33,428.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="262.06,427.18 263.49,427.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="262.31,426.75 263.71,427.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="262.13,427.21 262.35,426.77 262.57,426.88 262.35,427.33 262.13,427.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="262.46,427.1 263.6,427.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="263.49,427.89 263.71,427.45 263.93,427.56 263.71,428 263.49,427.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="263.82,427.78 261.94,431.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.25,398.75 290.25,397.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.09,398.75 288.09,397.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.09,398.75 290.25,398.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.09,397.39 290.25,397.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.2,418.46 259.84,414.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,425 258.58,425.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.05,419.73 258.05,424.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.05,419.48 258.05,414.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,410.3 258.58,410.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,404.99 258.58,404.99 258.58,405.24 257.47,405.24 257.47,404.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,410.3 258.58,410.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,410.55 258.58,405.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.99,405.24 257.99,410.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,410.55 257.47,405.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,399.91 257.47,404.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.99,404.99 257.99,399.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,399.91 258.58,405.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,399.91 258.58,399.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,399.66 257.84,399.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,399.66 257.47,399.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,399.91 258.58,399.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.03,399.66 258.58,399.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.58,399.66 257.47,399.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,410.55 257.47,410.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.03,410.55 258.58,410.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.05,405.24 258.05,410.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.05,404.99 258.05,399.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,410.55 258.58,410.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,395.86 258.58,395.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,395.86 258.58,396.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,396.11 257.47,395.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.03,396.11 258.58,396.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.47,396.11 258.58,396.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="263.91,416.32 264.13,415.87 264.35,415.98 264.13,416.43 263.91,416.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.16,399.02 293.16,411.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.91,399.02 292.91,411.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.91,410.6 293.16,410.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.91,410.6 293.16,410.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.91,411.59 293.16,411.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.91,411.59 293.16,411.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.91,399.02 293.16,399.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.91,399.02 293.16,399.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.91,400.01 293.16,400.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.91,400.01 293.16,400.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="258.58,385.26 259.63,385.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.03,381.91 257.25,381.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.98,385.23 284.9,385.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="280.04,385.23 278.7,385.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,384.49 284.9,385.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="280.04,384.37 280.04,385.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.96,393.95 280.04,393.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.73,414.34 292.73,391.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.13,414.34 287.13,393.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.09,413.19 288.09,392.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.69,413.3 291.69,392.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.96,392.08 277.96,384.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="278.7,391.34 278.7,385.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="278.7,393.21 280.04,393.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,393.95 287.91,393.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,393.21 285.98,393.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,393.95 284.9,393.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="280.04,393.95 280.04,393.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.98,391.34 285.98,385.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.09,392.1 291.69,392.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.09,413.3 291.69,413.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.63,384.49 259.63,385.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="280.04,384.37 279.69,384.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="280.04,385.23 278.7,385.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.96,393.95 280.04,393.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="278.7,393.21 280.04,393.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.96,393.95 277.96,384.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="278.7,393.21 278.7,385.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,384.37 284.9,385.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="280.04,384.37 280.04,385.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.98,385.23 284.9,385.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,393.21 285.98,393.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,393.95 284.9,393.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="280.04,393.95 280.04,393.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.98,393.21 285.98,385.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,382.46 287.03,384.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,384.37 284.9,384.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.73,414.34 287.13,414.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="266.25,396.97 271.53,396.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266.25,390.94 266.25,398.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266.25,395.61 271.53,395.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266.25,394.25 271.53,394.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266.25,392.89 271.53,392.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266.25,391.54 271.53,391.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,390.18 277.59,390.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,388.82 277.59,388.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.59,397.26 277.83,397.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266,391.07 266,398.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.83,384.74 277.83,398.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.53,397.27 271.78,397.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,387.89 271.78,397.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.53,388.03 271.53,397.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,396.97 277.59,396.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,395.61 277.59,395.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,394.25 277.59,394.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,392.89 277.59,392.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,391.54 277.59,391.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.78,397.43 268.78,391.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.61,397.45 274.61,391.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.83,384.74 277.96,384.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="267.63,390.18 271.53,390.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="270.1,388.82 271.53,388.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="272.57,387.46 277.59,387.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.04,386.1 277.59,386.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="267.81,397.95 267.81,399.01 267.86,399.22 267.97,399.36 268.13,399.43 268.23,399.43 268.39,399.36 268.5,399.22 268.55,399.01 268.55,397.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.97,399.43 268.97,397.95 269.45,397.95 269.61,398.02 269.66,398.09 269.72,398.23 269.72,398.44 269.66,398.58 269.61,398.66 269.45,398.73 268.97,398.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="273.74,398.06 273.74,399.12 273.79,399.33 273.89,399.48 274.05,399.55 274.16,399.55 274.32,399.48 274.42,399.33 274.48,399.12 274.48,398.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.9,399.55 274.9,398.06 275.38,398.06 275.54,398.13 275.59,398.2 275.64,398.35 275.64,398.56 275.59,398.7 275.54,398.77 275.38,398.84 274.9,398.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.73,400.69 292.91,400.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.16,400.69 302.09,400.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.34,400.69 302.52,400.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.73,409.82 292.91,409.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.16,409.82 302.09,409.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.34,409.82 302.52,409.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.59,384.7 277.59,398.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.83,384.74 277.83,398.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,387.89 271.78,397.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.53,388.03 271.53,397.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266.25,390.94 266.25,398.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266,391.07 266,398.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266.25,396.97 271.53,396.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266.25,396.85 271.53,396.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,390.18 277.59,390.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,396.97 277.59,396.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,396.85 277.59,396.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,395.61 277.59,395.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,394.25 277.59,394.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,392.89 277.59,392.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,391.54 277.59,391.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.53,397.27 271.78,397.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.59,397.26 277.83,397.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,388.82 277.59,388.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="272.57,387.46 277.59,387.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.04,386.1 277.59,386.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.51,384.74 277.59,384.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.83,384.74 277.96,384.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.94,385.48 285.73,385.48 285.73,392.97 278.94,392.97 278.94,385.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="278.94,392.97 285.73,385.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="278.94,385.48 285.73,392.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.1,382.74 283.18,382.65 284.9,384.37 284.82,384.46 283.1,382.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.1,382.74 283.01,382.65 281.29,384.37 281.38,384.46 283.1,382.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.1,395.59 283.18,395.67 284.9,393.95 284.82,393.87 283.1,395.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.1,395.59 283.01,395.67 281.29,393.95 281.38,393.87 283.1,395.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="266.25,395.49 271.53,395.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,395.49 277.59,395.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266.25,394.13 271.53,394.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,394.13 277.59,394.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266.25,392.77 271.53,392.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,392.77 277.59,392.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266.25,391.41 271.53,391.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,391.41 277.59,391.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="267.85,390.05 271.53,390.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,390.05 277.59,390.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="270.32,388.69 271.53,388.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.78,388.69 277.59,388.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="272.79,387.33 277.59,387.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.26,385.98 277.59,385.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.51,396.97 268.59,396.79 268.78,396.71 268.97,396.79 269.04,396.97 268.97,397.16 268.78,397.24 268.59,397.16 268.51,396.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.34,396.97 274.42,396.79 274.61,396.71 274.79,396.79 274.87,396.97 274.79,397.16 274.61,397.24 274.42,397.16 274.34,396.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.78,390.72 269.99,391.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.99,392.04 268.78,391.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="270.24,392.32 268.78,391.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.66,390.51 270.24,391.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.17,390.95 268.78,391.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.21,390.97 268.82,391.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.24,390.99 268.86,391.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.28,391.02 268.9,391.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.32,391.04 268.93,391.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.36,391.06 268.97,391.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.4,391.08 269.01,391.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.43,391.1 269.05,391.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.47,391.13 269.09,391.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.51,391.15 269.13,391.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.55,391.17 269.16,391.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.59,391.19 269.2,391.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.63,391.21 269.24,391.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.66,391.24 269.28,391.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.7,391.26 269.32,391.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.74,391.28 269.35,391.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.78,391.3 269.39,391.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.82,391.32 269.43,391.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.85,391.35 269.47,391.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.89,391.37 269.51,391.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.93,391.39 269.55,391.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.97,391.41 269.58,391.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.99,391.45 269.62,391.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.99,391.51 269.66,391.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.99,391.57 269.7,391.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.99,391.63 269.74,391.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.99,391.69 269.77,391.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.99,391.75 269.81,391.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.99,391.81 269.85,391.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.99,391.87 269.89,391.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.99,391.93 269.93,392" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.99,391.99 269.97,392.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.13,390.93 268.65,391.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.09,390.91 268.51,391.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.05,390.88 268.36,391.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.01,390.86 268.22,391.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.98,390.84 268.08,391.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.94,390.82 267.94,391.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.9,390.8 267.79,391.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.86,390.77 267.65,391.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.82,390.75 267.56,392.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.79,390.73 267.56,391.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.66,390.79 267.56,391.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.52,390.87 267.56,391.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.38,390.96 267.56,391.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.24,391.04 267.56,391.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.09,391.12 267.56,391.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="267.95,391.2 267.56,391.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="267.81,391.29 267.56,391.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="267.67,391.37 267.56,391.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="267.32,391.43 268.9,390.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.78,391.47 267.32,392.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.78,391.33 267.56,392.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="267.56,392.04 267.56,391.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="267.44,392.39 267.44,391.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="267.56,391.43 268.78,390.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.99,391.43 269.99,392.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="270.12,391.22 270.12,392.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.61,390.72 275.82,391.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.82,392.04 274.61,391.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.07,392.32 274.61,391.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.48,390.51 276.07,391.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.99,390.95 274.61,391.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.03,390.97 274.65,391.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.07,390.99 274.68,391.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.11,391.02 274.72,391.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.15,391.04 274.76,391.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.19,391.06 274.8,391.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.22,391.08 274.84,391.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.26,391.1 274.88,391.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.3,391.13 274.91,391.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.34,391.15 274.95,391.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.38,391.17 274.99,391.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.41,391.19 275.03,391.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.45,391.21 275.07,391.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.49,391.24 275.1,391.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.53,391.26 275.14,391.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.57,391.28 275.18,391.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.61,391.3 275.22,391.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.64,391.32 275.26,391.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.68,391.35 275.3,391.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.72,391.37 275.33,391.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.76,391.39 275.37,391.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.8,391.41 275.41,391.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.82,391.45 275.45,391.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.82,391.51 275.49,391.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.82,391.57 275.52,391.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.82,391.63 275.56,391.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.82,391.69 275.6,391.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.82,391.75 275.64,391.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.82,391.81 275.68,391.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.82,391.87 275.72,391.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.82,391.93 275.75,392" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.82,391.99 275.79,392.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.96,390.93 274.48,391.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.92,390.91 274.33,391.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.88,390.88 274.19,391.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.84,390.86 274.05,391.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.8,390.84 273.91,391.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.77,390.82 273.76,391.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.73,390.8 273.62,391.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.69,390.77 273.48,391.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.65,390.75 273.39,392.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.61,390.73 273.39,391.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.49,390.79 273.39,391.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.35,390.87 273.39,391.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.2,390.96 273.39,391.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.06,391.04 273.39,391.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="273.92,391.12 273.39,391.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="273.78,391.2 273.39,391.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="273.63,391.29 273.39,391.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="273.49,391.37 273.39,391.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="273.15,391.43 274.73,390.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.61,391.47 273.15,392.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.61,391.33 273.39,392.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="273.39,392.04 273.39,391.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="273.27,392.39 273.27,391.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="273.39,391.43 274.61,390.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.82,391.43 275.82,392.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.94,391.22 275.94,392.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.48,410.3 297.48,402.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.64,412.08 296.64,410.59 297.01,410.59 297.16,410.66 297.27,410.8 297.32,410.95 297.38,411.16 297.38,411.51 297.32,411.72 297.27,411.86 297.16,412.01 297.01,412.08 296.64,412.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.75,412.08 297.75,410.59 298.49,412.08 298.49,410.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.21,409.82 297.29,409.63 297.48,409.56 297.67,409.63 297.74,409.82 297.67,410.01 297.48,410.08 297.29,410.01 297.21,409.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.48,401.28 298.7,401.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.7,402.59 297.48,401.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.94,402.87 297.48,402.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.36,401.07 298.94,401.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.87,401.5 297.48,401.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.91,401.53 297.52,401.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.94,401.55 297.56,401.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.98,401.57 297.6,401.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.02,401.59 297.63,401.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.06,401.61 297.67,402" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.1,401.64 297.71,402.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.13,401.66 297.75,402.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.17,401.68 297.79,402.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.21,401.7 297.83,402.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.25,401.72 297.86,402.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.29,401.75 297.9,402.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.33,401.77 297.94,402.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.36,401.79 297.98,402.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.4,401.81 298.02,402.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.44,401.83 298.05,402.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.48,401.86 298.09,402.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.52,401.88 298.13,402.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.55,401.9 298.17,402.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.59,401.92 298.21,402.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.63,401.94 298.25,402.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.67,401.97 298.28,402.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.7,402 298.32,402.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.7,402.06 298.36,402.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.7,402.12 298.4,402.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.7,402.18 298.44,402.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.7,402.24 298.47,402.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.7,402.3 298.51,402.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.7,402.36 298.55,402.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.7,402.42 298.59,402.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.7,402.48 298.63,402.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.7,402.54 298.67,402.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.83,401.48 297.35,401.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.79,401.46 297.21,402.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.75,401.44 297.06,402.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.72,401.42 296.92,402.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.68,401.39 296.78,402.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.64,401.37 296.64,402.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.6,401.35 296.49,402.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.56,401.33 296.35,402.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.52,401.31 296.26,402.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.49,401.28 296.26,402.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.36,401.35 296.26,402.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.22,401.43 296.26,402.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.08,401.51 296.26,402.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.94,401.59 296.26,402.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.79,401.68 296.26,402.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.65,401.76 296.26,402.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.51,401.84 296.26,402.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.37,401.92 296.26,402.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.02,401.98 297.6,401.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.48,402.03 296.02,402.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.48,401.89 296.26,402.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.26,402.59 296.26,401.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.14,402.94 296.14,401.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.26,401.98 297.48,401.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.7,401.98 298.7,402.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.82,401.77 298.82,402.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266,397.26 266.25,397.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266,397.26 266.25,397.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.59,398.25 277.83,398.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.59,398.25 277.83,398.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266,398.25 266.25,398.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="266,398.25 266.25,398.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.91,393.95 287.91,391.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="290.25,413.3 290.25,411.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.09,413.3 288.09,411.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.09,413.3 290.25,413.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.09,411.48 290.25,411.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="290.25,398.75 290.25,397.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.09,398.75 288.09,397.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.09,398.75 290.25,398.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.09,397.39 290.25,397.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.47,390.54 258.58,390.54 258.58,390.79 257.47,390.79 257.47,390.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,396.11 258.58,390.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.99,390.79 257.99,395.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,396.11 257.47,390.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,385.46 257.47,390.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.99,390.54 257.99,385.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,385.46 258.58,390.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,385.46 258.58,385.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,385.21 257.84,385.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,385.21 257.47,385.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,385.46 258.58,385.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.03,385.21 258.58,385.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.58,385.21 257.47,385.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.05,390.79 258.05,395.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.05,390.54 258.05,385.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.03,381.91 257.03,385.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="293.16,399.02 293.16,411.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.91,399.02 292.91,411.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.91,410.6 293.16,410.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.91,410.6 293.16,410.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.91,411.59 293.16,411.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.91,411.59 293.16,411.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.91,399.02 293.16,399.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.91,399.02 293.16,399.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.91,400.01 293.16,400.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.91,400.01 293.16,400.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.09,399.02 302.09,411.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.34,399.02 302.34,411.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.34,410.6 302.09,410.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.34,410.6 302.09,410.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.34,411.59 302.09,411.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.34,411.59 302.09,411.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.34,399.02 302.09,399.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.34,399.02 302.09,399.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.34,400.01 302.09,400.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.34,400.01 302.09,400.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.91,391.05 292.73,391.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.39,426.06 302.52,426.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.39,427.24 300.39,426.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.51,427.98 300.51,428.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.45,427.24 300.21,427.24 300.21,427.98 300.45,427.98 300.45,427.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.21,432.4 300.21,427.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.21,427.48 300.21,427.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.21,427.24 300.45,427.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.95,439.5 303.2,439.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.95,443.37 303.2,443.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.95,439.5 300.95,443.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.2,439.5 303.2,443.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.51,427.98 300.45,427.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.51,428.53 300.95,428.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.52,389.32 292.52,382.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.52,382.46 287.03,382.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.24,389.32 302.57,389.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.35,361.45 292.35,371.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.61,361.45 291.61,370.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.4,450.62 318.4,446.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.32,449.91 311.32,448.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="307.99,449.91 307.99,448.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.95,449.91 318.4,449.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="307.99,448.15 311.32,448.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.95,449.91 300.95,443.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.95,428.53 300.95,439.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.96,384.49 266,391.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="339.2,449.53 339.2,448.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.54,448.79 348.03,448.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.54,448.79 348.03,448.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.54,449.53 347.54,448.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.28,449.53 330.28,448.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.64,448.79 339.2,448.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.64,448.79 339.2,448.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.64,449.53 338.64,448.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.37,449.53 321.37,448.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.73,449.53 329.73,448.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.73,448.79 330.28,448.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.73,448.79 330.28,448.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.54,448.79 347.54,450.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.03,448.79 348.03,450.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.2,448.79 339.2,450.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.64,448.79 338.64,450.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.73,448.79 329.73,450.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.28,448.79 330.28,450.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.4,450.62 318.4,449.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.37,450.62 321.37,449.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.73,449.71 321.37,449.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.64,449.71 330.28,449.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.54,449.71 339.2,449.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.64,450.49 339.2,450.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.54,450.49 348.03,450.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.73,450.49 330.28,450.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.37,446.98 321.37,448.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.73,448.79 330.28,448.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.64,448.79 339.2,448.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.54,449.71 339.2,449.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.2,450.49 338.64,450.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.28,450.49 329.73,450.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.54,449.71 321.37,449.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.37,450.31 321.37,450.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.37,450.64 320.81,450.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.81,450.64 320.81,450.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.81,450.13 318.96,450.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.96,450.13 318.96,450.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.96,450.62 318.4,450.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.4,449.91 317.91,449.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.2,448.79 339.44,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.44,448.79 339.44,449.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.44,449.53 339.2,449.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.2,449.53 339.2,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.29,448.79 347.54,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.54,448.79 347.54,449.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.54,449.53 347.29,449.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.29,449.53 347.29,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.44,449.04 347.29,449.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.44,449.28 347.29,449.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.54,448.79 339.2,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.54,449.53 339.2,449.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.28,448.79 330.53,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.53,448.79 330.53,449.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.53,449.53 330.28,449.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.28,449.53 330.28,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.39,448.79 338.64,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.64,448.79 338.64,449.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.64,449.53 338.39,449.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.39,449.53 338.39,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.53,449.04 338.39,449.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.53,449.28 338.39,449.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.64,448.79 330.28,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.64,449.53 330.28,449.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.73,448.79 321.37,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.73,449.53 321.37,449.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.73,448.79 329.48,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.48,448.79 329.48,449.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.73,449.53 329.73,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.48,449.53 329.73,449.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.37,448.79 321.37,449.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.58,448.79 324.34,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.62,448.79 321.37,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.62,449.53 321.62,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.37,449.53 321.62,449.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.58,449.53 324.58,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.34,449.53 324.58,449.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.34,448.79 324.34,449.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.34,449.28 321.62,449.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.34,449.04 321.62,449.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.48,449.28 324.58,449.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.48,449.04 324.58,449.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.62,448.79 324.3,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.2,448.79 347.54,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.86,448.79 329.73,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.28,448.79 338.64,448.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.54,448.79 347.54,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="260.31,355.13 260.31,354.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.58,385.26 259.63,385.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.03,381.91 257.25,381.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.88,370.09 259.88,382.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.63,384.49 259.63,385.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.88,355.41 259.88,368.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="260.31,353.8 259.57,353.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="260.31,355.41 260.31,353.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="260.31,355.41 259.57,355.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="260.31,368.48 259.57,368.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="260.31,370.09 259.57,370.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.57,370.9 257.25,370.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.57,367.56 257.25,367.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="260.31,370.09 260.31,368.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.75,381.91 257.25,381.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.58,385.46 258.58,385.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="258.58,385.21 257.84,385.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,385.21 257.47,385.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.47,385.46 258.58,385.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.03,385.21 258.58,385.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="258.58,385.21 257.47,385.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="257.03,370.9 257.03,367.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.03,381.91 257.03,385.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.25,370.9 257.25,381.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.03,370.9 257.25,370.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.25,350.86 257.25,353.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.03,353.21 257.25,353.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.03,367.56 257.25,367.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.25,356.55 257.25,367.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.03,356.55 257.03,353.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="257.03,356.55 257.25,356.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.57,356.55 257.25,356.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="238.86,350.86 257.25,350.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.88,322.37 259.88,353.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.32,333.46 303.78,333.46" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="292.73,401.99 292.91,401.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.16,401.99 302.09,401.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.34,401.99 302.52,401.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.73,403.3 292.91,403.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.16,403.3 302.09,403.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.34,403.3 302.52,403.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.73,404.6 292.91,404.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.16,404.6 302.09,404.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.34,404.6 302.52,404.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.73,405.91 292.91,405.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.16,405.91 302.09,405.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.34,405.91 302.52,405.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.73,407.21 292.91,407.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.16,407.21 302.09,407.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.34,407.21 302.52,407.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.73,408.52 292.91,408.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.16,408.52 302.09,408.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.34,408.52 302.52,408.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.47,315.69 284.47,316.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.21,321.19 285.21,321.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.47,321.19 284.47,321.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.41,316.49 292.4,316.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.41,316.24 291.41,316.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.4,316.24 291.41,316.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.4,316.49 292.4,316.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.38,321.19 285.31,321.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.38,320.94 284.38,321.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.31,320.94 284.38,320.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.31,321.19 285.31,320.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.38,316.49 285.31,316.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.38,316.24 284.38,316.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.31,316.24 284.38,316.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.31,316.49 285.31,316.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.21,315.69 285.21,316.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.17,299.35 281.17,314.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.17,299.35 281.42,299.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.72,280.85 288.03,280.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.55,271.53 288.55,276.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.02,281.03 282.78,281.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.78,281.03 282.78,281.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.78,281.52 283.02,281.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.02,281.52 283.02,281.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.78,280.85 282.78,281.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.85,269.31 259.85,280.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.07,217.09 320.07,244.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="292.99,377.31 292,377.31 292,377.5 292.8,377.5 292.8,383.25 292.99,383.25 292.99,377.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.12,377.31 302.31,377.31 302.31,383.25 302.12,383.25 302.12,377.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="333.65,373.32 361.17,373.32" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="259.85,321.62 259.85,280.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="262.38,281.67 259.85,281.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,227.12 318.87,227.12 318.87,226.87 318.12,226.87 318.12,227.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.87,226.01 318.87,226.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,226.01 318.87,226.01 318.87,225.76 318.12,225.76 318.12,226.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.42,217.09 318.5,217.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.42,217.43 319.42,217.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.42,217.09 321,217.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="334.22,217.09 321.65,217.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="334.22,216.35 321.65,216.35" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="281.39,283 277.5,283" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="277.5,298.57 277.5,283" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="259.85,274.5 288.55,274.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="260.82,273.02 260.92,273.41 260.92,273.41 261.2,273.75 261.2,273.75 261.6,273.98 261.6,273.98 262.1,274.06 262.1,274.06 262.6,273.98 262.6,273.98 263,273.75 263,273.75 263.29,273.41 263.29,273.41 263.38,273.02 263.38,273.02 263.29,272.63 263.29,272.63 263,272.29 263,272.29 262.6,272.06 262.6,272.06 262.1,271.98 262.1,271.98 261.6,272.06 261.6,272.06 261.2,272.29 261.2,272.29 260.92,272.63 260.92,272.63 260.82,273.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="264.48,273.02 264.57,273.41 264.57,273.41 264.85,273.75 264.85,273.75 265.25,273.98 265.25,273.98 265.75,274.06 265.75,274.06 266.25,273.98 266.25,273.98 266.66,273.75 266.66,273.75 266.94,273.41 266.94,273.41 267.03,273.02 267.03,273.02 266.94,272.63 266.94,272.63 266.66,272.29 266.66,272.29 266.25,272.06 266.25,272.06 265.75,271.98 265.75,271.98 265.25,272.06 265.25,272.06 264.85,272.29 264.85,272.29 264.57,272.63 264.57,272.63 264.48,273.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="268.11,273.02 268.21,273.41 268.21,273.41 268.49,273.75 268.49,273.75 268.89,273.98 268.89,273.98 269.39,274.06 269.39,274.06 269.89,273.98 269.89,273.98 270.29,273.75 270.29,273.75 270.58,273.41 270.58,273.41 270.67,273.02 270.67,273.02 270.58,272.63 270.58,272.63 270.29,272.29 270.29,272.29 269.89,272.06 269.89,272.06 269.39,271.98 269.39,271.98 268.89,272.06 268.89,272.06 268.49,272.29 268.49,272.29 268.21,272.63 268.21,272.63 268.11,273.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.75,273.02 271.84,273.41 271.84,273.41 272.12,273.75 272.12,273.75 272.53,273.98 272.53,273.98 273.03,274.06 273.03,274.06 273.53,273.98 273.53,273.98 273.93,273.75 273.93,273.75 274.21,273.41 274.21,273.41 274.3,273.02 274.3,273.02 274.21,272.63 274.21,272.63 273.93,272.29 273.93,272.29 273.53,272.06 273.53,272.06 273.03,271.98 273.03,271.98 272.53,272.06 272.53,272.06 272.12,272.29 272.12,272.29 271.84,272.63 271.84,272.63 271.75,273.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="275.37,273.02 275.46,273.41 275.46,273.41 275.74,273.75 275.74,273.75 276.15,273.98 276.15,273.98 276.65,274.06 276.65,274.06 277.15,273.98 277.15,273.98 277.55,273.75 277.55,273.75 277.83,273.41 277.83,273.41 277.92,273.02 277.92,273.02 277.83,272.63 277.83,272.63 277.55,272.29 277.55,272.29 277.15,272.06 277.15,272.06 276.65,271.98 276.65,271.98 276.15,272.06 276.15,272.06 275.74,272.29 275.74,272.29 275.46,272.63 275.46,272.63 275.37,273.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="289.39,274.35 292.26,274.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.26,274.35 292.26,276.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.39,269.65 289.76,269.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.76,269.65 289.76,248.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.42,214.59 316.95,214.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,214.59 318.87,214.59 318.87,214.34 318.12,214.34 318.12,214.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.12,208.11 318.87,208.11 318.87,207.86 318.12,207.86 318.12,208.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.87,207 318.87,207.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,207 318.87,207 318.87,206.75 318.12,206.75 318.12,207" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.12,199.15 318.87,199.15 318.87,198.9 318.12,198.9 318.12,199.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.87,198.03 318.87,198.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,198.03 318.87,198.03 318.87,197.79 318.12,197.79 318.12,198.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="320.07,188.4 320.07,214.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.07,159.76 320.07,186.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.12,188.79 318.87,188.79 318.87,188.55 318.12,188.55 318.12,188.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.12,177.91 318.87,177.91 318.87,177.66 318.12,177.66 318.12,177.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.87,176.79 318.87,177.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,176.79 318.87,176.79 318.87,176.55 318.12,176.55 318.12,176.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.12,169.07 318.87,169.07 318.87,168.82 318.12,168.82 318.12,169.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.87,167.96 318.87,168.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,167.96 318.87,167.96 318.87,167.71 318.12,167.71 318.12,167.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.9,150.93 329.9,151.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.5,151.61 329.5,152.35 329.74,152.35 329.74,151.61 329.5,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.9,150.93 330.45,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.45,151.61 330.45,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.61,152.35 329.74,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.61,151.61 330.61,152.35 330.85,152.35 330.85,151.61 330.61,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="356.44,152.35 356.44,153.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.44,153.56 359.25,153.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.9,151.61 329.74,151.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.74,151.61 329.74,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.45,151.61 330.61,151.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.61,151.61 330.61,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.58,150.93 338.58,151.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.18,151.61 338.18,152.35 338.43,152.35 338.43,151.61 338.18,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.58,150.93 339.14,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.14,151.61 339.14,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.29,152.35 338.43,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.29,151.61 339.29,152.35 339.54,152.35 339.54,151.61 339.29,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.58,151.61 338.43,151.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.43,151.61 338.43,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.14,151.61 339.29,151.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.29,151.61 339.29,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.54,152.1 346.86,152.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.54,151.86 346.86,151.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.14,151.12 347.26,151.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.11,152.35 339.29,152.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.11,151.61 339.29,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.14,151.61 339.14,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.29,151.61 339.29,152.35 339.54,152.35 339.54,151.61 339.29,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.14,151.61 339.29,151.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.29,151.61 339.29,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.26,150.93 347.26,151.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.86,151.61 346.86,152.35 347.11,152.35 347.11,151.61 346.86,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.26,150.93 347.82,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.82,151.61 347.82,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.97,152.35 347.11,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.97,151.61 347.97,152.35 348.22,152.35 348.22,151.61 347.97,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.26,151.61 347.11,151.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.11,151.61 347.11,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.82,151.61 347.97,151.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.97,151.61 347.97,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.82,151.61 347.82,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.97,151.61 347.97,152.35 348.22,152.35 348.22,151.61 347.97,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.82,151.61 347.97,151.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.97,151.61 347.97,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.22,152.1 355.54,152.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.22,151.86 355.54,151.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.82,151.12 355.95,151.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="355.79,152.35 347.97,152.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="355.79,151.61 347.97,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.82,151.61 347.82,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.97,151.61 347.97,152.35 348.22,152.35 348.22,151.61 347.97,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.82,151.61 347.97,151.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.97,151.61 347.97,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="355.95,150.93 355.95,151.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="355.54,151.61 355.54,152.35 355.79,152.35 355.79,151.61 355.54,151.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="355.95,150.93 356.5,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.5,151.61 356.5,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.66,152.35 355.79,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="355.95,151.61 355.79,151.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="355.79,151.61 355.79,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.5,151.61 356.66,151.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.66,151.61 356.66,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.36,150.93 358.91,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.36,151.61 358.36,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="367.04,151.12 367.32,151.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="367.32,151.12 367.32,150.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="367.32,150.84 367.04,150.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="367.04,150.84 367.04,135.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.44,153.56 319.51,153.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.72,159.52 317.54,159.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.54,159.52 317.54,160.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.54,160.07 317.72,160.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.72,160.07 317.72,168.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.54,160.07 318.87,160.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.44,168.67 318.12,168.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.44,168.67 317.44,168.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,168.11 317.44,168.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,167.96 318.87,168.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,168.67 318.12,168.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,168.82 318.87,168.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,168.11 318.12,167.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,167.96 318.87,167.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,176.79 318.87,177.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.44,177.51 318.12,177.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.44,177.51 317.44,176.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,176.95 317.44,176.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,176.79 318.87,177.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,177.51 318.12,177.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,177.66 318.87,177.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,176.95 318.12,176.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,176.79 318.87,176.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.72,168.67 317.72,176.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.72,177.51 317.72,186.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,198.03 318.87,198.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,198.03 318.87,198.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.44,198.75 318.12,198.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.44,198.75 317.44,198.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,198.19 317.44,198.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,198.03 318.87,198.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,198.75 318.12,198.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,198.9 318.87,198.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,198.19 318.12,198.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,198.03 318.87,198.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,207 318.87,207.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,207 318.87,207.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.44,207.71 318.12,207.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.44,207.71 317.44,207.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,207.15 317.44,207.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,207 318.87,207.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,207.71 318.12,207.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,207.86 318.87,207.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,207.15 318.12,207" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,207 318.87,207" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.6,188.55 317.6,198.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.6,198.75 317.6,207.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.6,207.71 317.6,214.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,198.9 318.12,207" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.87,198.9 318.87,207" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.87,226.01 318.87,226.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,226.01 318.87,226.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,226.01 318.87,226.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.44,226.72 318.12,226.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.44,226.72 317.44,226.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,226.16 317.44,226.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,226.01 318.87,226.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,226.72 318.12,226.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,226.87 318.87,226.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,226.16 318.12,226.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,226.01 318.87,226.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,234.97 318.87,235.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,234.97 318.87,235.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,234.97 318.87,235.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.44,235.68 318.12,235.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.44,235.68 317.44,235.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,235.12 317.44,235.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,234.97 318.87,235.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,235.68 318.12,235.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,235.83 318.87,235.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,235.12 318.12,234.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,234.97 318.87,234.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.6,226.72 317.6,235.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.6,235.68 317.6,243.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.6,217.43 317.6,226.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.44,245.35 317.44,243.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,243.73 317.44,243.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,243.73 318.12,243.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.12,243.58 318.87,243.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.69,215.29 317.69,216.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,214.73 317.32,214.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.32,215.29 317.32,214.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.32,216.68 317.32,217.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.69,215.29 317.32,215.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.69,216.68 317.32,216.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.87,217.23 317.32,217.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.44,245.35 316.86,245.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="316.86,245.35 316.86,245.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.27,150.93 399.27,151.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.91,151.61 358.91,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.91,151.61 359.07,151.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.07,151.61 359.07,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.07,152.35 358.2,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.36,151.61 358.2,151.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.2,151.61 358.2,152.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.07,152.35 359.07,152.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.07,152.94 359.25,152.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.25,157.55 359.25,153.56" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.11,152.94 374.11,152.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="375.11,152.08 374.11,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408,150.93 408.55,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.89,150.93 417.45,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="425.82,150.93 426.38,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.69,150.93 435.25,150.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.27,152.42 399.27,151.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="394.48,137.15 394.48,136.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="394.48,137.15 394.94,137.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="394.94,150.96 394.94,137.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="527.53,247.09 527.53,264.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="542.39,264.95 540.91,264.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="535.97,264.95 527.53,264.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="542.39,265.57 540.91,265.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="535.97,265.57 526.17,265.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="540.66,265.57 540.66,264.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="540.91,265.57 540.91,264.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="536.21,265.57 536.21,264.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="535.97,265.57 535.97,264.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="540.66,264.95 540.48,264.95 540.48,260.5 540.66,260.5 540.66,264.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="540.66,260.5 539.51,260.65 538.44,261.1 537.52,261.81 536.81,262.73 536.36,263.8 536.21,264.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="526.91,247.09 526.91,264.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="512.64,264.92 521.23,264.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="526.17,264.92 526.91,264.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="511.94,265.57 521.23,265.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="525.92,265.57 525.92,264.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="526.17,265.57 526.17,264.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="521.47,265.57 521.47,264.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="521.23,265.57 521.23,264.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="525.92,264.92 525.74,264.92 525.74,260.47 525.92,260.47 525.92,264.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="525.92,260.47 524.77,260.62 523.7,261.07 522.78,261.77 522.07,262.7 521.63,263.77 521.47,264.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="542.22,275.55 538.61,275.55 538.61,283.59 542.22,283.59 542.22,275.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="542.22,283.59 541.48,283.59 541.48,275.55 542.22,275.55 542.22,283.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="540.54,279.34 540.71,279.27 540.79,279.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="538.99,279.1 539.07,279.27 539.24,279.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.24,276.87 539.07,276.95 538.99,277.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="540.79,277.12 540.71,276.95 540.54,276.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="540.54,276.87 539.24,276.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="540.79,279.1 540.79,277.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.24,279.34 540.54,279.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="538.99,277.12 538.99,279.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="541.34,276.63 538.75,276.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="541.34,279.59 541.34,276.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="538.75,279.59 541.34,279.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="538.75,276.63 538.75,279.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="539.7,278.11 539.76,277.98 539.89,277.92 540.02,277.98 540.07,278.11 540.02,278.24 539.89,278.29 539.76,278.24 539.7,278.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="542.39,301.08 539.64,301.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.64,301.08 539.64,305.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.64,305.57 540.51,305.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="540.51,305.57 540.51,330.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="540.51,330.17 539.52,330.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.52,330.17 539.52,332.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.52,332.62 541.19,332.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.19,332.62 541.19,344.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.44,344.83 514.22,344.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="519.22,344.83 541.19,344.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.61,332.53 513.44,332.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="493.05,367.14 491.89,367.29 490.82,367.74 489.9,368.44 489.19,369.36 488.75,370.44 488.6,371.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.05,371.59 493.05,371.4 488.6,371.4 488.6,371.59 493.05,371.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.6,367.14 493.6,366.89 493.05,366.89 493.05,367.14 493.6,367.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.6,371.84 493.6,371.59 493.05,371.59 493.05,371.84 493.6,371.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.95,372.58 480.47,372.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="492.95,373.32 480.47,373.32" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="492.95,371.84 493.7,371.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.7,366.89 492.95,366.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.72,361.45 480.47,361.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.07,330.43 513.07,323.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="542.22,275.55 542.22,301.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.94,247.22 495.63,247.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.63,256.98 495.63,295.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.07,256.98 495.07,295.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="528.8,328.26 520.27,328.26 520.27,323.29 528.8,323.29 528.8,328.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="508.02,295.89 508.02,293.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="508.02,293.24 513.38,293.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="513.38,293.24 513.38,318.2" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="514.31,319.13 513.38,318.2" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="514.31,319.13 514.31,322.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="514.31,322.49 513.22,323.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="514.31,319.43 513.07,319.43" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="514.31,322.18 513.07,322.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.07,247.09 495.07,247.59" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.63,247.09 495.63,247.59" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="490.62,247.84 490.77,248.99 491.22,250.06 491.93,250.98 492.85,251.69 493.92,252.13 495.07,252.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.07,252.29 493.92,252.44 492.85,252.88 491.93,253.59 491.22,254.51 490.77,255.58 490.62,256.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.07,256.73 495.07,256.55 490.62,256.55 490.62,256.73 495.07,256.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.63,256.98 495.63,256.73 495.07,256.73 495.07,256.98 495.63,256.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.63,247.83 495.63,247.59 495.07,247.59 495.07,247.83 495.63,247.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.07,248.02 495.07,247.84 490.62,247.84 490.62,248.02 495.07,248.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.63,247.59 495.07,247.59" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.63,256.98 495.07,256.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="403.91,273.92 398.96,273.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="321.11,388.4 330.62,388.4 330.62,387.78 321.11,387.78 321.11,388.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="342.63,248.59 342.87,248.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.87,248.59 342.87,248.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.87,248.09 342.63,248.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.63,248.09 342.63,248.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.32,248.59 347.57,248.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.57,248.59 347.57,248.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.57,248.09 347.32,248.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.32,248.09 347.32,248.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.87,248.59 342.87,253.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.32,248.59 347.17,249.76 346.71,250.85 345.97,251.78 345.02,252.48 343.92,252.91 342.74,253.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.01,248.59 343.01,253.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.01,248.59 343.01,248.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.87,248.59 343.01,248.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.2,273.82 338.2,275.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="321.71,247.41 322.61,247.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="332,247.41 337.5,247.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="321.71,246.63 322.61,246.63" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="332,246.63 338.27,246.63" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="337.5,247.95 337.5,247.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="338.27,247.95 338.27,246.63" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="321.71,247.41 322.61,247.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="322.61,247.41 322.61,246.63" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="337.5,247.41 332,247.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="332,247.41 332,246.63" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="322.61,247.27 322.86,247.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.86,247.27 322.86,246.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.86,246.77 322.61,246.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.61,246.77 322.61,247.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.86,247.27 322.86,251.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.31,247.27 327.15,248.44 326.69,249.53 325.96,250.46 325,251.16 323.9,251.59 322.72,251.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="323,247.27 323,251.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="323,247.27 323,247.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.86,247.27 323,247.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.76,247.27 331.62,247.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.62,247.27 331.62,247.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.62,247.27 331.62,251.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.89,251.71 330.71,251.59 329.61,251.16 328.66,250.46 327.92,249.53 327.46,248.44 327.31,247.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.76,247.27 331.76,251.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332,247.27 331.76,247.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.76,247.27 331.76,246.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.76,246.77 332,246.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332,246.77 332,247.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="559.42,303.21 550.4,303.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.4,340.69 510.97,340.69 510.97,338.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.3,296.87 508.43,296.87 508.43,302 512.3,302 512.3,296.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.14,302.93 320.81,302.93 320.81,304.1 319.7,304.1 319.7,316.65 330.14,316.65 330.14,302.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="371.26,387.16 370.7,387.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="433.23,273.18 433.23,273.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.5,273.18 409.5,273.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="366.26,373.32 365.98,373.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="366.26,372.7 365.98,372.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="392.34,273.26 392.1,273.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="392.34,274 392.1,274" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.47,273.26 386.23,273.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.47,274 386.23,274" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.6,273.26 380.36,273.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.6,274 380.36,274" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.73,273.26 374.49,273.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.73,274 374.49,274" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="368.86,273.26 368.61,273.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="368.86,274 368.61,274" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.36,372.7 370.11,372.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.36,373.32 370.11,373.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.2,418.46 268.42,418.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.6,422.65 276.82,422.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.43,423.07 277.65,422.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.84,427.26 286.06,426.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="521.23,264.92 521.47,264.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="521.23,265.57 521.47,265.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="525.92,264.92 526.17,264.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="525.92,265.57 526.17,265.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="535.97,264.95 536.21,264.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="535.97,265.57 536.21,265.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="540.66,264.95 540.91,264.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="540.66,265.57 540.91,265.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.03,302 437.03,304.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="542.39,249.6 539.46,249.6 539.46,247.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.39,274.35 289.39,276.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.07,302 513.07,304.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="374.11,152.94 374.11,152.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.74,302 541.74,302.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.64,388.03 539.64,390.13 541.74,390.13 541.74,388.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.28,170 381.28,170.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="376.34,170 376.34,170.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="381.28,170.12 385.33,170.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="381.28,170.37 385.33,170.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="410.5,170 410.5,170.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="415.45,170 415.45,170.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="418.91,170 418.91,170.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="423.85,170 423.85,170.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="448.13,170 448.13,170.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="453.07,170 453.07,170.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="457.3,170 457.3,170.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="462.25,170 462.25,170.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="462.25,170.12 465.81,170.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.25,170.37 465.81,170.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.06,168.78 494.56,168.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.06,173.72 494.56,173.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.06,190.42 494.56,190.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.06,195.36 494.56,195.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.06,219.14 494.56,219.14" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.06,224.09 494.56,224.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475,246.46 472.5,246.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="521.23,264.92 521.23,265.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="526.17,264.92 526.17,265.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="535.97,264.95 535.97,265.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="540.91,264.95 540.91,265.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="395.68,424.91 395.68,425.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="390.81,424.91 390.81,425.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="318.92,387.78 318.92,388.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="320.77,389.88 321.02,389.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="358.7,273.82 347.98,273.82" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="347.98,273.82 347.98,282.65" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.43,275.73 360.43,287.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.43,287.01 352.04,287.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.43,287.75 351.94,287.75" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="347.24,273.82 347.24,282.85" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="347.98,282.65 348.33,283.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="351.47,286.4 351.56,286.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="351.72,286.66 352.04,287.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="347.24,282.85 347.78,283.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.33,283.03 347.78,283.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="351.72,286.66 351.2,287.02" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="349.89,288.28 345.54,289.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="340.73,290.67 336.42,291.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="338.2,275.66 331.32,275.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.49,283.2 348.33,283.03 347.78,283.41 347.94,283.59 348.49,283.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="351.72,286.66 351.56,286.49 351.03,286.84 351.2,287.02 351.72,286.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="355.29,284.07 355.21,283.96 351.47,286.4 351.56,286.49 355.29,284.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="355.21,283.96 354.05,283.09 352.7,282.56 351.26,282.4 349.82,282.62 348.49,283.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="351.2,287.02 351.27,287.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="340.7,289.93 340.47,289.99 340.73,290.67 340.97,290.61 340.7,289.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.27,288.7 345.03,288.76 345.31,289.47 345.54,289.41 345.27,288.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.66,285.87 339.54,285.9 340.7,289.93 340.82,289.9 339.66,285.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.06,288.82 344.42,287.64 343.48,286.7 342.3,286.06 341,285.77 339.66,285.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.89,288.28 351.94,287.75" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="340.47,289.99 336.42,291.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="340.73,290.67 340.47,289.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.54,289.41 345.27,288.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="319.62,250.91 319.62,250.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,250.99 319.62,251.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,251.08 319.62,251.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,251.17 319.62,251.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,251.25 319.62,251.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,251.34 319.62,251.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,251.43 319.62,251.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,251.52 319.62,251.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,251.6 319.62,251.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,251.69 319.62,251.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,251.78 319.62,251.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,251.87 319.62,251.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,251.95 319.62,252.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,252.04 319.62,252.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,252.13 319.62,252.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,252.22 319.62,252.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,252.3 319.62,252.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,252.39 319.62,252.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,252.48 319.62,252.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,252.57 319.62,252.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,252.66 319.62,252.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,252.74 319.62,252.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,252.83 319.62,252.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,252.92 319.62,252.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,253.01 319.62,253.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,253.09 319.62,253.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,253.18 319.62,253.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,253.27 319.62,253.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,253.36 319.62,253.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,253.44 319.62,253.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,253.53 319.62,253.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,253.62 319.62,253.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,253.71 319.62,253.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,253.79 319.62,253.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,253.88 319.62,253.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,253.97 319.62,254.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,254.06 319.62,254.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,254.14 319.62,254.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,254.23 319.62,254.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,254.32 319.62,254.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,254.41 319.62,254.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,254.49 319.62,254.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,254.58 319.62,254.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,254.67 319.62,254.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,254.76 319.62,254.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,254.84 319.62,254.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,254.93 319.62,254.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,255.02 319.62,255.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,255.11 319.62,255.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,255.2 319.62,255.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,255.28 319.62,255.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,255.37 319.62,255.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,255.46 319.62,255.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,255.55 319.62,255.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,255.63 319.62,255.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,255.72 319.62,255.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.62,255.81 319.62,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,255.86 314.81,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.84,255.86 314.89,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.92,255.86 314.98,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.01,255.86 315.07,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.1,255.86 315.16,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.19,255.86 315.24,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.27,255.86 315.33,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.36,255.86 315.42,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.45,255.86 315.51,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.54,255.86 315.59,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.62,255.86 315.68,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.71,255.86 315.77,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.8,255.86 315.86,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.89,255.86 315.94,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.97,255.86 316.03,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.06,255.86 316.12,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.15,255.86 316.21,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.24,255.86 316.3,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.32,255.86 316.38,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.41,255.86 316.47,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.5,255.86 316.56,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.59,255.86 316.65,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.67,255.86 316.73,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.76,255.86 316.82,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.85,255.86 316.91,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.94,255.86 317,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.02,255.86 317.08,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.11,255.86 317.17,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.2,255.86 317.26,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.29,255.86 317.35,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.38,255.86 317.43,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.46,255.86 317.52,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.55,255.86 317.61,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.64,255.86 317.7,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.73,255.86 317.78,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.81,255.86 317.87,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.9,255.86 317.96,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.99,255.86 318.05,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.08,255.86 318.13,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.16,255.86 318.22,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.25,255.86 318.31,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.34,255.86 318.4,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.43,255.86 318.48,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.51,255.86 318.57,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.6,255.86 318.66,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.69,255.86 318.75,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.78,255.86 318.84,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.86,255.86 318.92,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.95,255.86 319.01,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.04,255.86 319.1,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.13,255.86 319.19,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.21,255.86 319.27,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.3,255.86 319.36,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.39,255.86 319.45,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.48,255.86 319.54,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.57,255.86 319.62,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,255.86 309.81,255.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,255.78 309.81,255.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,255.69 309.81,255.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,255.6 309.81,255.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,255.52 309.81,255.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,255.43 309.81,255.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,255.34 309.81,255.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,255.25 309.81,255.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,255.17 309.81,255.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,255.08 309.81,255.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,254.99 309.81,254.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,254.9 309.81,254.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,254.82 309.81,254.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,254.73 309.81,254.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,254.64 309.81,254.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,254.55 309.81,254.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,254.47 309.81,254.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,254.38 309.81,254.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,254.29 309.81,254.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,254.2 309.81,254.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,254.11 309.81,254.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,254.03 309.81,253.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,253.94 309.81,253.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,253.85 309.81,253.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,253.76 309.81,253.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,253.68 309.81,253.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,253.59 309.81,253.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,253.5 309.81,253.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,253.41 309.81,253.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,253.33 309.81,253.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,253.24 309.81,253.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,253.15 309.81,253.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,253.06 309.81,253.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,252.98 309.81,252.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,252.89 309.81,252.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,252.8 309.81,252.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,252.71 309.81,252.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,252.63 309.81,252.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,252.54 309.81,252.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,252.45 309.81,252.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,252.36 309.81,252.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,252.28 309.81,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,252.19 309.81,252.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,252.1 309.81,252.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,252.01 309.81,251.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,251.93 309.81,251.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,251.84 309.81,251.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,251.75 309.81,251.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,251.66 309.81,251.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,251.57 309.81,251.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,251.49 309.81,251.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,251.4 309.81,251.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,251.31 309.81,251.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,251.22 309.81,251.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,251.14 309.81,251.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,251.05 309.81,250.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.81,250.96 309.81,250.91 309.86,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.89,250.91 309.94,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.97,250.91 310.03,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.06,250.91 310.12,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.15,250.91 310.21,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.24,250.91 310.3,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.32,250.91 310.38,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.41,250.91 310.47,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.5,250.91 310.56,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.59,250.91 310.65,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.67,250.91 310.73,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.76,250.91 310.82,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.85,250.91 310.91,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.94,250.91 311,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.03,250.91 311.08,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.11,250.91 311.17,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.2,250.91 311.26,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.29,250.91 311.35,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.38,250.91 311.43,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.46,250.91 311.52,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.55,250.91 311.61,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.64,250.91 311.7,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.73,250.91 311.78,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.81,250.91 311.87,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.9,250.91 311.96,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.99,250.91 312.05,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.08,250.91 312.13,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.16,250.91 312.22,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.25,250.91 312.31,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.34,250.91 312.4,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.43,250.91 312.48,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.51,250.91 312.57,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.6,250.91 312.66,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.69,250.91 312.75,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.78,250.91 312.84,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.86,250.91 312.92,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.95,250.91 313.01,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.04,250.91 313.1,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.13,250.91 313.19,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.21,250.91 313.27,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.3,250.91 313.36,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.39,250.91 313.45,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.48,250.91 313.54,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.57,250.91 313.62,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.65,250.91 313.71,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.74,250.91 313.8,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.83,250.91 313.89,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.92,250.91 313.97,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314,250.91 314.06,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.09,250.91 314.15,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.18,250.91 314.24,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.27,250.91 314.32,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.35,250.91 314.41,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.44,250.91 314.5,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.53,250.91 314.59,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.62,250.91 314.67,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.7,250.91 314.75,250.91 314.75,250.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,250.99 314.75,251.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,251.08 314.75,251.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,251.17 314.75,251.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,251.25 314.75,251.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,251.34 314.75,251.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,251.43 314.75,251.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,251.52 314.75,251.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,251.6 314.75,251.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,251.69 314.75,251.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,251.78 314.75,251.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,251.87 314.75,251.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,251.95 314.75,252.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,252.04 314.75,252.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,252.13 314.75,252.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,252.22 314.75,252.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,252.3 314.75,252.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,252.39 314.75,252.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,252.48 314.75,252.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,252.57 314.75,252.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,252.66 314.75,252.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,252.74 314.75,252.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,252.83 314.75,252.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,252.92 314.75,252.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,253.01 314.75,253.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,253.09 314.75,253.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,253.18 314.75,253.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,253.27 314.75,253.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,253.36 314.75,253.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,253.44 314.75,253.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,253.53 314.75,253.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,253.62 314.75,253.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,253.71 314.75,253.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,253.79 314.75,253.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,253.88 314.75,253.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,253.97 314.75,254.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,254.06 314.75,254.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,254.14 314.75,254.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,254.23 314.75,254.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,254.32 314.75,254.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,254.41 314.75,254.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,254.49 314.75,254.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,254.58 314.75,254.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,254.67 314.75,254.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,254.76 314.75,254.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,254.84 314.75,254.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,254.93 314.75,254.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,255.02 314.75,255.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,255.11 314.75,255.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,255.2 314.75,255.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,255.28 314.75,255.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,255.37 314.75,255.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,255.46 314.75,255.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,255.55 314.75,255.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,255.63 314.75,255.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,255.72 314.75,255.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,255.81 314.75,255.86 314.7,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.67,255.86 314.62,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.59,255.86 314.53,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.5,255.86 314.44,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.41,255.86 314.35,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.32,255.86 314.27,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.24,255.86 314.18,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.15,255.86 314.09,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.06,255.86 314,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.97,255.86 313.92,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.89,255.86 313.83,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.8,255.86 313.74,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.71,255.86 313.65,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.62,255.86 313.57,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.54,255.86 313.48,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.45,255.86 313.39,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.36,255.86 313.3,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.27,255.86 313.21,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.19,255.86 313.13,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.1,255.86 313.04,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.01,255.86 312.95,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.92,255.86 312.86,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.84,255.86 312.78,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.75,255.86 312.69,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.66,255.86 312.6,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.57,255.86 312.51,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.48,255.86 312.43,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.4,255.86 312.34,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.31,255.86 312.25,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.22,255.86 312.16,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.13,255.86 312.08,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.05,255.86 311.99,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.96,255.86 311.9,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.87,255.86 311.81,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.78,255.86 311.73,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.7,255.86 311.64,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.61,255.86 311.55,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.52,255.86 311.46,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.43,255.86 311.38,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.35,255.86 311.29,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.26,255.86 311.2,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.17,255.86 311.11,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.08,255.86 311.03,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311,255.86 310.94,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.91,255.86 310.85,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.82,255.86 310.76,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.73,255.86 310.67,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.65,255.86 310.59,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.56,255.86 310.5,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.47,255.86 310.41,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.38,255.86 310.32,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.3,255.86 310.24,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.21,255.86 310.15,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.12,255.86 310.06,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.03,255.86 309.97,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.94,255.86 309.89,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.86,255.86 309.81,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.77,252.56 310.99,253.14 311.2,252.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.31,252.92 311.64,252.92 311.64,252.86 311.61,252.81 311.58,252.78 311.53,252.75 311.45,252.75 311.39,252.78 311.34,252.84 311.31,252.92 311.31,252.97 311.34,253.05 311.39,253.11 311.45,253.14 311.53,253.14 311.58,253.11 311.64,253.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.8,253.14 311.8,252.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.8,252.86 311.88,252.78 311.94,252.75 312.02,252.75 312.07,252.78 312.1,252.86 312.1,253.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.64,252.56 312.64,253.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.64,252.84 312.59,252.78 312.53,252.75 312.45,252.75 312.4,252.78 312.34,252.84 312.32,252.92 312.32,252.97 312.34,253.05 312.4,253.11 312.45,253.14 312.53,253.14 312.59,253.11 312.64,253.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.83,252.59 312.86,252.62 312.89,252.59 312.86,252.56 312.83,252.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.86,252.75 312.86,253.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.05,253.14 313.05,252.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.05,252.86 313.13,252.78 313.19,252.75 313.27,252.75 313.32,252.78 313.35,252.86 313.35,253.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.89,252.75 313.89,253.19 313.87,253.27 313.84,253.3 313.78,253.33 313.7,253.33 313.65,253.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.89,252.84 313.84,252.78 313.78,252.75 313.7,252.75 313.65,252.78 313.59,252.84 313.57,252.92 313.57,252.97 313.59,253.05 313.65,253.11 313.7,253.14 313.78,253.14 313.84,253.11 313.89,253.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.63,253.53 310.63,254.1 310.96,254.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.23,253.72 311.18,253.75 311.12,253.8 311.1,253.88 311.1,253.94 311.12,254.02 311.18,254.07 311.23,254.1 311.31,254.1 311.37,254.07 311.42,254.02 311.45,253.94 311.45,253.88 311.42,253.8 311.37,253.75 311.31,253.72 311.23,253.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.94,253.8 311.88,253.75 311.83,253.72 311.75,253.72 311.69,253.75 311.64,253.8 311.61,253.88 311.61,253.94 311.64,254.02 311.69,254.07 311.75,254.1 311.83,254.1 311.88,254.07 311.94,254.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.43,253.72 312.43,254.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.43,253.8 312.37,253.75 312.32,253.72 312.24,253.72 312.18,253.75 312.13,253.8 312.1,253.88 312.1,253.94 312.13,254.02 312.18,254.07 312.24,254.1 312.32,254.1 312.37,254.07 312.43,254.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.7,253.53 312.7,253.99 312.72,254.07 312.78,254.1 312.83,254.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.62,253.72 312.81,253.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313,253.56 313.02,253.59 313.05,253.56 313.02,253.53 313,253.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.02,253.72 313.02,254.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.35,253.72 313.3,253.75 313.24,253.8 313.21,253.88 313.21,253.94 313.24,254.02 313.3,254.07 313.35,254.1 313.43,254.1 313.49,254.07 313.54,254.02 313.57,253.94 313.57,253.88 313.54,253.8 313.49,253.75 313.43,253.72 313.35,253.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.73,254.1 313.73,253.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.73,253.83 313.81,253.75 313.87,253.72 313.95,253.72 314,253.75 314.03,253.83 314.03,254.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.5,252.29 316.47,252.23 316.41,252.17 316.35,252.14 316.23,252.14 316.17,252.17 316.11,252.23 316.09,252.29 316.06,252.37 316.06,252.52 316.09,252.61 316.11,252.67 316.17,252.73 316.23,252.76 316.35,252.76 316.41,252.73 316.47,252.67 316.5,252.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.67,252.76 316.67,252.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.67,252.52 316.7,252.43 316.76,252.37 316.82,252.34 316.91,252.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.06,252.34 317.06,252.64 317.09,252.73 317.14,252.76 317.23,252.76 317.29,252.73 317.38,252.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.38,252.34 317.38,252.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.94,252.43 317.91,252.37 317.82,252.34 317.73,252.34 317.65,252.37 317.62,252.43 317.65,252.49 317.7,252.52 317.85,252.55 317.91,252.58 317.94,252.64 317.94,252.67 317.91,252.73 317.82,252.76 317.73,252.76 317.65,252.73 317.62,252.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.12,252.76 318.12,252.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.12,252.46 318.2,252.37 318.26,252.34 318.35,252.34 318.41,252.37 318.44,252.46 318.44,252.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.36,253.26 316.31,253.2 316.22,253.17 316.1,253.17 316.01,253.2 315.95,253.26 315.95,253.32 315.98,253.37 316.01,253.4 316.07,253.43 316.25,253.49 316.31,253.52 316.34,253.55 316.36,253.61 316.36,253.7 316.31,253.76 316.22,253.79 316.1,253.79 316.01,253.76 315.95,253.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.54,253.37 316.54,253.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.54,253.46 316.6,253.4 316.66,253.37 316.75,253.37 316.81,253.4 316.87,253.46 316.89,253.55 316.89,253.61 316.87,253.7 316.81,253.76 316.75,253.79 316.66,253.79 316.6,253.76 316.54,253.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.45,253.37 317.45,253.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.45,253.46 317.39,253.4 317.34,253.37 317.25,253.37 317.19,253.4 317.13,253.46 317.1,253.55 317.1,253.61 317.13,253.7 317.19,253.76 317.25,253.79 317.34,253.79 317.39,253.76 317.45,253.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.01,253.46 317.95,253.4 317.9,253.37 317.81,253.37 317.75,253.4 317.69,253.46 317.66,253.55 317.66,253.61 317.69,253.7 317.75,253.76 317.81,253.79 317.9,253.79 317.95,253.76 318.01,253.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.19,253.55 318.54,253.55 318.54,253.49 318.51,253.43 318.48,253.4 318.42,253.37 318.34,253.37 318.28,253.4 318.22,253.46 318.19,253.55 318.19,253.61 318.22,253.7 318.28,253.76 318.34,253.79 318.42,253.79 318.48,253.76 318.54,253.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.75,250.91 314.81,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.84,250.91 314.89,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.92,250.91 314.98,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.01,250.91 315.07,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.1,250.91 315.16,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.19,250.91 315.24,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.27,250.91 315.33,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.36,250.91 315.42,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.45,250.91 315.51,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.54,250.91 315.59,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.62,250.91 315.68,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.71,250.91 315.77,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.8,250.91 315.86,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.89,250.91 315.94,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.97,250.91 316.03,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.06,250.91 316.12,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.15,250.91 316.21,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.24,250.91 316.3,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.32,250.91 316.38,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.41,250.91 316.47,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.5,250.91 316.56,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.59,250.91 316.65,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.67,250.91 316.73,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.76,250.91 316.82,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.85,250.91 316.91,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.94,250.91 317,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.02,250.91 317.08,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.11,250.91 317.17,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.2,250.91 317.26,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.29,250.91 317.35,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.38,250.91 317.43,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.46,250.91 317.52,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.55,250.91 317.61,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.64,250.91 317.7,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.73,250.91 317.78,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.81,250.91 317.87,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.9,250.91 317.96,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.99,250.91 318.05,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.08,250.91 318.13,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.16,250.91 318.22,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.25,250.91 318.31,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.34,250.91 318.4,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.43,250.91 318.48,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.51,250.91 318.57,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.6,250.91 318.66,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.69,250.91 318.75,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.78,250.91 318.84,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.86,250.91 318.92,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.95,250.91 319.01,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.04,250.91 319.1,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.13,250.91 319.19,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.21,250.91 319.27,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.3,250.91 319.36,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.39,250.91 319.45,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.48,250.91 319.54,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.57,250.91 319.62,250.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,252.22 327.59,252.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,252.3 327.59,252.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,252.38 327.59,252.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,252.47 327.59,252.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,252.56 327.59,252.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,252.65 327.59,252.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,252.74 327.59,252.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,252.82 327.59,252.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,252.91 327.59,252.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,253 327.59,253.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,253.09 327.59,253.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,253.17 327.59,253.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,253.26 327.59,253.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,253.35 327.59,253.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,253.44 327.59,253.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,253.52 327.59,253.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,253.61 327.59,253.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,253.7 327.59,253.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,253.79 327.59,253.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,253.87 327.59,253.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,253.96 327.59,254.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,254.05 327.59,254.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,254.14 327.59,254.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,254.22 327.59,254.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,254.31 327.59,254.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,254.4 327.59,254.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,254.49 327.59,254.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,254.57 327.59,254.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,254.66 327.59,254.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,254.75 327.59,254.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,254.84 327.59,254.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,254.92 327.59,254.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,255.01 327.59,255.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,255.1 327.59,255.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,255.19 327.59,255.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,255.28 327.59,255.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,255.36 327.59,255.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,255.45 327.59,255.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,255.54 327.59,255.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,255.63 327.59,255.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,255.71 327.59,255.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,255.8 327.59,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,255.89 327.59,255.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,255.98 327.59,256.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,256.06 327.59,256.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,256.15 327.59,256.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,256.24 327.59,256.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,256.33 327.59,256.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,256.41 327.59,256.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,256.5 327.59,256.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,256.59 327.59,256.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,256.68 327.59,256.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,256.76 327.59,256.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,256.85 327.59,256.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,256.94 327.59,257" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,257.03 327.59,257.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,257.11 327.59,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,257.16 332.41,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.38,257.16 332.32,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.29,257.16 332.23,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.2,257.16 332.14,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.12,257.16 332.06,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.03,257.16 331.97,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.94,257.16 331.88,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.85,257.16 331.79,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.77,257.16 331.71,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.68,257.16 331.62,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.59,257.16 331.53,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.5,257.16 331.44,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.41,257.16 331.36,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.33,257.16 331.27,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.24,257.16 331.18,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.15,257.16 331.09,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.06,257.16 331.01,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.98,257.16 330.92,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.89,257.16 330.83,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.8,257.16 330.74,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.71,257.16 330.66,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.63,257.16 330.57,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.54,257.16 330.48,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.45,257.16 330.39,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.36,257.16 330.31,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.28,257.16 330.22,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.19,257.16 330.13,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.1,257.16 330.04,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.01,257.16 329.95,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.93,257.16 329.87,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.84,257.16 329.78,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.75,257.16 329.69,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.66,257.16 329.6,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.58,257.16 329.52,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.49,257.16 329.43,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.4,257.16 329.34,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.31,257.16 329.25,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.22,257.16 329.17,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.14,257.16 329.08,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.05,257.16 328.99,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.96,257.16 328.9,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.87,257.16 328.82,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.79,257.16 328.73,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.7,257.16 328.64,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.61,257.16 328.55,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.52,257.16 328.47,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.44,257.16 328.38,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.35,257.16 328.29,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.26,257.16 328.2,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.17,257.16 328.12,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.09,257.16 328.03,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328,257.16 327.94,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.91,257.16 327.85,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.82,257.16 327.77,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.74,257.16 327.68,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.65,257.16 327.59,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,257.16 337.4,257.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,257.09 337.4,257.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,257 337.4,256.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,256.91 337.4,256.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,256.82 337.4,256.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,256.74 337.4,256.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,256.65 337.4,256.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,256.56 337.4,256.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,256.47 337.4,256.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,256.38 337.4,256.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,256.3 337.4,256.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,256.21 337.4,256.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,256.12 337.4,256.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,256.03 337.4,255.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,255.95 337.4,255.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,255.86 337.4,255.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,255.77 337.4,255.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,255.68 337.4,255.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,255.6 337.4,255.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,255.51 337.4,255.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,255.42 337.4,255.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,255.33 337.4,255.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,255.25 337.4,255.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,255.16 337.4,255.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,255.07 337.4,255.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,254.98 337.4,254.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,254.9 337.4,254.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,254.81 337.4,254.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,254.72 337.4,254.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,254.63 337.4,254.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,254.55 337.4,254.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,254.46 337.4,254.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,254.37 337.4,254.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,254.28 337.4,254.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,254.19 337.4,254.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,254.11 337.4,254.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,254.02 337.4,253.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,253.93 337.4,253.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,253.84 337.4,253.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,253.76 337.4,253.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,253.67 337.4,253.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,253.58 337.4,253.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,253.49 337.4,253.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,253.41 337.4,253.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,253.32 337.4,253.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,253.23 337.4,253.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,253.14 337.4,253.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,253.06 337.4,253" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,252.97 337.4,252.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,252.88 337.4,252.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,252.79 337.4,252.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,252.71 337.4,252.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,252.62 337.4,252.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,252.53 337.4,252.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,252.44 337.4,252.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,252.36 337.4,252.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.4,252.27 337.4,252.22 337.36,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.33,252.22 337.27,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.24,252.22 337.18,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.15,252.22 337.09,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.06,252.22 337.01,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.98,252.22 336.92,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.89,252.22 336.83,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.8,252.22 336.74,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.71,252.22 336.66,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.63,252.22 336.57,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.54,252.22 336.48,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.45,252.22 336.39,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.36,252.22 336.31,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.28,252.22 336.22,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.19,252.22 336.13,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.1,252.22 336.04,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.01,252.22 335.95,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.93,252.22 335.87,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.84,252.22 335.78,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.75,252.22 335.69,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.66,252.22 335.6,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.58,252.22 335.52,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.49,252.22 335.43,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.4,252.22 335.34,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.31,252.22 335.25,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.22,252.22 335.17,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.14,252.22 335.08,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.05,252.22 334.99,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.96,252.22 334.9,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.87,252.22 334.82,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.79,252.22 334.73,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.7,252.22 334.64,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.61,252.22 334.55,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.52,252.22 334.47,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.44,252.22 334.38,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.35,252.22 334.29,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.26,252.22 334.2,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.17,252.22 334.12,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.09,252.22 334.03,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334,252.22 333.94,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.91,252.22 333.85,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.82,252.22 333.76,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.74,252.22 333.68,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.65,252.22 333.59,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.56,252.22 333.5,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.47,252.22 333.41,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.39,252.22 333.33,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.3,252.22 333.24,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.21,252.22 333.15,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.12,252.22 333.06,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.04,252.22 332.98,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.95,252.22 332.89,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.86,252.22 332.8,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.77,252.22 332.71,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.68,252.22 332.63,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.6,252.22 332.54,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.51,252.22 332.46,252.22 332.46,252.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,252.3 332.46,252.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,252.38 332.46,252.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,252.47 332.46,252.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,252.56 332.46,252.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,252.65 332.46,252.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,252.74 332.46,252.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,252.82 332.46,252.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,252.91 332.46,252.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,253 332.46,253.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,253.09 332.46,253.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,253.17 332.46,253.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,253.26 332.46,253.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,253.35 332.46,253.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,253.44 332.46,253.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,253.52 332.46,253.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,253.61 332.46,253.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,253.7 332.46,253.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,253.79 332.46,253.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,253.87 332.46,253.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,253.96 332.46,254.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,254.05 332.46,254.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,254.14 332.46,254.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,254.22 332.46,254.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,254.31 332.46,254.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,254.4 332.46,254.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,254.49 332.46,254.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,254.57 332.46,254.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,254.66 332.46,254.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,254.75 332.46,254.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,254.84 332.46,254.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,254.92 332.46,254.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,255.01 332.46,255.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,255.1 332.46,255.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,255.19 332.46,255.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,255.28 332.46,255.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,255.36 332.46,255.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,255.45 332.46,255.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,255.54 332.46,255.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,255.63 332.46,255.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,255.71 332.46,255.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,255.8 332.46,255.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,255.89 332.46,255.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,255.98 332.46,256.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,256.06 332.46,256.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,256.15 332.46,256.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,256.24 332.46,256.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,256.33 332.46,256.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,256.41 332.46,256.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,256.5 332.46,256.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,256.59 332.46,256.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,256.68 332.46,256.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,256.76 332.46,256.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,256.85 332.46,256.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,256.94 332.46,257" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,257.03 332.46,257.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,257.11 332.46,257.16 332.51,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.54,257.16 332.6,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.63,257.16 332.68,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.71,257.16 332.77,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.8,257.16 332.86,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.89,257.16 332.95,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.98,257.16 333.04,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.06,257.16 333.12,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.15,257.16 333.21,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.24,257.16 333.3,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.33,257.16 333.39,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.41,257.16 333.47,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.5,257.16 333.56,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.59,257.16 333.65,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.68,257.16 333.74,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.76,257.16 333.82,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.85,257.16 333.91,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.94,257.16 334,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.03,257.16 334.09,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.12,257.16 334.17,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.2,257.16 334.26,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.29,257.16 334.35,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.38,257.16 334.44,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.47,257.16 334.52,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.55,257.16 334.61,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.64,257.16 334.7,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.73,257.16 334.79,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.82,257.16 334.87,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.9,257.16 334.96,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.99,257.16 335.05,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.08,257.16 335.14,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.17,257.16 335.22,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.25,257.16 335.31,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.34,257.16 335.4,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.43,257.16 335.49,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.52,257.16 335.58,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.6,257.16 335.66,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.69,257.16 335.75,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.78,257.16 335.84,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.87,257.16 335.93,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.95,257.16 336.01,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.04,257.16 336.1,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.13,257.16 336.19,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.22,257.16 336.28,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.31,257.16 336.36,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.39,257.16 336.45,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.48,257.16 336.54,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.57,257.16 336.63,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.66,257.16 336.71,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.74,257.16 336.8,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.83,257.16 336.89,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.92,257.16 336.98,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.01,257.16 337.06,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.09,257.16 337.15,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.18,257.16 337.24,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.27,257.16 337.33,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.36,257.16 337.4,257.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.32,253.87 333.54,254.44 333.75,253.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.86,254.22 334.19,254.22 334.19,254.17 334.16,254.12 334.14,254.09 334.08,254.06 334,254.06 333.95,254.09 333.89,254.14 333.86,254.22 333.86,254.28 333.89,254.36 333.95,254.41 334,254.44 334.08,254.44 334.14,254.41 334.19,254.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.35,254.44 334.35,254.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.35,254.17 334.43,254.09 334.49,254.06 334.57,254.06 334.62,254.09 334.65,254.17 334.65,254.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.19,253.87 335.19,254.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.19,254.14 335.14,254.09 335.09,254.06 335,254.06 334.95,254.09 334.9,254.14 334.87,254.22 334.87,254.28 334.9,254.36 334.95,254.41 335,254.44 335.09,254.44 335.14,254.41 335.19,254.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.38,253.9 335.41,253.93 335.44,253.9 335.41,253.87 335.38,253.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.41,254.06 335.41,254.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.6,254.44 335.6,254.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.6,254.17 335.68,254.09 335.74,254.06 335.82,254.06 335.87,254.09 335.9,254.17 335.9,254.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.44,254.06 336.44,254.5 336.42,254.58 336.39,254.6 336.34,254.63 336.25,254.63 336.2,254.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.44,254.14 336.39,254.09 336.34,254.06 336.25,254.06 336.2,254.09 336.15,254.14 336.12,254.22 336.12,254.28 336.15,254.36 336.2,254.41 336.25,254.44 336.34,254.44 336.39,254.41 336.44,254.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.18,254.84 333.18,255.41 333.51,255.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.78,255.03 333.73,255.05 333.67,255.11 333.65,255.19 333.65,255.25 333.67,255.33 333.73,255.38 333.78,255.41 333.86,255.41 333.92,255.38 333.97,255.33 334,255.25 334,255.19 333.97,255.11 333.92,255.05 333.86,255.03 333.78,255.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.49,255.11 334.43,255.05 334.38,255.03 334.3,255.03 334.24,255.05 334.19,255.11 334.16,255.19 334.16,255.25 334.19,255.33 334.24,255.38 334.3,255.41 334.38,255.41 334.43,255.38 334.49,255.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.98,255.03 334.98,255.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.98,255.11 334.92,255.05 334.87,255.03 334.79,255.03 334.73,255.05 334.68,255.11 334.65,255.19 334.65,255.25 334.68,255.33 334.73,255.38 334.79,255.41 334.87,255.41 334.92,255.38 334.98,255.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.25,254.84 335.25,255.3 335.28,255.38 335.33,255.41 335.38,255.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.17,255.03 335.36,255.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.55,254.86 335.57,254.89 335.6,254.86 335.57,254.84 335.55,254.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.57,255.03 335.57,255.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.9,255.03 335.85,255.05 335.79,255.11 335.77,255.19 335.77,255.25 335.79,255.33 335.85,255.38 335.9,255.41 335.98,255.41 336.04,255.38 336.09,255.33 336.12,255.25 336.12,255.19 336.09,255.11 336.04,255.05 335.98,255.03 335.9,255.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.28,255.41 336.28,255.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.28,255.14 336.36,255.05 336.42,255.03 336.5,255.03 336.55,255.05 336.58,255.14 336.58,255.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.22,253.59 329.19,253.53 329.13,253.47 329.07,253.44 328.95,253.44 328.89,253.47 328.83,253.53 328.8,253.59 328.77,253.68 328.77,253.83 328.8,253.92 328.83,253.97 328.89,254.03 328.95,254.06 329.07,254.06 329.13,254.03 329.19,253.97 329.22,253.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.39,254.06 329.39,253.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.39,253.83 329.42,253.74 329.48,253.68 329.54,253.65 329.63,253.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.77,253.65 329.77,253.94 329.8,254.03 329.86,254.06 329.95,254.06 330.01,254.03 330.1,253.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.1,253.65 330.1,254.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.66,253.74 330.63,253.68 330.54,253.65 330.45,253.65 330.36,253.68 330.33,253.74 330.36,253.8 330.42,253.83 330.57,253.86 330.63,253.89 330.66,253.94 330.66,253.97 330.63,254.03 330.54,254.06 330.45,254.06 330.36,254.03 330.33,253.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.83,254.06 330.83,253.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.83,253.77 330.92,253.68 330.98,253.65 331.07,253.65 331.13,253.68 331.16,253.77 331.16,254.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.08,254.56 329.02,254.5 328.94,254.47 328.82,254.47 328.73,254.5 328.67,254.56 328.67,254.62 328.7,254.68 328.73,254.71 328.79,254.74 328.97,254.8 329.02,254.83 329.05,254.86 329.08,254.92 329.08,255 329.02,255.06 328.94,255.09 328.82,255.09 328.73,255.06 328.67,255" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.26,254.68 329.26,255.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.26,254.77 329.32,254.71 329.38,254.68 329.47,254.68 329.52,254.71 329.58,254.77 329.61,254.86 329.61,254.92 329.58,255 329.52,255.06 329.47,255.09 329.38,255.09 329.32,255.06 329.26,255" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.17,254.68 330.17,255.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.17,254.77 330.11,254.71 330.05,254.68 329.97,254.68 329.91,254.71 329.85,254.77 329.82,254.86 329.82,254.92 329.85,255 329.91,255.06 329.97,255.09 330.05,255.09 330.11,255.06 330.17,255" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.73,254.77 330.67,254.71 330.61,254.68 330.52,254.68 330.47,254.71 330.41,254.77 330.38,254.86 330.38,254.92 330.41,255 330.47,255.06 330.52,255.09 330.61,255.09 330.67,255.06 330.73,255" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.91,254.86 331.26,254.86 331.26,254.8 331.23,254.74 331.2,254.71 331.14,254.68 331.05,254.68 331,254.71 330.94,254.77 330.91,254.86 330.91,254.92 330.94,255 331,255.06 331.05,255.09 331.14,255.09 331.2,255.06 331.26,255" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.46,252.22 332.41,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.38,252.22 332.32,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.29,252.22 332.23,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.2,252.22 332.14,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.12,252.22 332.06,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.03,252.22 331.97,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.94,252.22 331.88,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.85,252.22 331.79,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.77,252.22 331.71,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.68,252.22 331.62,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.59,252.22 331.53,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.5,252.22 331.44,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.41,252.22 331.36,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.33,252.22 331.27,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.24,252.22 331.18,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.15,252.22 331.09,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.06,252.22 331.01,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.98,252.22 330.92,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.89,252.22 330.83,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.8,252.22 330.74,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.71,252.22 330.66,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.63,252.22 330.57,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.54,252.22 330.48,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.45,252.22 330.39,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.36,252.22 330.31,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.28,252.22 330.22,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.19,252.22 330.13,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.1,252.22 330.04,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.01,252.22 329.95,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.93,252.22 329.87,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.84,252.22 329.78,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.75,252.22 329.69,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.66,252.22 329.6,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.58,252.22 329.52,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.49,252.22 329.43,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.4,252.22 329.34,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.31,252.22 329.25,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.22,252.22 329.17,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.14,252.22 329.08,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.05,252.22 328.99,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.96,252.22 328.9,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.87,252.22 328.82,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.79,252.22 328.73,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.7,252.22 328.64,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.61,252.22 328.55,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.52,252.22 328.47,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.44,252.22 328.38,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.35,252.22 328.29,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.26,252.22 328.2,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.17,252.22 328.12,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.09,252.22 328.03,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328,252.22 327.94,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.91,252.22 327.85,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.82,252.22 327.77,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.74,252.22 327.68,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.65,252.22 327.59,252.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,257.42 327.6,257.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,257.5 327.6,257.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,257.59 327.6,257.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,257.68 327.6,257.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,257.76 327.6,257.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,257.85 327.6,257.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,257.94 327.6,258" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,258.03 327.6,258.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,258.11 327.6,258.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,258.2 327.6,258.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,258.29 327.6,258.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,258.38 327.6,258.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,258.46 327.6,258.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,258.55 327.6,258.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,258.64 327.6,258.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,258.73 327.6,258.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,258.82 327.6,258.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,258.9 327.6,258.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,258.99 327.6,259.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,259.08 327.6,259.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,259.17 327.6,259.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,259.25 327.6,259.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,259.34 327.6,259.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,259.43 327.6,259.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,259.52 327.6,259.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,259.6 327.6,259.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,259.69 327.6,259.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,259.78 327.6,259.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,259.87 327.6,259.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,259.95 327.6,260.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,260.04 327.6,260.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,260.13 327.6,260.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,260.22 327.6,260.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,260.3 327.6,260.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,260.39 327.6,260.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,260.48 327.6,260.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,260.57 327.6,260.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,260.65 327.6,260.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,260.74 327.6,260.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,260.83 327.6,260.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,260.92 327.6,260.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,261 327.6,261.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,261.09 327.6,261.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,261.18 327.6,261.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,261.27 327.6,261.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,261.36 327.6,261.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,261.44 327.6,261.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,261.53 327.6,261.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,261.62 327.6,261.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,261.71 327.6,261.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,261.79 327.6,261.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,261.88 327.6,261.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,261.97 327.6,262.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,262.06 327.6,262.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,262.14 327.6,262.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,262.23 327.6,262.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,262.32 327.6,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,262.37 332.42,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.39,262.37 332.33,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.3,262.37 332.24,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.21,262.37 332.15,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.12,262.37 332.07,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.04,262.37 331.98,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.95,262.37 331.89,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.86,262.37 331.8,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.77,262.37 331.72,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.69,262.37 331.63,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.6,262.37 331.54,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.51,262.37 331.45,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.42,262.37 331.36,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.34,262.37 331.28,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.25,262.37 331.19,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.16,262.37 331.1,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.07,262.37 331.01,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.99,262.37 330.93,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.9,262.37 330.84,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.81,262.37 330.75,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.72,262.37 330.66,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.63,262.37 330.58,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.55,262.37 330.49,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.46,262.37 330.4,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.37,262.37 330.31,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.28,262.37 330.23,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.2,262.37 330.14,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.11,262.37 330.05,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.02,262.37 329.96,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.93,262.37 329.88,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.85,262.37 329.79,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.76,262.37 329.7,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.67,262.37 329.61,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.58,262.37 329.53,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.5,262.37 329.44,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.41,262.37 329.35,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.32,262.37 329.26,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.23,262.37 329.18,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.15,262.37 329.09,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.06,262.37 329,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.97,262.37 328.91,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.88,262.37 328.82,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.8,262.37 328.74,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.71,262.37 328.65,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.62,262.37 328.56,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.53,262.37 328.47,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.45,262.37 328.39,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.36,262.37 328.3,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.27,262.37 328.21,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.18,262.37 328.12,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.09,262.37 328.04,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.01,262.37 327.95,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.92,262.37 327.86,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.83,262.37 327.77,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.74,262.37 327.69,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.66,262.37 327.6,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,262.37 337.41,262.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,262.29 337.41,262.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,262.2 337.41,262.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,262.11 337.41,262.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,262.03 337.41,261.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,261.94 337.41,261.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,261.85 337.41,261.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,261.76 337.41,261.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,261.68 337.41,261.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,261.59 337.41,261.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,261.5 337.41,261.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,261.41 337.41,261.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,261.33 337.41,261.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,261.24 337.41,261.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,261.15 337.41,261.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,261.06 337.41,261" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,260.98 337.41,260.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,260.89 337.41,260.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,260.8 337.41,260.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,260.71 337.41,260.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,260.63 337.41,260.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,260.54 337.41,260.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,260.45 337.41,260.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,260.36 337.41,260.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,260.27 337.41,260.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,260.19 337.41,260.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,260.1 337.41,260.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,260.01 337.41,259.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,259.92 337.41,259.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,259.84 337.41,259.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,259.75 337.41,259.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,259.66 337.41,259.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,259.57 337.41,259.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,259.49 337.41,259.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,259.4 337.41,259.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,259.31 337.41,259.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,259.22 337.41,259.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,259.14 337.41,259.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,259.05 337.41,258.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,258.96 337.41,258.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,258.87 337.41,258.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,258.79 337.41,258.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,258.7 337.41,258.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,258.61 337.41,258.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,258.52 337.41,258.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,258.44 337.41,258.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,258.35 337.41,258.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,258.26 337.41,258.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,258.17 337.41,258.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,258.09 337.41,258.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,258 337.41,257.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,257.91 337.41,257.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,257.82 337.41,257.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,257.73 337.41,257.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,257.65 337.41,257.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,257.56 337.41,257.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.41,257.47 337.41,257.42 337.36,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.34,257.42 337.28,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.25,257.42 337.19,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.16,257.42 337.1,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.07,257.42 337.01,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.99,257.42 336.93,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.9,257.42 336.84,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.81,257.42 336.75,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.72,257.42 336.66,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.63,257.42 336.58,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.55,257.42 336.49,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.46,257.42 336.4,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.37,257.42 336.31,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.28,257.42 336.23,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.2,257.42 336.14,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.11,257.42 336.05,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.02,257.42 335.96,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.93,257.42 335.88,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.85,257.42 335.79,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.76,257.42 335.7,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.67,257.42 335.61,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.58,257.42 335.53,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.5,257.42 335.44,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.41,257.42 335.35,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.32,257.42 335.26,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.23,257.42 335.17,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.15,257.42 335.09,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.06,257.42 335,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.97,257.42 334.91,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.88,257.42 334.82,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.8,257.42 334.74,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.71,257.42 334.65,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.62,257.42 334.56,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.53,257.42 334.47,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.45,257.42 334.39,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.36,257.42 334.3,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.27,257.42 334.21,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.18,257.42 334.12,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.09,257.42 334.04,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.01,257.42 333.95,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.92,257.42 333.86,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.83,257.42 333.77,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.74,257.42 333.69,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.66,257.42 333.6,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.57,257.42 333.51,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.48,257.42 333.42,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.39,257.42 333.34,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.31,257.42 333.25,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.22,257.42 333.16,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.13,257.42 333.07,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.04,257.42 332.99,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.96,257.42 332.9,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.87,257.42 332.81,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.78,257.42 332.72,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.69,257.42 332.63,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.61,257.42 332.55,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.52,257.42 332.47,257.42 332.47,257.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,257.5 332.47,257.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,257.59 332.47,257.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,257.68 332.47,257.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,257.76 332.47,257.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,257.85 332.47,257.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,257.94 332.47,258" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,258.03 332.47,258.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,258.11 332.47,258.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,258.2 332.47,258.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,258.29 332.47,258.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,258.38 332.47,258.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,258.46 332.47,258.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,258.55 332.47,258.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,258.64 332.47,258.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,258.73 332.47,258.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,258.82 332.47,258.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,258.9 332.47,258.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,258.99 332.47,259.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,259.08 332.47,259.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,259.17 332.47,259.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,259.25 332.47,259.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,259.34 332.47,259.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,259.43 332.47,259.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,259.52 332.47,259.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,259.6 332.47,259.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,259.69 332.47,259.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,259.78 332.47,259.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,259.87 332.47,259.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,259.95 332.47,260.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,260.04 332.47,260.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,260.13 332.47,260.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,260.22 332.47,260.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,260.3 332.47,260.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,260.39 332.47,260.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,260.48 332.47,260.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,260.57 332.47,260.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,260.65 332.47,260.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,260.74 332.47,260.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,260.83 332.47,260.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,260.92 332.47,260.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,261 332.47,261.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,261.09 332.47,261.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,261.18 332.47,261.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,261.27 332.47,261.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,261.36 332.47,261.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,261.44 332.47,261.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,261.53 332.47,261.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,261.62 332.47,261.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,261.71 332.47,261.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,261.79 332.47,261.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,261.88 332.47,261.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,261.97 332.47,262.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,262.06 332.47,262.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,262.14 332.47,262.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,262.23 332.47,262.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,262.32 332.47,262.37 332.52,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.55,262.37 332.61,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.63,262.37 332.69,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.72,262.37 332.78,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.81,262.37 332.87,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.9,262.37 332.96,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.99,262.37 333.04,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.07,262.37 333.13,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.16,262.37 333.22,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.25,262.37 333.31,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.34,262.37 333.39,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.42,262.37 333.48,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.51,262.37 333.57,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.6,262.37 333.66,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.69,262.37 333.74,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.77,262.37 333.83,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.86,262.37 333.92,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.95,262.37 334.01,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.04,262.37 334.09,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.12,262.37 334.18,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.21,262.37 334.27,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.3,262.37 334.36,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.39,262.37 334.45,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.47,262.37 334.53,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.56,262.37 334.62,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.65,262.37 334.71,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.74,262.37 334.8,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.82,262.37 334.88,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.91,262.37 334.97,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335,262.37 335.06,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.09,262.37 335.15,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.17,262.37 335.23,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.26,262.37 335.32,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.35,262.37 335.41,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.44,262.37 335.5,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.53,262.37 335.58,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.61,262.37 335.67,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.7,262.37 335.76,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.79,262.37 335.85,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.88,262.37 335.93,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.96,262.37 336.02,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.05,262.37 336.11,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.14,262.37 336.2,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.23,262.37 336.28,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.31,262.37 336.37,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.4,262.37 336.46,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.49,262.37 336.55,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.58,262.37 336.63,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.66,262.37 336.72,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.75,262.37 336.81,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.84,262.37 336.9,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.93,262.37 336.99,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.01,262.37 337.07,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.1,262.37 337.16,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.19,262.37 337.25,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.28,262.37 337.34,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.36,262.37 337.41,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.33,259.08 333.55,259.65 333.76,259.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.87,259.43 334.2,259.43 334.2,259.37 334.17,259.32 334.14,259.29 334.09,259.27 334.01,259.27 333.95,259.29 333.9,259.35 333.87,259.43 333.87,259.48 333.9,259.56 333.95,259.62 334.01,259.65 334.09,259.65 334.14,259.62 334.2,259.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.36,259.65 334.36,259.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.36,259.37 334.44,259.29 334.5,259.27 334.58,259.27 334.63,259.29 334.66,259.37 334.66,259.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.2,259.08 335.2,259.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.2,259.35 335.15,259.29 335.09,259.27 335.01,259.27 334.96,259.29 334.9,259.35 334.88,259.43 334.88,259.48 334.9,259.56 334.96,259.62 335.01,259.65 335.09,259.65 335.15,259.62 335.2,259.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.39,259.1 335.42,259.13 335.45,259.1 335.42,259.08 335.39,259.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.42,259.27 335.42,259.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.61,259.65 335.61,259.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.61,259.37 335.69,259.29 335.75,259.27 335.83,259.27 335.88,259.29 335.91,259.37 335.91,259.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.45,259.27 336.45,259.7 336.43,259.78 336.4,259.81 336.34,259.84 336.26,259.84 336.21,259.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.45,259.35 336.4,259.29 336.34,259.27 336.26,259.27 336.21,259.29 336.15,259.35 336.13,259.43 336.13,259.48 336.15,259.56 336.21,259.62 336.26,259.65 336.34,259.65 336.4,259.62 336.45,259.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.19,260.04 333.19,260.61 333.52,260.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.79,260.23 333.74,260.26 333.68,260.31 333.65,260.39 333.65,260.45 333.68,260.53 333.74,260.58 333.79,260.61 333.87,260.61 333.93,260.58 333.98,260.53 334.01,260.45 334.01,260.39 333.98,260.31 333.93,260.26 333.87,260.23 333.79,260.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.5,260.31 334.44,260.26 334.39,260.23 334.31,260.23 334.25,260.26 334.2,260.31 334.17,260.39 334.17,260.45 334.2,260.53 334.25,260.58 334.31,260.61 334.39,260.61 334.44,260.58 334.5,260.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.99,260.23 334.99,260.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.99,260.31 334.93,260.26 334.88,260.23 334.8,260.23 334.74,260.26 334.69,260.31 334.66,260.39 334.66,260.45 334.69,260.53 334.74,260.58 334.8,260.61 334.88,260.61 334.93,260.58 334.99,260.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.26,260.04 335.26,260.5 335.28,260.58 335.34,260.61 335.39,260.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.18,260.23 335.37,260.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.56,260.07 335.58,260.1 335.61,260.07 335.58,260.04 335.56,260.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.58,260.23 335.58,260.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.91,260.23 335.86,260.26 335.8,260.31 335.77,260.39 335.77,260.45 335.8,260.53 335.86,260.58 335.91,260.61 335.99,260.61 336.05,260.58 336.1,260.53 336.13,260.45 336.13,260.39 336.1,260.31 336.05,260.26 335.99,260.23 335.91,260.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.29,260.61 336.29,260.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.29,260.34 336.37,260.26 336.43,260.23 336.51,260.23 336.56,260.26 336.59,260.34 336.59,260.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.22,258.8 329.19,258.74 329.14,258.68 329.08,258.65 328.96,258.65 328.9,258.68 328.84,258.74 328.81,258.8 328.78,258.88 328.78,259.03 328.81,259.12 328.84,259.18 328.9,259.24 328.96,259.27 329.08,259.27 329.14,259.24 329.19,259.18 329.22,259.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.4,259.27 329.4,258.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.4,259.03 329.43,258.94 329.49,258.88 329.55,258.85 329.64,258.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.78,258.85 329.78,259.15 329.81,259.24 329.87,259.27 329.96,259.27 330.02,259.24 330.11,259.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.11,258.85 330.11,259.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.67,258.94 330.64,258.88 330.55,258.85 330.46,258.85 330.37,258.88 330.34,258.94 330.37,259 330.43,259.03 330.58,259.06 330.64,259.09 330.67,259.15 330.67,259.18 330.64,259.24 330.55,259.27 330.46,259.27 330.37,259.24 330.34,259.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.84,259.27 330.84,258.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.84,258.97 330.93,258.88 330.99,258.85 331.08,258.85 331.14,258.88 331.17,258.97 331.17,259.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.09,259.77 329.03,259.71 328.94,259.68 328.83,259.68 328.74,259.71 328.68,259.77 328.68,259.83 328.71,259.88 328.74,259.91 328.8,259.94 328.97,260 329.03,260.03 329.06,260.06 329.09,260.12 329.09,260.21 329.03,260.27 328.94,260.3 328.83,260.3 328.74,260.27 328.68,260.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.27,259.88 329.27,260.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.27,259.97 329.33,259.91 329.39,259.88 329.47,259.88 329.53,259.91 329.59,259.97 329.62,260.06 329.62,260.12 329.59,260.21 329.53,260.27 329.47,260.3 329.39,260.3 329.33,260.27 329.27,260.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.18,259.88 330.18,260.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.18,259.97 330.12,259.91 330.06,259.88 329.97,259.88 329.92,259.91 329.86,259.97 329.83,260.06 329.83,260.12 329.86,260.21 329.92,260.27 329.97,260.3 330.06,260.3 330.12,260.27 330.18,260.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.74,259.97 330.68,259.91 330.62,259.88 330.53,259.88 330.47,259.91 330.42,259.97 330.39,260.06 330.39,260.12 330.42,260.21 330.47,260.27 330.53,260.3 330.62,260.3 330.68,260.27 330.74,260.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.92,260.06 331.27,260.06 331.27,260 331.24,259.94 331.21,259.91 331.15,259.88 331.06,259.88 331,259.91 330.95,259.97 330.92,260.06 330.92,260.12 330.95,260.21 331,260.27 331.06,260.3 331.15,260.3 331.21,260.27 331.27,260.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.47,257.42 332.42,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.39,257.42 332.33,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.3,257.42 332.24,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.21,257.42 332.15,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.12,257.42 332.07,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="332.04,257.42 331.98,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.95,257.42 331.89,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.86,257.42 331.8,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.77,257.42 331.72,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.69,257.42 331.63,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.6,257.42 331.54,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.51,257.42 331.45,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.42,257.42 331.36,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.34,257.42 331.28,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.25,257.42 331.19,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.16,257.42 331.1,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.07,257.42 331.01,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.99,257.42 330.93,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.9,257.42 330.84,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.81,257.42 330.75,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.72,257.42 330.66,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.63,257.42 330.58,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.55,257.42 330.49,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.46,257.42 330.4,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.37,257.42 330.31,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.28,257.42 330.23,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.2,257.42 330.14,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.11,257.42 330.05,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.02,257.42 329.96,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.93,257.42 329.88,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.85,257.42 329.79,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.76,257.42 329.7,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.67,257.42 329.61,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.58,257.42 329.53,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.5,257.42 329.44,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.41,257.42 329.35,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.32,257.42 329.26,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.23,257.42 329.18,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.15,257.42 329.09,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.06,257.42 329,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.97,257.42 328.91,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.88,257.42 328.82,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.8,257.42 328.74,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.71,257.42 328.65,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.62,257.42 328.56,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.53,257.42 328.47,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.45,257.42 328.39,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.36,257.42 328.3,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.27,257.42 328.21,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.18,257.42 328.12,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.09,257.42 328.04,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.01,257.42 327.95,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.92,257.42 327.86,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.83,257.42 327.77,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.74,257.42 327.69,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.66,257.42 327.6,257.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="351.27,287.09 345.27,288.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="373.3,466.34 372.74,464.28 373.35,463.67" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="373.01,465.26 373.38,464.88" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="373.3,466.34 373.9,465.73" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="373.81,463.83 373.78,463.73 373.78,463.49 373.8,463.35 373.87,463.15 374.05,462.97 374.17,462.97 374.24,463.02 374.34,463.17 374.4,463.37 374.4,463.61 374.39,464 374.18,465.45 374.84,464.8" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="374.57,462.45 375.22,461.8 375.3,464.33" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="392,428.6 391.45,426.54 391.87,426.12 392.03,426.07 392.11,426.13 392.21,426.28 392.26,426.47 392.26,426.72 392.24,426.86 392.13,427.1" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="391.71,427.52 392.13,427.1 392.3,427.06 392.37,427.11 392.47,427.26 392.55,427.55 392.55,427.8 392.53,427.94 392.42,428.18 392,428.6" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="393.26,425.35 393.16,425.2 393.01,425.09 392.89,425.09 392.71,425.28 392.64,425.47 392.6,425.76 392.61,426 392.64,426.34 392.77,426.83 392.89,427.08 392.99,427.23 393.14,427.33 393.26,427.34 393.45,427.15 393.51,426.96 393.55,426.67 393.55,426.43" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="393.59,425.02 393.56,424.92 393.55,424.68 393.57,424.53 393.64,424.34 393.83,424.16 393.95,424.16 394.02,424.21 394.12,424.36 394.17,424.56 394.18,424.8 394.16,425.19 393.96,426.64 394.61,425.98" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="394.98,423.38 394.88,423.23 394.72,423.27 394.62,423.36 394.51,423.6 394.49,423.99 394.58,424.53 394.71,425.02 394.86,425.36 395.01,425.47 395.17,425.42 395.22,425.38 395.33,425.14 395.38,424.85 395.34,424.51 395.32,424.41 395.19,424.16 395.05,424.06 394.88,424.1 394.83,424.15 394.72,424.39 394.68,424.68 394.71,425.02" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="324,248.45 323.45,246.38 323.87,245.96 324.03,245.92 324.11,245.97 324.21,246.12 324.26,246.32 324.26,246.56 324.24,246.71 324.13,246.94" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="323.71,247.37 324.13,246.94 324.3,246.9 324.37,246.95 324.47,247.1 324.55,247.4 324.55,247.64 324.53,247.79 324.42,248.03 324,248.45" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="324.74,246.58 325.58,245.74" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="325.92,243.91 325.81,244.15 325.79,244.53 325.88,245.07 325.96,245.37 326.14,245.81 326.31,246.01 326.47,245.97 326.57,245.88 326.68,245.64 326.7,245.25 326.61,244.71 326.53,244.42 326.35,243.97 326.18,243.77 326.02,243.81 325.92,243.91" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="326.68,243.65 326.75,243.46 326.81,243.02 327.36,245.08" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="327.64,243.69 328.48,242.85" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="329.27,240.93 329.12,240.83 328.96,240.87 328.77,241.06 328.66,241.3 328.62,241.59 328.67,241.78 328.77,241.93 328.84,241.99 328.96,241.99 329.29,241.91 329.41,241.91 329.49,241.96 329.59,242.11 329.66,242.41 329.62,242.7 329.51,242.94 329.32,243.12 329.16,243.16 329.01,243.06" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="329.58,240.75 329.64,240.56 329.7,240.13 330.26,242.19" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="328.85,248.9 328.3,246.84 328.72,246.42 328.88,246.38 328.96,246.43 329.06,246.58 329.11,246.78 329.11,247.02 329.09,247.16 328.98,247.4" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="328.56,247.82 328.98,247.4 329.15,247.36 329.22,247.41 329.32,247.56 329.4,247.86 329.4,248.1 329.38,248.24 329.27,248.48 328.85,248.9" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="329.59,247.04 330.43,246.2" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="330.77,244.36 330.66,244.6 330.64,244.99 330.73,245.53 330.81,245.82 330.98,246.27 331.16,246.47 331.32,246.43 331.42,246.33 331.53,246.1 331.55,245.71 331.46,245.17 331.38,244.88 331.2,244.43 331.03,244.23 330.86,244.27 330.77,244.36" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="331.53,244.1 331.6,243.91 331.66,243.48 332.21,245.54" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="332.49,244.14 333.33,243.3" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="334.12,241.39 333.97,241.29 333.81,241.33 333.62,241.52 333.51,241.75 333.46,242.04 333.52,242.24 333.62,242.39 333.69,242.44 333.81,242.45 334.14,242.36 334.26,242.37 334.34,242.42 334.43,242.57 334.51,242.86 334.47,243.15 334.36,243.39 334.17,243.58 334.01,243.62 333.86,243.52" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="334.5,241.26 334.47,241.16 334.47,240.92 334.49,240.77 334.55,240.58 334.74,240.4 334.86,240.4 334.93,240.45 335.03,240.6 335.08,240.8 335.09,241.04 335.08,241.43 334.87,242.88 335.53,242.22" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="350.22,165.74 350.78,163.68 351.35,163.52 351.52,163.57 351.55,163.65 351.57,163.83 351.51,164.03 351.4,164.24 351.31,164.36 351.09,164.5" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="350.51,164.66 351.09,164.5 351.25,164.55 351.29,164.63 351.3,164.81 351.22,165.11 351.11,165.32 351.02,165.44 350.8,165.58 350.22,165.74" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="351.8,164.5 352.95,164.19" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="354.16,162.77 353.94,162.92 353.73,163.25 353.54,163.76 353.46,164.05 353.39,164.53 353.44,164.79 353.61,164.83 353.73,164.8 353.95,164.65 354.16,164.32 354.35,163.81 354.43,163.52 354.5,163.04 354.45,162.78 354.29,162.74 354.16,162.77" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="354.95,162.92 355.1,162.79 355.37,162.45 354.82,164.51" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="355.76,163.44 356.9,163.13" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="357.18,163.88 357.73,161.81 358.07,163.64 358.62,161.57" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="358.58,163.5 359.13,161.44 359.96,161.22" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="358.87,162.42 359.38,162.28" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="358.58,163.5 359.41,163.28" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="367,172.9 366.45,170.84 366.87,170.42 367.03,170.38 367.11,170.43 367.2,170.58 367.26,170.78 367.26,171.02 367.24,171.16 367.13,171.4" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="366.71,171.82 367.13,171.4 367.3,171.36 367.37,171.41 367.47,171.56 367.55,171.86 367.55,172.1 367.53,172.25 367.42,172.48 367,172.9" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="367.74,171.04 368.58,170.2" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="368.92,168.37 368.81,168.6 368.79,168.99 368.88,169.53 368.96,169.83 369.13,170.27 369.31,170.47 369.47,170.43 369.57,170.34 369.68,170.1 369.69,169.71 369.61,169.17 369.53,168.88 369.35,168.43 369.18,168.23 369.01,168.27 368.92,168.37" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="370.13,167.15 369.67,167.62 369.86,168.55 369.88,168.4 369.99,168.17 370.13,168.03 370.3,167.98 370.44,168.09 370.57,168.34 370.62,168.53 370.66,168.87 370.61,169.16 370.5,169.4 370.36,169.54 370.19,169.58 370.12,169.53 370.02,169.38" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="370.82,167.96 371.66,167.12" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="372.28,167.63 371.72,165.56 372.93,166.97 372.38,164.91" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="372.75,164.54 373.54,166.37 373.22,164.07 374,165.9 373.68,163.6" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="351.95,267.18 351.39,265.12 351.81,264.7 351.98,264.66 352.05,264.71 352.15,264.86 352.21,265.05 352.21,265.3 352.19,265.44 352.08,265.68" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="351.66,266.1 352.08,265.68 352.24,265.64 352.32,265.69 352.42,265.84 352.5,266.13 352.5,266.38 352.48,266.52 352.37,266.76 351.95,267.18" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="352.69,265.32 353.53,264.47" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="353.87,262.64 353.76,262.88 353.74,263.27 353.83,263.81 353.9,264.1 354.08,264.55 354.26,264.75 354.42,264.7 354.52,264.61 354.63,264.37 354.64,263.99 354.56,263.45 354.48,263.15 354.3,262.71 354.13,262.51 353.96,262.55 353.87,262.64" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="355.08,261.43 354.62,261.9 354.81,262.83 354.83,262.68 354.94,262.44 355.08,262.3 355.25,262.26 355.39,262.36 355.52,262.61 355.57,262.81 355.6,263.15 355.56,263.44 355.45,263.68 355.31,263.82 355.14,263.86 355.07,263.81 354.97,263.66" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="355.77,262.23 356.61,261.39" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="357.4,259.48 357.26,259.38 357.09,259.42 356.9,259.61 356.79,259.85 356.75,260.14 356.8,260.33 356.9,260.48 356.98,260.53 357.09,260.54 357.43,260.45 357.55,260.46 357.62,260.51 357.72,260.66 357.8,260.95 357.76,261.24 357.64,261.48 357.46,261.67 357.29,261.71 357.14,261.61" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="357.61,258.91 358.39,260.74 358.07,258.44 358.86,260.27 358.54,257.97" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="358.83,258.18 358.9,257.99 358.96,257.55 359.51,259.61" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="352.15,271.88 351.6,269.82 352.02,269.4 352.18,269.36 352.26,269.41 352.36,269.56 352.41,269.76 352.41,270 352.39,270.15 352.28,270.38" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="351.86,270.8 352.28,270.38 352.45,270.34 352.52,270.39 352.62,270.54 352.7,270.84 352.7,271.08 352.68,271.23 352.57,271.46 352.15,271.88" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="352.89,270.02 353.73,269.18" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="354.07,267.35 353.96,267.59 353.94,267.97 354.03,268.51 354.11,268.81 354.29,269.25 354.46,269.45 354.62,269.41 354.72,269.32 354.83,269.08 354.85,268.69 354.76,268.15 354.68,267.86 354.5,267.41 354.33,267.21 354.17,267.25 354.07,267.35" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="355.29,266.13 354.82,266.6 355.01,267.53 355.03,267.39 355.14,267.15 355.28,267.01 355.45,266.97 355.6,267.07 355.72,267.32 355.77,267.51 355.81,267.85 355.77,268.14 355.65,268.38 355.51,268.52 355.35,268.56 355.27,268.51 355.17,268.36" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="355.98,266.94 356.82,266.1" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="357.61,264.19 357.46,264.08 357.29,264.13 357.11,264.31 356.99,264.55 356.95,264.84 357.01,265.04 357.1,265.19 357.18,265.24 357.3,265.24 357.63,265.16 357.75,265.16 357.82,265.22 357.92,265.37 358,265.66 357.96,265.95 357.85,266.19 357.66,266.37 357.49,266.42 357.35,266.31" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="357.81,263.61 358.59,265.44 358.27,263.14 359.06,264.97 358.74,262.68" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="359.11,262.94 359.08,262.84 359.07,262.59 359.1,262.45 359.16,262.26 359.35,262.07 359.47,262.08 359.54,262.13 359.64,262.28 359.69,262.47 359.7,262.72 359.69,263.1 359.48,264.55 360.14,263.9" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="453.65,291.02 453.1,288.96 453.52,288.54 453.69,288.5 453.76,288.55 453.86,288.7 453.91,288.9 453.92,289.14 453.9,289.29 453.79,289.52" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="453.37,289.94 453.79,289.52 453.95,289.48 454.03,289.53 454.12,289.68 454.2,289.98 454.21,290.22 454.19,290.37 454.08,290.6 453.65,291.02" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="454.4,289.16 455.24,288.32" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="455.58,286.49 455.46,286.73 455.45,287.11 455.53,287.65 455.61,287.95 455.79,288.39 455.96,288.59 456.13,288.55 456.22,288.46 456.34,288.22 456.35,287.83 456.27,287.29 456.19,287 456.01,286.55 455.84,286.35 455.67,286.39 455.58,286.49" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="456.79,285.27 456.32,285.74 456.51,286.67 456.53,286.53 456.65,286.29 456.79,286.15 456.96,286.11 457.1,286.21 457.23,286.46 457.28,286.65 457.31,286.99 457.27,287.28 457.16,287.52 457.02,287.66 456.85,287.7 456.78,287.65 456.68,287.5" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="457.48,286.08 458.32,285.24" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="459.11,283.33 458.97,283.22 458.8,283.26 458.61,283.45 458.5,283.69 458.46,283.98 458.51,284.18 458.61,284.33 458.68,284.38 458.8,284.38 459.14,284.3 459.26,284.3 459.33,284.35 459.43,284.5 459.51,284.8 459.47,285.09 459.35,285.33 459.17,285.51 459,285.56 458.85,285.45" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="459.87,284.81 459.31,282.75 459.92,282.14" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="459.58,283.73 459.95,283.36" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="459.87,284.81 460.47,284.21" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="460.31,282.26 460.37,282.07 460.43,281.63 460.99,283.69" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="459.4,291.46 458.85,289.4 459.27,288.98 459.43,288.93 459.51,288.99 459.6,289.14 459.66,289.33 459.66,289.57 459.64,289.72 459.53,289.96" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="459.11,290.38 459.53,289.96 459.7,289.92 459.77,289.97 459.87,290.12 459.95,290.41 459.95,290.66 459.93,290.8 459.82,291.04 459.4,291.46" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="460.14,289.59 460.98,288.75" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="461.32,286.92 461.21,287.16 461.19,287.55 461.28,288.09 461.36,288.38 461.53,288.82 461.71,289.03 461.87,288.98 461.97,288.89 462.08,288.65 462.09,288.26 462.01,287.73 461.93,287.43 461.75,286.99 461.58,286.79 461.41,286.83 461.32,286.92" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="462.53,285.71 462.07,286.17 462.26,287.1 462.28,286.96 462.39,286.72 462.53,286.58 462.7,286.54 462.84,286.64 462.97,286.89 463.02,287.09 463.05,287.43 463.01,287.72 462.9,287.96 462.76,288.1 462.59,288.14 462.52,288.09 462.42,287.94" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="463.22,286.51 464.06,285.67" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="464.85,283.76 464.71,283.66 464.54,283.7 464.36,283.89 464.24,284.12 464.2,284.41 464.25,284.61 464.35,284.76 464.43,284.81 464.55,284.82 464.88,284.73 465,284.74 465.07,284.79 465.17,284.94 465.25,285.23 465.21,285.52 465.1,285.76 464.91,285.95 464.74,285.99 464.6,285.89" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="465.61,285.25 465.06,283.19 465.66,282.58" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="465.32,284.17 465.69,283.79" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="465.61,285.25 466.22,284.64" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="466.12,282.74 466.1,282.64 466.09,282.4 466.11,282.26 466.18,282.06 466.36,281.88 466.48,281.88 466.56,281.93 466.66,282.08 466.71,282.28 466.71,282.52 466.7,282.91 466.5,284.36 467.15,283.71" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="485.88,384.1 485.32,382.03 485.75,381.61 485.91,381.57 485.98,381.62 486.08,381.77 486.14,381.97 486.14,382.21 486.12,382.36 486.01,382.59" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="485.59,383.01 486.01,382.59 486.17,382.55 486.25,382.6 486.35,382.75 486.43,383.05 486.43,383.29 486.41,383.44 486.3,383.67 485.88,384.1" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="486.62,382.23 487.46,381.39" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="487.62,380.23 487.69,380.04 487.75,379.6 488.31,381.67" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="488.73,378.62 488.64,380.47 489.34,379.77" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="488.73,378.62 489.29,380.69" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="489.52,379.34 490.36,378.49" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="490.97,379.01 490.41,376.94 491.62,378.35 491.07,376.29" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="491.99,377.98 491.44,375.92 492.05,375.31" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="491.71,376.9 492.08,376.52" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="491.99,377.98 492.6,377.37" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="492.43,375.42 492.5,375.23 492.56,374.79 493.12,376.86" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="486.65,389.22 486.1,387.16 486.52,386.74 486.69,386.7 486.76,386.75 486.86,386.9 486.91,387.1 486.92,387.34 486.9,387.48 486.78,387.72" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="486.36,388.14 486.78,387.72 486.95,387.68 487.02,387.73 487.12,387.88 487.2,388.18 487.21,388.42 487.19,388.57 487.07,388.8 486.65,389.22" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="487.4,387.36 488.24,386.52" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="488.4,385.36 488.47,385.17 488.53,384.73 489.08,386.8" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="489.51,383.75 489.41,385.59 490.11,384.89" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="489.51,383.75 490.06,385.81" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="490.29,384.46 491.13,383.62" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="491.74,384.13 491.19,382.07 492.4,383.48 491.84,381.42" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="492.77,383.11 492.22,381.04 492.82,380.44" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="492.48,382.03 492.85,381.65" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="492.77,383.11 493.38,382.5" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="493.28,380.6 493.26,380.5 493.25,380.26 493.27,380.12 493.34,379.92 493.52,379.74 493.64,379.74 493.72,379.79 493.82,379.94 493.87,380.14 493.87,380.38 493.86,380.77 493.66,382.22 494.31,381.57" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="371.85,381.39 371.66,379.26 372.15,378.92 372.32,378.91 372.38,378.97 372.46,379.14 372.47,379.34 372.44,379.58 372.39,379.72 372.24,379.93" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="371.75,380.27 372.24,379.93 372.41,379.92 372.47,379.98 372.54,380.15 372.57,380.45 372.53,380.69 372.49,380.83 372.34,381.05 371.85,381.39" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="372.91,379.68 373.88,379" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="374.24,377.89 374.34,377.71 374.48,377.29 374.66,379.42" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="375.61,376.5 375.2,378.29 376.01,377.72" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="375.61,376.5 375.8,378.62" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="376.26,377.33 377.23,376.65" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="377.75,377.26 377.56,375.13 378.5,376.73 378.32,374.6" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="378.75,374.3 379.21,376.24 379.29,373.92 379.75,375.86 379.83,373.54" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="380.08,373.79 380.18,373.62 380.32,373.2 380.5,375.33" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="372.05,386.1 371.86,383.98 372.35,383.64 372.52,383.62 372.58,383.69 372.65,383.85 372.67,384.05 372.63,384.3 372.59,384.43 372.44,384.65" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="371.95,384.99 372.44,384.65 372.61,384.64 372.67,384.7 372.74,384.87 372.77,385.17 372.73,385.41 372.69,385.55 372.53,385.76 372.05,386.1" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="373.1,384.4 374.08,383.72" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="374.44,382.6 374.54,382.43 374.67,382.01 374.86,384.13" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="375.81,381.21 375.39,383.01 376.2,382.44" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="375.81,381.21 376,383.34" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="376.46,382.05 377.43,381.37" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="377.94,381.98 377.76,379.85 378.7,381.45 378.51,379.32" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="378.95,379.02 379.4,380.95 379.49,378.64 379.94,380.57 380.03,378.26" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="380.34,378.57 380.34,378.47 380.37,378.23 380.42,378.09 380.52,377.92 380.73,377.77 380.85,377.79 380.91,377.85 380.98,378.02 381,378.22 380.97,378.46 380.88,378.84 380.43,380.23 381.19,379.7" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="320.63,268.78 321.18,266.72 321.76,266.56 321.92,266.61 321.96,266.69 321.97,266.87 321.92,267.07 321.8,267.28 321.71,267.4 321.49,267.55" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="320.92,267.7 321.49,267.55 321.66,267.59 321.7,267.68 321.71,267.85 321.63,268.15 321.51,268.36 321.42,268.48 321.21,268.63 320.63,268.78" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="322.21,267.54 323.36,267.23" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="324.56,265.81 324.35,265.96 324.14,266.29 323.95,266.8 323.87,267.09 323.8,267.57 323.85,267.83 324.01,267.88 324.14,267.84 324.36,267.69 324.56,267.36 324.76,266.85 324.84,266.56 324.91,266.09 324.86,265.83 324.69,265.78 324.56,265.81" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="326.22,265.37 325.59,265.54 325.28,266.44 325.37,266.33 325.59,266.18 325.78,266.12 325.95,266.17 326.02,266.33 326.01,266.61 325.96,266.81 325.81,267.12 325.63,267.35 325.42,267.5 325.22,267.55 325.06,267.5 325.02,267.42 325.01,267.24" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="326.73,265.23 327.63,264.99 326.18,267.29 327.07,267.05" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="328.01,264.89 328.9,264.65 327.46,266.95 328.35,266.71" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="328.97,265.73 330.12,265.42" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="330.94,264.1 330.71,266.08 331.58,263.93 331.35,265.91 332.22,263.76" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="332.37,264.09 332.52,263.95 332.79,263.61 332.24,265.67" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="320.63,272.95 321.18,270.89 321.76,270.74 321.92,270.78 321.96,270.86 321.97,271.04 321.92,271.24 321.8,271.45 321.71,271.57 321.49,271.72" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="320.92,271.87 321.49,271.72 321.66,271.77 321.7,271.85 321.71,272.03 321.63,272.32 321.51,272.53 321.42,272.65 321.21,272.8 320.63,272.95" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="322.21,271.71 323.36,271.4" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="324.56,269.98 324.35,270.13 324.14,270.46 323.95,270.97 323.87,271.27 323.8,271.74 323.85,272 324.01,272.05 324.14,272.01 324.36,271.86 324.56,271.53 324.76,271.03 324.84,270.73 324.91,270.26 324.86,270 324.69,269.95 324.56,269.98" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="326.22,269.54 325.59,269.71 325.28,270.61 325.37,270.5 325.59,270.35 325.78,270.3 325.95,270.34 326.02,270.51 326.01,270.78 325.96,270.98 325.81,271.29 325.63,271.52 325.42,271.67 325.22,271.72 325.06,271.68 325.02,271.59 325.01,271.42" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="326.73,269.4 327.63,269.16 326.18,271.47 327.07,271.23" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="328.01,269.06 328.9,268.82 327.46,271.12 328.35,270.89" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="328.97,269.9 330.12,269.59" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="330.94,268.28 330.71,270.25 331.58,268.1 331.35,270.08 332.22,267.93" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="332.41,268.34 332.43,268.24 332.55,268.03 332.64,267.91 332.79,267.78 333.05,267.71 333.15,267.78 333.19,267.86 333.2,268.04 333.15,268.23 333.03,268.45 332.82,268.77 331.92,269.93 332.82,269.69" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="277.15,434.15 276.77,435.25 276.69,436.41 276.91,437.54 277.42,438.59 278.18,439.46 279.15,440.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="271.18,436.14 272.28,436.52 273.44,436.6 274.58,436.38 275.62,435.88 276.5,435.11 277.15,434.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="267.91,429.54 267.53,430.64 267.45,431.8 267.67,432.94 268.18,433.98 268.95,434.86 269.91,435.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="261.94,431.54 263.04,431.92 264.2,432 265.34,431.78 266.39,431.27 267.26,430.51 267.91,429.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.86,424.73 281.48,425.82 281.4,426.98 281.62,428.12 282.13,429.16 282.89,430.04 283.85,430.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.89,426.72 276.98,427.1 278.14,427.18 279.28,426.96 280.33,426.45 281.21,425.69 281.86,424.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.62,420.12 272.24,421.22 272.16,422.38 272.38,423.52 272.89,424.56 273.65,425.44 274.61,426.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="266.65,422.12 267.75,422.5 268.91,422.58 270.05,422.35 271.09,421.85 271.97,421.08 272.62,420.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="259.57,370.9 259.57,367.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.57,356.55 259.57,353.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.57,353.21 257.25,353.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.75,381.91 259.75,384.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.75,381.91 259.75,384.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="259.69,332.61 259.69,329.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.37,432.4 292.51,432.25 293.58,431.8 294.49,431.1 295.2,430.19 295.64,429.12 295.79,427.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.79,427.98 295.94,429.12 296.38,430.19 297.08,431.1 298,431.8 299.06,432.25 300.21,432.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.92,155.59 369.37,153.53 369.79,153.11 369.95,153.07 370.03,153.12 370.12,153.27 370.18,153.46 370.18,153.71 370.16,153.85 370.05,154.09" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="369.63,154.51 370.05,154.09 370.22,154.05 370.29,154.1 370.39,154.25 370.47,154.54 370.47,154.79 370.45,154.93 370.34,155.17 369.92,155.59" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="371.18,152.34 371.08,152.19 370.93,152.09 370.81,152.08 370.63,152.27 370.56,152.46 370.52,152.75 370.52,152.99 370.56,153.33 370.69,153.82 370.81,154.07 370.91,154.22 371.06,154.33 371.18,154.33 371.37,154.14 371.43,153.95 371.47,153.66 371.47,153.42" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="371.43,151.96 371.5,151.77 371.56,151.33 372.11,153.4" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="372.17,150.73 372.68,150.21 372.61,151.28 372.75,151.14 372.87,151.14 372.94,151.2 373.07,151.44 373.12,151.64 373.15,151.98 373.11,152.27 373,152.51 372.86,152.65 372.69,152.69 372.62,152.64 372.52,152.49" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="482.32,166.09 481.76,164.03 482.18,163.61 482.35,163.57 482.42,163.62 482.52,163.77 482.58,163.96 482.58,164.21 482.56,164.35 482.45,164.59" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="482.03,165.01 482.45,164.59 482.61,164.55 482.69,164.6 482.79,164.75 482.87,165.04 482.87,165.29 482.85,165.43 482.74,165.67 482.32,166.09" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="483.58,162.84 483.48,162.69 483.33,162.58 483.21,162.58 483.03,162.77 482.96,162.96 482.92,163.25 482.92,163.49 482.96,163.83 483.09,164.32 483.21,164.57 483.31,164.72 483.46,164.82 483.58,164.83 483.76,164.64 483.83,164.45 483.87,164.16 483.87,163.92" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="483.83,162.46 483.9,162.27 483.96,161.83 484.51,163.89" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="485.03,160.76 484.57,161.23 484.76,162.16 484.78,162.01 484.89,161.77 485.03,161.63 485.2,161.59 485.34,161.69 485.47,161.94 485.52,162.14 485.55,162.48 485.51,162.77 485.4,163.01 485.26,163.15 485.09,163.19 485.02,163.14 484.92,162.99" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="546.85,302.89 546.3,300.83 546.91,300.22" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="546.56,301.81 546.94,301.44" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="546.85,302.89 547.46,302.28" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="547.29,300.33 547.36,300.14 547.42,299.71 547.97,301.77" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="548.17,298.96 548.05,299.2 548.06,299.44 548.11,299.64 548.21,299.79 548.33,299.79 548.54,299.71 548.71,299.66 548.86,299.77 548.96,299.92 549.03,300.21 549.04,300.45 549.02,300.6 548.91,300.84 548.72,301.02 548.55,301.07 548.48,301.01 548.38,300.86 548.3,300.57 548.3,300.33 548.34,300.04 548.45,299.8 548.61,299.51 548.68,299.32 548.67,299.08 548.62,298.88 548.52,298.73 548.35,298.77 548.17,298.96" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="554.85,302.61 554.29,300.55 554.9,299.94" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="554.56,301.53 554.93,301.16" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="554.85,302.61 555.45,302.01" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="555.29,300.06 555.35,299.86 555.41,299.43 555.97,301.49" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="556.72,299 556.75,299.34 556.71,299.63 556.6,299.87 556.55,299.91 556.38,299.95 556.24,299.85 556.11,299.6 556.09,299.5 556.05,299.16 556.09,298.87 556.21,298.64 556.25,298.59 556.42,298.55 556.57,298.65 556.72,299 556.85,299.49 556.94,300.02 556.92,300.41 556.81,300.65 556.71,300.74 556.55,300.79 556.45,300.64" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="541.68,358.97 541.13,356.91 541.73,356.3" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="541.39,357.89 541.76,357.52" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="541.68,358.97 542.28,358.36" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="542.19,356.46 542.16,356.37 542.16,356.12 542.18,355.98 542.25,355.79 542.43,355.6 542.55,355.6 542.63,355.66 542.72,355.81 542.78,356 542.78,356.25 542.77,356.63 542.57,358.08 543.22,357.43" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="543.23,354.81 543.11,355.04 543.1,355.43 543.18,355.97 543.26,356.26 543.44,356.71 543.61,356.91 543.78,356.87 543.87,356.77 543.99,356.54 544,356.15 543.92,355.61 543.84,355.32 543.66,354.87 543.49,354.67 543.32,354.71 543.23,354.81" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="515.33,347.34 514.78,345.28 515.2,344.86 515.36,344.82 515.44,344.87 515.54,345.02 515.59,345.21 515.6,345.46 515.57,345.6 515.46,345.84" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="515.04,346.26 515.46,345.84 515.63,345.8 515.7,345.85 515.8,346 515.88,346.29 515.88,346.54 515.86,346.68 515.75,346.92 515.33,347.34" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="516.59,344.09 516.49,343.94 516.34,343.84 516.23,343.83 516.04,344.02 515.97,344.21 515.93,344.5 515.94,344.74 515.97,345.08 516.1,345.57 516.23,345.82 516.33,345.97 516.47,346.07 516.59,346.08 516.78,345.89 516.84,345.7 516.89,345.41 516.88,345.17" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="516.92,343.76 516.89,343.66 516.88,343.42 516.91,343.27 516.97,343.08 517.16,342.9 517.28,342.9 517.35,342.95 517.45,343.1 517.5,343.3 517.51,343.54 517.5,343.93 517.29,345.38 517.95,344.73" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="517.95,342.1 517.84,342.34 517.82,342.73 517.91,343.27 517.99,343.56 518.17,344.01 518.34,344.21 518.51,344.17 518.6,344.07 518.71,343.83 518.73,343.45 518.64,342.91 518.56,342.61 518.39,342.17 518.21,341.97 518.05,342.01 517.95,342.1" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="391.38,137.15 390.83,135.09 391.43,134.48" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="391.09,136.07 391.46,135.7" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="391.38,137.15 391.98,136.54" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="391.82,134.59 391.88,134.4 391.95,133.97 392.5,136.03" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="392.55,133.36 393.07,132.85 393,133.91 393.14,133.77 393.26,133.78 393.33,133.83 393.46,134.08 393.51,134.27 393.54,134.61 393.5,134.9 393.39,135.14 393.25,135.28 393.08,135.32 393.01,135.27 392.91,135.12" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="512.85,165.4 512.3,163.34 512.9,162.73" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="512.56,164.32 512.93,163.94" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="512.85,165.4 513.46,164.79" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="513.29,162.84 513.36,162.65 513.42,162.21 513.97,164.28" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="514.49,161.14 514.02,161.61 514.21,162.54 514.23,162.39 514.35,162.15 514.49,162.01 514.65,161.97 514.8,162.08 514.93,162.32 514.98,162.52 515.01,162.86 514.97,163.15 514.86,163.39 514.72,163.53 514.55,163.57 514.48,163.52 514.38,163.37" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="514.83,364.21 514.27,362.15 514.69,361.73 514.86,361.69 514.93,361.74 515.03,361.89 515.08,362.09 515.09,362.33 515.07,362.48 514.96,362.71" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="514.54,363.13 514.96,362.71 515.12,362.67 515.2,362.72 515.3,362.87 515.37,363.17 515.38,363.41 515.36,363.56 515.25,363.79 514.83,364.21" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="516.09,360.96 515.99,360.81 515.84,360.71 515.72,360.7 515.53,360.89 515.47,361.08 515.43,361.37 515.43,361.62 515.46,361.96 515.6,362.45 515.72,362.7 515.82,362.85 515.97,362.95 516.09,362.95 516.27,362.77 516.34,362.58 516.38,362.29 516.38,362.04" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="516.41,360.64 516.39,360.54 516.38,360.29 516.4,360.15 516.47,359.96 516.65,359.77 516.77,359.78 516.85,359.83 516.95,359.98 517,360.17 517.01,360.42 516.99,360.8 516.79,362.25 517.44,361.6" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="517.27,359.65 517.34,359.46 517.4,359.02 517.95,361.09" style="fill:none;stroke:black;stroke-width:0.5"/>
+</svg>

+ 15349 - 0
src/components/Map/MainMapComponent/images/FifthFloorC.svg

@@ -0,0 +1,15349 @@
+<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="281.51 156.66 229.13 293.42">
+  <title>Produce by Acme CAD Converter</title>
+  <desc>Produce by Acme CAD Converter</desc>
+<polyline points="505.89,256.93 505.89,258.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.76,256.93 507.76,258.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,258.81 507.76,258.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,256.93 507.76,256.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,279.81 507.76,279.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,281.68 507.76,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.76,279.81 507.76,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,279.81 505.89,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,279.81 480.25,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,281.68 482.12,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,279.81 482.12,279.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,279.81 446.21,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.09,279.81 448.09,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,281.68 448.09,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,279.81 448.09,279.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,279.81 412.17,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.05,279.81 414.05,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,281.68 414.05,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,279.81 414.05,279.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,279.81 378.13,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.01,279.81 380.01,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,281.68 380.01,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,279.81 380.01,279.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,279.81 345.97,279.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,281.68 345.97,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.97,279.81 345.97,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,279.81 344.09,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,279.81 311.93,279.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,281.68 311.93,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.93,279.81 311.93,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,279.81 310.05,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,305.45 507.76,305.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,307.32 507.76,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.76,305.45 507.76,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,305.45 505.89,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,305.45 480.25,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,307.32 482.12,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,305.45 482.12,305.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,305.45 446.21,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.09,305.45 448.09,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,307.32 448.09,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,305.45 448.09,305.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,305.45 412.17,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.05,305.45 414.05,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,307.32 414.05,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,305.45 414.05,305.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,305.45 378.13,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.01,305.45 380.01,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,307.32 380.01,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,305.45 380.01,305.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,305.45 345.97,305.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,307.32 345.97,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.97,305.45 345.97,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,305.45 344.09,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,305.45 311.93,305.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,307.32 311.93,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.93,305.45 311.93,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,305.45 310.05,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,331.09 507.76,331.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,332.97 507.76,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.76,331.09 507.76,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,331.09 505.89,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,331.09 480.25,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.12,331.09 482.12,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,332.97 482.12,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,331.09 482.12,331.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,331.09 378.13,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.01,331.09 380.01,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,332.97 380.01,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,331.09 380.01,331.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,331.09 345.97,331.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,332.97 345.97,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.97,331.09 345.97,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,331.09 344.09,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,356.73 508.21,356.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,358.61 508.21,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,356.73 505.89,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,356.73 480.25,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.12,356.73 482.12,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,358.61 482.12,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,356.73 482.12,356.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,356.73 446.21,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.09,356.73 448.09,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,358.61 448.09,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,356.73 448.09,356.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,356.73 412.17,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.05,356.73 414.05,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,358.61 414.05,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,356.73 414.05,356.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,356.73 378.13,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.01,356.73 380.01,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,358.61 380.01,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,356.73 380.01,356.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,356.73 345.97,356.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,358.61 345.97,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.97,356.73 345.97,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,356.73 344.09,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,382.37 507.76,382.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,384.25 507.76,384.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.76,382.37 507.76,384.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,382.37 505.89,384.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,382.37 480.25,384.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.12,382.37 482.12,384.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,384.25 482.12,384.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,382.37 482.12,382.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,408.01 507.74,408.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,409.89 507.76,409.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.74,408.01 507.74,409.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,408.01 505.89,409.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,408.01 480.25,409.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.12,408.01 482.12,409.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,409.89 482.12,409.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,408.01 482.12,408.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,408.01 446.21,409.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.09,408.01 448.09,409.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,409.89 448.09,409.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,408.01 448.09,408.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.63,408.01 311.51,408.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.63,409.89 311.51,409.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.51,408.01 311.51,409.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.63,408.01 309.63,409.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.76,430.88 507.76,432.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.33,432.76 507.76,432.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.33,430.88 507.76,430.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.33,430.88 505.33,432.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.03,172.16 346.02,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.88,170.28 346.33,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.02,171.39 346.33,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,170.28 343.73,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,170.28 343.73,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,170.28 343.73,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.17,170.28 343.73,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.17,170.72 345.88,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.37,254.83 483.78,254.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.83,254.3 490.83,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="489.89,254.3 489.89,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="489.89,254.3 490.83,254.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.74,254.96 490.74,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="489.97,254.96 489.97,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.11,254.52 484.11,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.78,254.52 483.78,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.78,255.63 484.11,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.6,254.52 496.6,255.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.93,254.52 496.93,255.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.79,256.24 503.56,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.79,254.96 502.79,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.56,254.96 503.56,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.71,254.3 502.71,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.65,254.3 503.65,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,261.05 509.73,261.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,261.99 509.73,261.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,261.99 510.39,261.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,261.13 508.46,261.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,261.9 508.46,261.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,267.76 509.06,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,268.09 509.06,268.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,274.72 508.46,274.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,273.95 508.46,273.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,274.81 510.39,273.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,274.81 509.73,274.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,273.87 509.73,273.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,280.91 509.06,280.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,280.58 509.06,280.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,286.69 509.73,286.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,287.63 509.73,287.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,287.63 510.39,286.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,286.77 508.46,286.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,287.54 508.46,287.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,293.4 509.06,293.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,293.73 509.06,293.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="489.97,255.63 489.97,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="489.97,256.24 490.74,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.14,256.24 489.97,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.11,255.63 484.11,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="489.97,255.63 484.11,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.97,254.96 484.11,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.33,255.38 489.75,255.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.33,255.21 489.75,255.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.75,255.63 489.97,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.97,255.63 489.97,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.97,254.96 489.75,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.75,254.96 489.75,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.11,255.63 484.33,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.33,255.63 484.33,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.33,254.96 484.11,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.11,254.96 484.11,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.6,255.62 496.93,255.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.6,255.63 496.93,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.6,254.96 496.6,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.74,254.96 490.74,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.6,254.96 490.74,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.6,255.63 490.74,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.97,255.38 496.38,255.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.97,255.21 496.38,255.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.38,255.63 496.6,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.6,255.63 496.6,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.6,254.96 496.38,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.38,254.96 496.38,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.74,255.63 490.97,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.97,255.63 490.97,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.97,254.96 490.74,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.74,254.96 490.74,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="502.79,255.63 502.79,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.71,254.3 503.65,254.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.93,255.63 496.93,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.79,255.63 496.93,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="502.79,254.96 496.93,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.15,255.38 502.57,255.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.15,255.21 502.57,255.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="502.57,255.63 502.79,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="502.79,255.63 502.79,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="502.79,254.96 502.57,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="502.57,254.96 502.57,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.93,255.63 497.15,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.15,255.63 497.15,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.15,254.96 496.93,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.93,254.96 496.93,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.56,255.63 503.79,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.79,255.63 503.79,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.79,254.96 503.56,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.56,254.96 503.56,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="502.71,254.96 502.79,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.56,254.96 503.65,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,261.13 509.06,261.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,255.63 509.73,261.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,255.49 509.06,261.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,261.13 509.73,260.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,260.91 509.06,260.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,260.91 509.06,261.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,261.13 509.73,261.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,267.76 509.06,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,267.76 509.06,268.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,267.76 509.73,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,261.9 509.73,261.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,261.9 508.46,261.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,267.76 509.73,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,261.9 509.06,267.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,261.9 509.73,267.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,267.54 509.48,262.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,267.54 509.31,262.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,262.12 509.73,261.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,261.9 509.06,261.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,261.9 509.06,262.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,262.12 509.73,262.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,267.76 509.73,267.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,267.54 509.06,267.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,267.54 509.06,267.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,267.76 509.73,267.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,268.09 509.73,268.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,268.09 509.06,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,273.95 509.73,273.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,268.09 509.06,273.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,268.09 509.73,273.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,273.73 509.48,268.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,273.73 509.31,268.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,268.31 509.73,268.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,268.09 509.06,268.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,268.09 509.06,268.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,268.31 509.73,268.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,273.95 509.73,273.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,273.73 509.06,273.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,273.73 509.06,273.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,273.95 509.73,273.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,280.58 509.06,280.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,280.58 509.06,280.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,280.58 509.73,280.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,274.72 508.46,273.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,274.72 509.73,274.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,280.58 509.73,280.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,274.72 509.06,280.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,274.72 509.73,280.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,280.36 509.48,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,280.36 509.31,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,274.94 509.73,274.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,274.72 509.06,274.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,274.72 509.06,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,274.94 509.73,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,280.58 509.73,280.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,280.36 509.06,280.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,280.36 509.06,280.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,280.58 509.73,280.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,280.91 509.73,280.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,280.91 509.06,280.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,286.77 509.73,286.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,280.91 509.06,286.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,280.91 509.73,286.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,286.55 509.48,281.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,286.55 509.31,281.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,281.13 509.73,280.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,280.91 509.06,280.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,280.91 509.06,281.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,281.13 509.73,281.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,286.77 509.73,286.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,286.55 509.06,286.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,286.55 509.06,286.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,286.77 509.73,286.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,293.4 509.06,293.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,293.4 509.73,293.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,287.54 509.73,287.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,287.54 508.46,286.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,293.4 509.73,293.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,287.54 509.06,293.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,287.54 509.73,293.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,293.18 509.48,287.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,293.18 509.31,287.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,287.76 509.73,287.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,287.54 509.06,287.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,287.54 509.06,287.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,287.76 509.73,287.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,293.4 509.73,293.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,293.18 509.06,293.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,293.18 509.06,293.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,293.4 509.73,293.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,293.73 509.73,293.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,293.73 509.06,293.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,299.59 509.73,299.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,293.73 509.06,299.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,293.73 509.73,299.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,299.37 509.48,293.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,299.37 509.31,293.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,293.95 509.73,293.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,293.73 509.06,293.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,293.73 509.06,293.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,293.95 509.73,293.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,299.59 509.73,299.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,299.37 509.06,299.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,299.37 509.06,299.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,299.59 509.73,299.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,376.51 509.73,376.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,376.29 509.07,376.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,376.29 509.07,376.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,376.51 509.73,376.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,370.87 509.73,370.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,370.65 509.07,370.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,370.65 509.07,370.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,370.87 509.73,370.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,376.29 509.48,370.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,376.29 509.31,370.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,370.65 509.73,376.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,370.65 509.07,376.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,376.51 509.73,376.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.2,370.65 509.2,370.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.2,370.65 509.87,370.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,370.32 509.73,370.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,370.1 509.07,370.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,370.1 509.07,370.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,370.32 509.73,370.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,364.68 509.73,364.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,364.46 509.07,364.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,364.46 509.07,364.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,364.68 509.73,364.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,370.1 509.48,364.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,370.1 509.31,364.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,364.46 509.73,370.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,364.46 509.07,370.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.2,370.32 509.87,370.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,364.46 508.46,363.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,364.46 509.73,364.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.87,370.32 509.87,370.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,370.32 509.07,370.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,363.69 509.73,363.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,363.47 509.07,363.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,363.47 509.07,363.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,363.69 509.73,363.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,358.05 509.73,357.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,357.83 509.07,357.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,357.83 509.07,358.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,358.05 509.73,358.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,363.47 509.48,358.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,363.47 509.31,358.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,357.83 509.73,363.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,357.83 509.07,363.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,363.69 509.73,363.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.2,357.83 509.87,357.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.2,357.5 509.87,357.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.87,357.5 509.87,357.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.2,357.5 509.2,357.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,370.65 509.07,370.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,370.32 509.07,370.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,364.46 508.46,364.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,363.69 508.46,363.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,364.55 510.39,363.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,364.55 509.73,364.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,363.61 509.73,363.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.12,357.5 509.07,357.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.12,357.83 509.07,357.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,357.83 509.07,357.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.21,356.73 508.21,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,363.69 508.46,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,376.43 509.73,376.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,377.37 509.73,377.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,377.37 510.39,376.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,376.51 508.46,376.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,377.28 508.46,377.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,383.14 509.07,383.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,383.47 509.07,383.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,376.51 509.73,376.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,383.14 509.07,383.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,383.14 509.73,383.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,377.28 509.73,377.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,383.14 509.73,383.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,377.28 509.07,383.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,377.28 509.73,383.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,382.92 509.48,377.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,382.92 509.31,377.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,377.5 509.73,377.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,377.28 509.07,377.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,377.28 509.07,377.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,377.5 509.73,377.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,383.14 509.73,382.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,382.92 509.07,382.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,382.92 509.07,383.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,383.14 509.73,383.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,383.47 509.73,383.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,383.47 509.07,383.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,389.33 509.73,389.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,383.47 509.07,389.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,383.47 509.73,389.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,389.11 509.48,383.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,389.11 509.31,383.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,383.69 509.73,383.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,383.47 509.07,383.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,383.47 509.07,383.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,383.69 509.73,383.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,389.33 509.73,389.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,389.11 509.07,389.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,389.11 509.07,389.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,389.33 509.73,389.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.46,390.1 508.46,402.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,402.15 509.73,401.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,401.93 509.07,401.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,401.93 509.07,402.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,402.15 509.73,402.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,396.51 509.73,396.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,396.29 509.07,396.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,396.29 509.07,396.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,396.51 509.73,396.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,401.93 509.48,396.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,401.93 509.31,396.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,396.29 509.73,402.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,396.29 509.07,402.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,402.15 509.73,402.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,396.29 509.07,395.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,396.29 509.73,396.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,395.96 509.73,395.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,395.74 509.07,395.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,395.74 509.07,395.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,395.96 509.73,395.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,390.32 509.73,390.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,390.1 509.07,390.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,390.1 509.07,390.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,390.32 509.73,390.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,395.74 509.48,390.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,395.74 509.31,390.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,390.1 509.73,395.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,390.1 509.07,395.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,395.96 509.73,395.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,390.1 508.46,389.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,390.1 509.73,390.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,395.96 509.73,395.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,395.96 509.07,396.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,389.33 509.73,389.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,396.29 509.07,396.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,395.96 509.07,395.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,390.1 508.46,390.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,389.33 508.46,389.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,390.19 510.39,389.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,390.19 509.73,390.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,389.25 509.73,389.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,389.33 509.73,389.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,402.15 509.73,402.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,402.07 509.73,402.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,403.01 509.73,403.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,403.01 510.39,402.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,402.15 508.46,402.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,402.92 508.46,402.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,408.78 509.07,408.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,409.11 509.07,409.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,402.15 509.73,402.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,408.78 509.07,409.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,408.78 509.73,408.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,402.92 509.73,402.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,402.92 508.46,402.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,408.78 509.73,408.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,402.92 509.07,408.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,402.92 509.73,408.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,408.56 509.48,403.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,408.56 509.31,403.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,403.14 509.73,402.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,402.92 509.07,402.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,402.92 509.07,403.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,403.14 509.73,403.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,408.78 509.73,408.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,408.56 509.07,408.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,408.56 509.07,408.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,408.78 509.73,408.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,409.11 509.73,409.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,402.15 509.73,402.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,409.11 509.07,409.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,409.11 509.07,408.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,409.11 509.07,409.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.56,434.72 503.65,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.71,434.72 502.79,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.56,434.06 503.79,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.79,434.06 503.79,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.79,434.72 503.56,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.56,434.72 503.56,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,434.06 503.56,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,434.72 509.42,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.93,434.06 497.15,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.15,434.06 497.15,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.15,434.72 496.93,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.93,434.72 496.93,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="502.57,434.06 502.79,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="502.79,434.06 502.79,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="502.79,434.72 502.57,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="502.57,434.72 502.57,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.15,434.31 502.57,434.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.15,434.48 502.57,434.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="502.79,434.72 496.93,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="502.79,434.06 496.93,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.93,434.06 496.93,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.71,435.39 503.65,435.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.79,434.06 502.79,434.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.74,434.06 490.97,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.97,434.06 490.97,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.97,434.72 490.74,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.74,434.72 490.74,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.38,434.06 496.6,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.6,434.06 496.6,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.6,434.72 496.38,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.38,434.72 496.38,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.97,434.31 496.38,434.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.97,434.48 496.38,434.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.6,434.06 490.74,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.6,434.72 490.74,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.74,434.72 490.74,434.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.6,434.72 496.6,434.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.6,434.06 496.93,434.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.6,434.07 496.93,434.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.11,434.06 484.33,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.33,434.06 484.33,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.33,434.72 484.11,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.11,434.72 484.11,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.75,434.06 489.97,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.97,434.06 489.97,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.97,434.72 489.75,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.75,434.72 489.75,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.33,434.31 489.75,434.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.33,434.48 489.75,434.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.97,434.72 484.11,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.97,434.06 484.11,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.11,434.06 484.11,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.18,433.45 489.97,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="489.97,433.45 490.74,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="489.97,434.06 489.97,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.78,434.06 483.78,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.56,433.45 508.46,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,434.42 509.73,434.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,434.42 509.73,434.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,434.75 509.75,434.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.42,435.17 509.42,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.75,435.17 509.75,434.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.65,435.39 503.65,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.71,435.39 502.71,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.56,434.72 503.56,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.79,434.72 502.79,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.79,433.45 503.56,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.93,435.17 496.93,434.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.6,435.17 496.6,434.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.78,434.06 484.11,434.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.78,435.17 483.78,434.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.11,435.17 484.11,434.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="489.97,434.72 489.97,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.74,434.72 490.74,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="489.89,435.39 490.83,435.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="489.89,435.39 489.89,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.83,435.39 490.83,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.76,432.76 507.76,430.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,428.76 509.06,428.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,428.56 509.06,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,428.78 509.73,428.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,428.56 509.06,428.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,428.56 509.06,428.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,428.78 509.73,428.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.65,434.72 307.76,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.09,434.06 307.76,434.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.09,434.06 308.09,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="307.76,434.72 307.53,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.53,434.72 307.53,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.53,434.06 307.76,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.76,434.06 307.76,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="302.12,434.72 301.9,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.9,434.72 301.9,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.9,434.06 302.12,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="302.12,434.06 302.12,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.53,434.47 302.12,434.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.53,434.3 302.12,434.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.9,434.72 307.76,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.9,434.06 307.76,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.76,434.06 307.76,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.9,433.45 301.12,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.9,434.06 301.9,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="307.76,434.72 307.76,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="307.76,434.06 308.09,434.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="307.76,434.06 307.76,434.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.12,434.72 300.9,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.9,434.72 300.9,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.9,434.06 301.12,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.12,434.06 301.12,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.12,434.72 301.12,434.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.96,428.56 294.96,428.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.96,427.71 294.96,427.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.63,428.56 295.63,428.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,428.78 294.96,428.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,428.78 294.96,428.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,428.56 295.63,428.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,434.06 295.63,428.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,422.25 295.63,422.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,422.47 294.96,422.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,422.47 294.96,422.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,422.25 295.63,422.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,427.57 295.63,427.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,427.79 294.96,427.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,427.79 294.96,427.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,427.57 295.63,427.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.21,422.47 295.21,427.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.38,422.47 295.38,427.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,427.79 294.96,421.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.3,427.71 294.3,428.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.63,427.79 295.63,427.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.63,416.93 295.63,417.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,417.15 294.96,417.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,417.15 294.96,416.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,416.93 295.63,416.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.21,417.15 295.21,422.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.38,417.15 295.38,422.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,422.79 294.96,416.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,416.93 295.63,416.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.63,413.56 295.63,413.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,413.78 294.97,413.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.97,413.78 294.97,413.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.97,413.56 295.63,413.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.21,409.06 295.21,413.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.38,409.06 295.38,413.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.97,413.78 294.97,409.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.9,433.45 307.76,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.09,435.16 308.09,434.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="307.76,435.16 307.76,434.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.12,433.45 296.35,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.9,434.72 301.9,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.12,434.72 301.12,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.98,435.38 301.04,435.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.98,435.38 301.98,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.04,435.38 301.04,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.3,428.65 294.96,428.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.3,427.71 294.96,427.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.96,428.56 296.23,428.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.96,427.79 296.23,427.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.23,427.79 296.23,428.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.22,413.78 296.35,413.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.22,416.93 296.35,416.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="307.76,434.06 307.76,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.09,434.06 307.76,434.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="307.76,435.16 307.76,434.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.69,434.86 308.09,434.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.63,383.47 295.63,383.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,383.69 294.96,383.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,383.69 294.96,383.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,383.47 295.63,383.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,268.09 282.45,268.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,267.76 282.45,267.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,267.54 283.11,267.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,267.54 283.11,267.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,267.76 282.45,267.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,262.12 282.45,261.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,261.9 283.11,261.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,261.9 283.11,262.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,262.12 282.45,262.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.7,267.54 282.7,262.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,267.54 282.86,262.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,261.9 282.45,267.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,261.9 283.11,267.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,267.76 282.45,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,261.9 283.72,261.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,261.9 282.45,261.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,267.76 282.45,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,267.76 283.11,268.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,267.76 283.11,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,261.13 282.45,260.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,260.91 283.11,260.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,260.91 283.11,261.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,261.13 282.45,261.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,255.85 282.45,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,255.63 283.11,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,255.63 283.11,255.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,255.85 282.45,255.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,255.49 283.11,261.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,255.63 282.45,261.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,261.13 283.11,261.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.61,254.97 288.53,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.47,254.97 289.38,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.61,255.63 288.39,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.39,255.63 288.39,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.39,254.97 288.61,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.61,254.97 288.61,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.33,255.63 283.11,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,255.63 283.11,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,254.97 283.33,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.33,254.97 283.33,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,255.63 288.61,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,254.97 288.61,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.24,255.63 295.02,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.02,255.63 295.02,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.02,254.97 295.24,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.24,254.97 295.24,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.6,255.63 289.38,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.38,255.63 289.38,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.38,254.97 289.6,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.6,254.97 289.6,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.02,255.38 289.6,255.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.02,255.21 289.6,255.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.38,254.97 295.24,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.38,255.63 295.24,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.24,255.63 295.24,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.47,254.3 288.53,254.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.38,255.63 289.38,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.43,255.63 301.21,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.21,255.63 301.21,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.21,254.97 301.43,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.43,254.97 301.43,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.79,255.63 295.57,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.57,255.63 295.57,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.57,254.97 295.79,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.79,254.97 295.79,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.21,255.38 295.79,255.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.21,255.21 295.79,255.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.57,255.63 301.43,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.57,254.97 301.43,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.43,254.97 301.43,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.57,254.97 295.57,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.57,255.63 295.24,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.57,255.62 295.24,255.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.06,255.63 307.84,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.84,255.63 307.84,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.84,254.97 308.06,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.06,254.97 308.06,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="302.42,255.63 302.2,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="302.2,255.63 302.2,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="302.2,254.97 302.42,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="302.42,254.97 302.42,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.84,255.38 302.42,255.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.84,255.21 302.42,255.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="302.2,254.97 308.06,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="302.2,255.63 308.06,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.06,255.63 308.06,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.03,256.24 302.2,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.2,256.24 301.43,256.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.2,255.63 302.2,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,268.09 283.11,268.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,267.76 283.11,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.61,256.24 283.72,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,261.9 283.72,261.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,261.13 283.72,261.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,261.99 281.78,261.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,261.99 282.45,261.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,261.05 282.45,261.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.53,254.3 288.53,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.47,254.3 289.47,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.61,254.97 288.61,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.38,254.97 289.38,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.38,256.24 288.61,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.24,254.53 295.24,255.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.57,254.53 295.57,255.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.39,255.63 308.03,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.39,254.53 308.39,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.06,254.53 308.06,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.2,254.97 302.2,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.43,254.97 301.43,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.29,254.3 301.35,254.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.29,254.3 302.29,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.35,254.3 301.35,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="343.73,170.28 343.73,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.88,170.28 345.88,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.17,170.28 344.17,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.03,171.39 344.03,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.02,171.39 346.02,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.98,171.39 311.98,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.84,170.28 311.84,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.29,170.28 312.29,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,170.72 311.84,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.98,171.39 312.29,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.84,170.28 312.29,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.26,171.39 320.26,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.82,171.39 319.82,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.79,171.39 327.79,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.23,171.39 328.23,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.2,171.39 336.2,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.76,171.39 335.76,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.82,171.39 320.26,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.82,171.39 320.26,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.82,170.72 319.82,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.82,170.72 312.29,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.82,171.39 312.29,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.51,171.16 319.59,171.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.51,170.94 319.59,170.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.59,171.39 319.82,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.82,171.39 319.82,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.82,170.72 319.59,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.59,170.72 319.59,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.29,171.39 312.51,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.51,171.39 312.51,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.51,170.72 312.29,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.29,170.72 312.29,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.79,170.72 327.79,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.79,171.39 328.23,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.79,171.39 328.23,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.26,170.72 320.26,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.79,170.72 320.26,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.79,171.39 320.26,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="320.48,171.16 327.57,171.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="320.48,170.94 327.57,170.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.57,171.39 327.79,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.79,171.39 327.79,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.79,170.72 327.57,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.57,170.72 327.57,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="320.26,171.39 320.48,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="320.48,171.39 320.48,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="320.48,170.72 320.26,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="320.26,170.72 320.26,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.76,170.72 335.76,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.76,171.39 336.2,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.76,171.39 336.2,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.23,170.72 328.23,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.76,170.72 328.23,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.76,171.39 328.23,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.45,171.16 335.54,171.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.45,170.94 335.54,170.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.54,171.39 335.76,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.76,171.39 335.76,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.76,170.72 335.54,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.54,170.72 335.54,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.23,171.39 328.45,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.45,171.39 328.45,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.45,170.72 328.23,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.23,170.72 328.23,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.73,171.39 344.03,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.2,170.72 336.2,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="343.73,170.72 336.2,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.73,171.39 336.2,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.42,171.16 343.51,171.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.42,170.94 343.51,170.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.51,171.39 343.73,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.73,171.39 343.73,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.73,170.72 343.51,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.51,170.72 343.51,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.2,171.39 336.42,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.42,171.39 336.42,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.42,170.72 336.2,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.2,170.72 336.2,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="346.55,171.16 353.63,171.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="346.55,170.94 353.63,170.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.86,171.39 346.33,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.86,170.72 346.33,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="346.33,171.39 346.55,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="346.55,171.39 346.55,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="346.55,170.72 346.33,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="346.33,170.72 346.33,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.77,171.39 370.24,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="377.77,170.72 370.24,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="370.24,170.72 370.24,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="377.77,171.39 378.07,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="377.77,170.72 377.77,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.8,171.39 362.27,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.8,170.72 362.27,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="362.27,170.72 362.27,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.8,171.39 370.24,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.8,171.39 370.24,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.8,170.72 369.8,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.3,171.39 354.52,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.52,171.39 354.52,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.52,170.72 354.3,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.3,170.72 354.3,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.3,170.72 354.3,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.83,171.39 362.27,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.83,171.39 362.27,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.83,170.72 361.83,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.63,171.39 353.86,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.86,171.39 353.86,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.86,170.72 353.63,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.63,170.72 353.63,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.86,170.72 353.86,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.86,171.39 354.3,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.86,171.39 354.3,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.8,171.39 369.8,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="370.24,171.39 370.24,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="362.27,171.39 362.27,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.83,171.39 361.83,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.86,171.39 353.86,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.3,171.39 354.3,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.21,170.28 378.21,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.92,170.28 379.92,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.21,170.72 379.92,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.21,170.28 377.77,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.07,171.39 377.77,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,170.28 377.77,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,170.28 377.77,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,170.28 377.77,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.06,171.39 380.37,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.92,170.28 380.37,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.06,171.39 380.06,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.07,171.39 378.07,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.07,172.16 380.06,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="413.96,170.28 414.4,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.1,171.39 414.4,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,170.28 411.81,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,170.28 411.81,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,170.28 411.81,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.25,170.28 411.81,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.25,170.72 413.96,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="413.96,170.28 413.96,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.25,170.28 412.25,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.34,171.39 388.34,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.89,171.39 387.89,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.87,171.39 395.87,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.31,171.39 396.31,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="404.28,171.39 404.28,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="403.84,171.39 403.84,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.89,171.39 388.34,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.89,171.39 388.34,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.89,170.72 387.89,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.67,171.39 387.89,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.89,171.39 387.89,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.89,170.72 387.67,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.67,170.72 387.67,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.87,170.72 395.87,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.87,171.39 396.31,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.87,171.39 396.31,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.34,170.72 388.34,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.87,170.72 388.34,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.87,171.39 388.34,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.56,171.16 395.64,171.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.56,170.94 395.64,170.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.64,171.39 395.87,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.87,171.39 395.87,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.87,170.72 395.64,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.64,170.72 395.64,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.34,171.39 388.56,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.56,171.39 388.56,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.56,170.72 388.34,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.34,170.72 388.34,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.84,170.72 403.84,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="403.84,171.39 404.28,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="403.84,171.39 404.28,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.31,170.72 396.31,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="403.84,170.72 396.31,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.84,171.39 396.31,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.53,171.16 403.62,171.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.53,170.94 403.62,170.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.62,171.39 403.84,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.84,171.39 403.84,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.84,170.72 403.62,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.62,170.72 403.62,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.31,171.39 396.53,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.53,171.39 396.53,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.53,170.72 396.31,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.31,170.72 396.31,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.81,170.72 411.81,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="411.81,171.39 412.11,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="404.28,170.72 404.28,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="411.81,170.72 404.28,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.81,171.39 404.28,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="404.5,171.16 411.59,171.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="404.5,170.94 411.59,170.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.59,171.39 411.81,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.81,171.39 411.81,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.81,170.72 411.59,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.59,170.72 411.59,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="404.28,171.39 404.5,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="404.5,171.39 404.5,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="404.5,170.72 404.28,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="404.28,170.72 404.28,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.11,172.16 414.1,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.11,171.39 412.11,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.1,171.39 414.1,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.89,170.72 380.37,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.89,171.39 380.37,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.59,171.16 387.67,171.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.59,170.94 387.67,170.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.37,171.39 380.59,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.59,171.39 380.59,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.59,170.72 380.37,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.37,170.72 380.37,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.14,171.39 448.14,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.15,171.39 446.15,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.32,171.39 438.54,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.54,171.39 438.54,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.54,170.72 438.32,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.32,170.72 438.32,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.63,171.39 445.85,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.85,171.39 445.85,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.85,170.72 445.63,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.63,170.72 445.63,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.54,171.16 445.63,171.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.54,170.94 445.63,170.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.85,171.39 438.32,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.85,170.72 438.32,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.32,170.72 438.32,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="445.85,171.39 446.15,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="445.85,170.72 445.85,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="430.35,171.39 430.57,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.57,171.39 430.57,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.57,170.72 430.35,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.35,170.72 430.35,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.66,171.39 437.88,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.88,171.39 437.88,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.88,170.72 437.66,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.66,170.72 437.66,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.57,171.16 437.66,171.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.57,170.94 437.66,170.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.88,171.39 430.35,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.88,170.72 430.35,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.35,170.72 430.35,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.88,171.39 438.32,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.88,171.39 438.32,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.88,170.72 437.88,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="422.38,171.39 422.6,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="422.6,171.39 422.6,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="422.6,170.72 422.38,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="422.38,170.72 422.38,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.68,171.39 429.91,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.91,171.39 429.91,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.91,170.72 429.68,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.68,170.72 429.68,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="422.6,171.16 429.68,171.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="422.6,170.94 429.68,170.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.91,171.39 422.38,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.91,170.72 422.38,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="422.38,170.72 422.38,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.91,171.39 430.35,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.91,171.39 430.35,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.91,170.72 429.91,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.71,171.39 421.93,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.93,171.39 421.93,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.93,170.72 421.71,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.71,170.72 421.71,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.93,170.72 421.93,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.93,171.39 422.38,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.93,171.39 422.38,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.88,171.39 437.88,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.32,171.39 438.32,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="430.35,171.39 430.35,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.91,171.39 429.91,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.93,171.39 421.93,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="422.38,171.39 422.38,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.29,170.28 446.29,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448,170.28 448,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.44,170.28 448.44,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="445.85,170.28 445.85,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.29,170.72 448,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.15,171.39 445.85,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.29,170.28 445.85,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.14,171.39 448.44,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448,170.28 448.44,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.4,171.39 414.63,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.63,171.39 414.63,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.63,170.72 414.4,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.4,170.72 414.4,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.63,171.16 421.71,171.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.63,170.94 421.71,170.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.93,171.39 414.4,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.93,170.72 414.4,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.97,170.72 448.44,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.97,171.39 448.44,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.67,171.16 455.75,171.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.67,170.94 455.75,170.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.44,171.39 448.67,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.67,171.39 448.67,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.67,170.72 448.44,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.44,170.72 448.44,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.97,170.47 455.97,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.94,170.47 463.94,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="464.39,170.47 464.39,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.36,170.47 472.36,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.92,170.47 471.92,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.97,170.72 455.97,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.75,171.39 455.97,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.97,171.39 455.97,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.97,170.72 455.75,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.75,170.72 455.75,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.18,434.89 482.18,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.19,433.45 482.18,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.33,436.58 480.33,436.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.04,436.58 482.04,436.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.48,436.58 482.48,434.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.19,435.47 480.19,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.89,435.47 472.36,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.89,436.13 472.36,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.36,436.13 472.36,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.89,435.47 480.19,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.89,436.13 479.89,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="464.39,435.47 464.61,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.61,435.47 464.61,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.61,436.13 464.39,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.39,436.13 464.39,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.69,435.47 471.92,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.92,435.47 471.92,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.92,436.13 471.69,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.69,436.13 471.69,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.61,435.69 471.69,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.61,435.91 471.69,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.92,435.47 464.39,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.92,436.13 464.39,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.39,436.13 464.39,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.92,435.47 472.36,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.92,435.47 472.36,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.92,436.13 471.92,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.94,435.47 456.42,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.94,436.13 456.42,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.42,436.13 456.42,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.94,435.47 464.39,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.94,435.47 464.39,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.94,436.13 463.94,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.97,436.13 455.97,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.97,435.47 456.42,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.97,435.47 456.42,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.92,435.47 471.92,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.36,435.47 472.36,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="464.39,435.47 464.39,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.94,435.47 463.94,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.97,435.47 455.97,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.42,435.47 456.42,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.89,436.58 479.89,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.19,435.47 479.89,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.97,435.47 448.44,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.97,436.13 448.44,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.93,436.13 414.4,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.93,435.47 414.4,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.14,435.47 448.44,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.15,435.47 445.85,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="445.85,436.58 445.85,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.44,436.58 448.44,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448,436.58 448,436.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.29,436.58 446.29,436.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="422.38,435.47 422.38,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.93,435.47 421.93,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.91,435.47 429.91,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="430.35,435.47 430.35,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.32,435.47 438.32,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.88,435.47 437.88,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.93,435.47 422.38,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.93,435.47 422.38,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.93,436.13 421.93,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.91,436.13 429.91,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.91,435.47 430.35,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.91,435.47 430.35,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="422.38,436.13 422.38,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.91,436.13 422.38,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.91,435.47 422.38,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="422.6,435.69 429.68,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="422.6,435.91 429.68,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.68,435.47 429.91,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.91,435.47 429.91,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.91,436.13 429.68,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.68,436.13 429.68,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="422.38,435.47 422.6,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="422.6,435.47 422.6,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="422.6,436.13 422.38,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="422.38,436.13 422.38,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.88,436.13 437.88,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.88,435.47 438.32,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.88,435.47 438.32,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="430.35,436.13 430.35,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.88,436.13 430.35,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.88,435.47 430.35,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.57,435.69 437.66,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.57,435.91 437.66,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.66,435.47 437.88,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.88,435.47 437.88,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.88,436.13 437.66,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.66,436.13 437.66,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.35,435.47 430.57,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.57,435.47 430.57,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.57,436.13 430.35,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.35,436.13 430.35,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.85,436.13 445.85,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="445.85,435.47 446.15,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.32,436.13 438.32,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="445.85,436.13 438.32,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.85,435.47 438.32,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="446.15,433.04 448.14,433.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.15,435.47 446.15,433.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.14,435.47 448.14,433.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.67,435.47 380.24,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.89,436.13 380.46,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.81,435.47 404.28,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.81,436.13 404.28,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="404.28,436.13 404.28,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="411.81,435.47 412.11,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="411.81,436.13 411.81,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.31,435.47 396.53,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.53,435.47 396.53,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.53,436.13 396.31,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.31,436.13 396.31,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.62,435.47 403.84,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.84,435.47 403.84,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.84,436.13 403.62,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.62,436.13 403.62,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.53,435.69 403.62,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.53,435.91 403.62,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.84,435.47 396.31,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.84,436.13 396.31,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.31,436.13 396.31,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="403.84,435.47 404.28,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="403.84,435.47 404.28,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="403.84,436.13 403.84,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.34,435.47 388.56,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.56,435.47 388.56,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.56,436.13 388.34,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.34,436.13 388.34,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.64,435.47 395.87,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.87,435.47 395.87,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.87,436.13 395.64,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.64,436.13 395.64,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.56,435.69 395.64,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.56,435.91 395.64,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.87,435.47 388.34,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.87,436.13 388.34,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.34,436.13 388.34,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.87,435.47 396.31,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.87,435.47 396.31,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.87,436.13 395.87,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.89,436.13 387.89,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.89,435.47 388.34,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.89,435.47 388.34,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="403.84,435.47 403.84,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="404.28,435.47 404.28,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.31,435.47 396.31,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.87,435.47 395.87,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.89,435.47 387.89,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.34,435.47 388.34,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.25,436.58 412.25,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="413.96,436.58 413.96,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.4,436.58 414.4,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="411.81,436.58 411.81,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.33,435.47 411.81,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.33,435.47 414.4,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="377.5,435.47 377.5,433.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.24,435.48 380.24,433.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="377.5,436.13 377.5,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="377.5,436.58 377.5,436.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.8,436.58 379.8,436.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="377.94,436.58 377.94,436.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="362.27,435.47 362.27,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="370.24,435.47 370.24,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.8,435.47 369.8,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.86,435.47 354.3,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.86,435.47 354.3,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.83,435.47 362.27,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.83,435.47 362.27,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.83,435.47 354.3,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.8,436.13 369.8,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.8,435.47 370.24,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.8,435.47 370.24,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="362.27,436.13 362.27,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.8,436.13 362.27,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.8,435.47 362.27,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.49,435.69 369.58,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.49,435.91 369.58,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.58,435.47 369.8,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.8,435.47 369.8,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.8,436.13 369.58,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.58,436.13 369.58,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.27,435.47 362.49,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.49,435.47 362.49,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.49,436.13 362.27,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.27,436.13 362.27,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.5,436.13 377.5,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="370.24,436.13 370.24,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="377.5,436.13 370.24,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.28,435.47 370.24,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.86,435.47 346.33,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.2,436.13 336.2,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="343.73,435.47 344.03,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="343.73,436.13 343.73,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.23,435.47 328.45,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.45,435.47 328.45,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.45,436.13 328.23,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.23,436.13 328.23,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.54,435.47 335.76,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.76,435.47 335.76,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.76,436.13 335.54,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.54,436.13 335.54,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.45,435.69 335.54,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.45,435.91 335.54,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.76,435.47 328.23,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.76,436.13 328.23,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.23,436.13 328.23,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.76,435.47 336.2,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.76,435.47 336.2,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.76,436.13 335.76,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.26,435.47 320.48,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="320.48,435.47 320.48,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="320.48,436.13 320.26,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="320.26,436.13 320.26,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.57,435.47 327.79,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.79,435.47 327.79,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.79,436.13 327.57,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.57,436.13 327.57,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="320.48,435.69 327.57,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="320.48,435.91 327.57,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.79,435.47 320.26,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.79,436.13 320.26,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="320.26,436.13 320.26,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.79,435.47 328.23,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.79,435.47 328.23,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.79,436.13 327.79,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.82,435.47 312.29,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.82,436.13 312.29,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.29,436.13 312.29,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.82,436.13 319.82,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.82,435.47 320.26,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.82,435.47 320.26,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.76,435.47 335.76,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.2,435.47 336.2,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.23,435.47 328.23,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.79,435.47 327.79,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.82,435.47 319.82,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.26,435.47 320.26,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="307.76,433.45 311.98,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.98,435.47 312.29,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.69,436.58 309.69,434.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.29,436.58 312.29,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.84,436.58 311.84,436.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.13,436.58 310.13,436.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.98,435.47 311.98,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.17,436.58 344.17,436.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.88,436.58 345.88,436.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.33,436.58 346.33,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="343.73,436.58 343.73,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.03,435.47 343.73,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.02,435.47 346.33,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,268.09 283.11,268.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,268.09 283.11,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,268.09 282.45,273.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,268.09 283.11,273.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,268.31 283.11,268.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,268.09 282.45,268.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,268.09 282.45,268.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,268.31 283.11,268.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,273.95 283.11,273.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,273.73 282.45,273.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,273.73 282.45,273.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,273.95 283.11,273.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.39,254.53 308.06,254.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.57,254.53 295.24,254.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,267.76 282.01,268.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.6,254.52 496.93,254.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.78,254.52 484.11,254.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,293.4 510.17,293.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,280.58 510.17,280.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,267.76 510.17,268.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="307.76,435.16 308.09,435.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,325.15 281.78,326.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,274.81 282.45,274.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.22,404.11 296.35,404.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.63,400.96 294.97,400.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.63,400.74 295.63,396.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,400.74 294.96,396.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.21,396.24 295.21,400.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.38,396.24 295.38,400.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,400.74 295.63,400.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,400.96 294.96,400.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,400.96 294.96,400.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,400.74 295.63,400.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,396.02 295.63,396.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,396.24 294.96,396.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,396.24 294.96,396.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,396.02 295.63,396.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,408.84 294.97,404.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,408.84 295.63,404.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.21,404.33 295.21,408.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.38,404.33 295.38,408.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,408.84 295.63,409.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,409.06 294.97,409.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.97,409.06 294.97,408.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.97,408.84 295.63,408.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,404.11 295.63,404.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,404.33 294.97,404.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.97,404.33 294.97,404.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.97,404.11 295.63,404.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,391.29 295.63,391.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,391.51 294.96,391.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,391.51 294.96,391.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,391.29 295.63,391.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.21,391.51 295.21,396.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.38,391.51 295.38,396.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,396.02 295.63,391.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,396.02 294.96,391.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,391.29 295.63,391.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.63,387.92 295.63,388.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,388.14 294.96,388.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,388.14 294.96,387.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,387.92 295.63,387.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,388.14 294.96,383.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,388.14 295.63,383.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.35,388.14 296.35,391.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.63,388.14 294.96,388.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.22,388.14 296.35,388.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.22,391.29 296.35,391.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.22,388.14 294.22,391.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,389.05 284.41,390.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,389.05 282.42,389.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.76,389.22 281.76,390.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,389.05 282.42,389.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,390.38 282.42,390.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,390.21 282.42,390.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,389.22 281.76,389.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,390.21 281.76,390.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,403.03 281.76,403.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,402.04 281.76,402.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,403.03 282.42,403.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,403.2 282.42,403.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,401.87 282.42,401.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.76,402.04 281.76,403.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,401.87 282.42,402.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,401.87 284.41,403.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,427.51 284.41,428.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,427.51 282.42,427.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.76,427.68 281.76,428.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,427.51 282.42,427.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,428.84 282.42,428.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,428.67 282.42,428.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,427.68 281.76,427.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,428.67 281.76,428.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,415.85 281.76,415.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,414.86 281.76,414.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,415.85 282.42,416.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,416.02 282.42,416.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,414.69 282.42,414.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.76,414.86 281.76,415.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,414.69 282.42,414.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,414.69 284.41,416.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.49,434.7 289.49,435.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.5,434.7 288.5,435.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.49,434.7 289.66,434.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.66,432.71 289.66,434.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.33,432.71 288.33,434.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.5,435.36 289.49,435.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.33,434.7 288.5,434.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.33,432.71 289.66,432.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.23,384.27 290.38,384.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="477.43,356.73 477.43,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.79,356.73 472.79,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,358.61 477.43,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.63,356.73 480.63,347.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="481.57,356.73 481.57,339.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.79,358.61 468.7,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.79,356.73 469.58,356.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.12,357.39 469.58,357.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.12,357.94 469.58,357.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,357.39 478.09,357.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,357.94 478.09,357.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.12,357.39 472.12,357.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.09,357.39 478.09,357.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.58,357.94 469.58,357.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.7,358.61 468.7,356.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.58,356.73 469.58,347.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.63,347.88 469.58,347.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.63,347 469.58,347" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.58,347 469.58,332.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.63,347 480.63,339.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.36,338.16 482.01,338.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,358.61 486.55,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,357.83 488.32,357.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.55,358.61 486.55,356.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.55,356.89 488.32,356.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.73,357.89 509.07,357.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.73,357.89 509.07,357.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.73,358.61 508.73,357.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.21,358.61 508.73,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.21,357.44 509.07,357.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,383.08 509.07,383.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,382.37 507.76,382.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.76,383.53 509.07,383.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,382.37 486.71,382.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.83,378.94 496.8,378.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="506.11,379.22 496.96,379.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="499.2,372.31 492.81,372.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="498.92,372.03 492.65,372.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="499.2,368.39 488.7,368.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="498.92,368.66 488.98,368.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="505.83,361.75 488.7,361.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="506.11,361.48 488.98,361.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="496.8,378.94 505.83,378.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="505.83,361.75 505.83,378.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="506.11,361.48 506.11,379.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="499.2,368.39 499.2,361.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="499.2,372.31 499.2,378.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="497.98,368.39 497.98,361.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="496.77,368.39 496.77,361.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="495.55,368.39 495.55,361.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="494.34,368.39 494.34,361.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="497.98,372.31 497.98,378.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="496.77,372.31 496.77,378.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="495.55,372.31 495.55,376.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="494.34,372.31 494.34,374.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="493.12,372.31 493.12,372.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="508.46,376.73 506.11,376.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="508.46,377.06 506.11,377.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="508.46,364.24 506.11,364.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="508.46,363.91 506.11,363.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="286.78,259.61 286.78,270.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="286.51,259.33 286.51,269.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.42,266.24 293.42,273.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.69,266.52 293.69,273.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="286.78,259.61 301.28,259.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="286.51,259.33 301,259.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.42,266.24 301.28,266.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.69,266.52 301,266.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.42,266.24 286.78,266.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.42,267.46 286.78,267.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.42,268.67 286.78,268.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.42,269.89 286.78,269.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.42,271.1 288.81,271.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.42,272.32 291.3,272.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.42,266.24 293.42,259.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="294.63,266.24 294.63,259.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="295.85,266.24 295.85,259.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.06,266.24 297.06,259.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.28,266.24 298.28,259.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="289.09,269.13 290.1,269.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="290.1,269.64 291.11,269.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="289.09,268.88 290.1,269.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="290.1,269.39 291.11,268.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="289.09,268.88 289.09,269.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.11,268.88 291.11,269.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M289.09 268.88L289.09 269.13 290.1 269.64 290.1 269.39 289.09 268.88Z" fill-rule="evenodd" fill="blue"/>
+<path d="M291.11 268.88L291.11 269.13 290.1 269.64 290.1 269.39 291.11 268.88Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="290.1,262.83 290.1,269.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="344.09,227.7 344.09,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.97,227.7 345.97,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,229.58 345.97,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,227.7 345.97,227.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,227.7 380.01,227.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,229.58 380.01,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.01,227.7 380.01,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,227.7 378.13,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,227.7 414.05,227.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,229.58 414.05,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.05,227.7 414.05,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,227.7 412.17,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,227.7 448.09,227.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,229.58 448.09,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.09,227.7 448.09,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,227.7 446.21,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,202.06 446.21,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.09,202.06 448.09,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,203.94 448.09,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,202.06 448.09,202.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,202.06 412.17,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.05,202.06 414.05,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,203.94 414.05,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,202.06 414.05,202.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,202.06 378.13,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.01,202.06 380.01,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,203.94 380.01,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,202.06 380.01,202.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,202.06 345.97,202.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,203.94 345.97,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.97,202.06 345.97,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,202.06 344.09,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,176.42 344.09,178.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.97,176.42 345.97,178.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,178.3 345.97,178.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,176.42 345.97,176.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,176.42 380.01,176.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,178.3 380.01,178.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.01,176.42 380.01,178.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,176.42 378.13,178.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,176.42 414.05,176.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,178.3 414.05,178.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.05,176.42 414.05,178.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,176.42 412.17,178.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,176.42 448.09,176.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,178.3 448.09,178.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.09,176.42 448.09,178.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,176.42 446.21,178.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,254.17 446.21,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.09,254.17 448.09,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,256.04 448.09,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,254.17 448.09,254.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,254.17 412.17,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.05,254.17 414.05,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,256.04 414.05,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,254.17 414.05,254.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,254.17 378.13,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.01,254.17 380.01,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,256.04 380.01,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,254.17 380.01,254.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,254.17 345.97,254.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,256.04 345.97,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.97,254.17 345.97,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,254.17 344.09,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.14,172.16 446.15,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.03,172.16 328.34,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.33,170.28 346.33,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="377.77,170.28 377.77,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.37,170.28 380.37,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="411.81,170.28 411.81,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.4,170.28 414.4,171.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.15,172.16 414.1,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.11,172.16 396.31,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="355.73,172.16 346.02,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.33,254.06 482.15,254.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.33,256.24 484.14,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,245.66 483.48,245.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,245.21 483.48,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,253.17 483.48,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,253.61 483.48,253.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.48,253.61 483.48,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,253.61 482.43,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.33,229.58 482.15,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.33,227.7 482.15,227.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.15,229.74 482.15,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.15,227.7 482.15,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.2,227.97 483.2,229.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.15,253.17 483.04,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.15,254.06 482.15,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.33,256.24 480.33,254.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.14,256.24 484.14,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.37,253.61 483.37,254.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.15,253.17 482.15,237.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,253.61 482.43,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.37,245.66 483.37,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,237.26 483.48,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,237.7 483.48,237.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.37,237.7 483.37,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.2,227.97 483.53,227.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.15,227.53 483.53,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.53,227.97 483.53,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.53,229.3 483.53,229.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.15,229.74 483.53,229.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.2,229.3 483.53,229.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.37,229.74 483.37,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.2,203.66 483.53,203.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.15,204.1 483.53,204.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.53,203.66 483.53,204.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.53,202.33 483.53,201.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.15,201.89 483.53,201.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.2,202.33 483.53,202.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.2,202.33 483.2,203.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.15,202.06 482.15,201.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.15,204.1 482.15,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.33,202.06 482.15,202.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.33,203.94 482.15,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,204.1 483.04,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.37,204.1 483.37,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.15,227.53 482.15,204.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.15,201.89 482.15,186.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,253.17 483.04,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.48,245.66 483.48,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,245.66 482.43,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,245.66 482.43,245.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,245.66 482.43,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,253.17 482.43,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,245.66 483.04,253.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,245.66 482.43,253.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.84,252.95 482.84,245.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.62,252.95 482.62,245.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,245.88 483.04,245.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,245.66 482.43,245.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,245.66 482.43,245.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,245.88 483.04,245.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,253.17 483.04,252.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,252.95 482.43,252.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,252.95 482.43,253.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,253.17 483.04,253.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,237.7 482.43,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,237.7 482.43,237.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,237.7 482.43,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.48,237.7 483.48,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,245.21 482.43,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,237.7 483.04,245.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,237.7 482.43,245.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.84,244.99 482.84,237.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.62,244.99 482.62,237.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,237.92 483.04,237.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,237.7 482.43,237.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,237.7 482.43,237.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,237.92 483.04,237.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,245.21 483.04,244.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,244.99 482.43,244.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,244.99 482.43,245.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,245.21 483.04,245.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,229.74 482.43,229.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,237.26 482.43,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,229.74 483.04,237.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,229.74 482.43,237.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.84,237.04 482.84,229.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.62,237.04 482.62,229.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,229.96 483.04,229.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,229.74 482.43,229.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,229.74 482.43,229.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,229.96 483.04,229.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,237.26 483.04,237.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,237.04 482.43,237.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,237.04 482.43,237.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,237.26 483.04,237.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,211.62 483.04,211.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,211.4 482.43,211.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,211.4 482.43,211.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,211.62 483.04,211.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.84,211.4 482.84,204.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.62,211.4 482.62,204.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,204.1 482.43,211.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,204.1 483.04,211.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,211.62 482.43,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,204.1 482.43,204.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,219.57 483.04,219.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,219.35 482.43,219.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,219.35 482.43,219.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,219.57 483.04,219.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,212.28 483.04,212.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,212.06 482.43,212.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,212.06 482.43,212.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,212.28 483.04,212.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.84,219.35 482.84,212.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.62,219.35 482.62,212.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,212.06 482.43,219.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,212.06 483.04,219.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,219.57 482.43,219.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.48,212.06 483.48,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,212.06 482.43,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,212.06 482.43,212.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,212.06 482.43,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,220.24 483.04,220.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,220.02 482.43,220.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,220.02 482.43,220.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,220.24 483.04,220.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,220.02 482.43,219.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,220.02 482.43,220.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,220.02 482.43,219.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.48,220.02 483.48,219.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.15,204.1 483.53,204.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.37,212.06 483.37,219.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,212.06 483.48,212.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,211.62 483.48,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,219.57 483.48,219.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,220.02 483.48,220.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,227.53 483.04,227.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,227.31 482.43,227.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,227.31 482.43,227.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,227.53 483.04,227.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.84,227.31 482.84,220.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.62,227.31 482.62,220.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,220.02 482.43,227.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,220.02 483.04,227.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,204.32 483.04,204.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,204.1 482.43,204.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,204.1 482.43,204.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,204.32 483.04,204.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.37,220.02 483.37,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,220.02 483.04,227.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,212.06 483.04,219.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.37,212.06 483.37,219.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,186.42 483.04,193.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,194.38 483.48,194.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,193.93 483.48,193.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,185.98 483.48,185.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,186.42 483.48,186.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.48,194.38 483.48,193.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,194.38 482.43,193.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,194.38 482.43,194.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,194.38 482.43,193.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,194.6 483.04,194.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,194.38 482.43,194.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,194.38 482.43,194.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,194.6 483.04,194.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,186.42 482.43,185.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,186.42 482.43,186.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,186.42 482.43,185.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.48,186.42 483.48,185.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,193.93 482.43,193.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.04,186.42 483.04,193.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,186.42 482.43,193.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.84,193.71 482.84,186.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.62,193.71 482.62,186.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,186.64 483.04,186.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,186.42 482.43,186.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,186.42 482.43,186.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,186.64 483.04,186.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,193.93 483.04,193.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,193.71 482.43,193.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,193.71 482.43,193.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,193.93 483.04,193.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,194.38 482.43,201.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.84,201.67 482.84,194.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.62,201.67 482.62,194.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,194.38 483.04,201.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,201.89 483.04,201.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.04,201.67 482.43,201.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,201.67 482.43,201.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.43,201.89 483.04,201.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.37,194.38 483.37,201.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.37,186.42 483.37,193.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.81,186.42 308.81,193.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.81,194.38 308.81,201.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,178.68 309.14,178.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,178.46 309.74,178.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,178.46 309.74,178.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,178.68 309.14,178.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,201.89 309.14,201.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,201.67 309.74,201.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,201.67 309.74,201.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,201.89 309.14,201.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.33,201.67 309.33,194.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.55,201.67 309.55,194.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,194.38 309.74,201.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.02,178.46 308.64,178.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,185.98 309.14,185.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,185.76 309.74,185.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,185.76 309.74,185.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,185.98 309.14,185.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.33,185.76 309.33,178.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.55,185.76 309.55,178.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,178.46 309.74,185.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,178.46 309.14,185.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,185.98 309.74,185.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,178.46 309.74,178.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,193.93 309.14,193.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,193.71 309.74,193.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,193.71 309.74,193.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,193.93 309.14,193.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,186.64 309.14,186.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,186.42 309.74,186.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,186.42 309.74,186.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,186.64 309.14,186.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.33,193.71 309.33,186.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.55,193.71 309.55,186.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,186.42 309.74,193.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,186.42 309.14,193.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,193.93 309.74,193.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,186.42 309.74,185.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,186.42 309.74,186.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,186.42 309.74,185.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,194.6 309.14,194.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,194.38 309.74,194.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,194.38 309.74,194.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,194.6 309.14,194.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,194.38 309.74,193.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,194.38 309.74,194.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,194.38 309.74,193.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.7,194.38 308.7,193.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,186.42 308.7,186.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,185.98 308.7,185.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,193.93 308.7,193.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,194.38 308.7,194.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.81,212.06 308.81,219.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,212.06 309.14,219.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,220.02 309.14,227.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.81,220.02 308.81,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,204.32 309.14,204.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,204.1 309.74,204.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,204.1 309.74,204.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,204.32 309.14,204.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,220.02 309.14,227.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,220.02 309.74,227.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.33,227.31 309.33,220.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.55,227.31 309.55,220.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,227.53 309.14,227.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,227.31 309.74,227.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,227.31 309.74,227.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,227.53 309.14,227.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,220.02 308.7,220.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,219.57 308.7,219.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,211.62 308.7,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,212.06 308.7,212.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.81,212.06 308.81,219.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,204.1 308.64,204.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.7,220.02 308.7,219.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,220.02 309.74,219.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,220.02 309.74,220.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,220.24 309.14,220.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,220.02 309.74,220.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,220.02 309.74,220.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,220.24 309.14,220.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,212.06 309.74,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,212.06 309.74,212.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,212.06 309.74,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.7,212.06 308.7,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,219.57 309.74,219.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,212.06 309.14,219.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,212.06 309.74,219.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.33,219.35 309.33,212.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.55,219.35 309.55,212.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,212.28 309.14,212.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,212.06 309.74,212.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,212.06 309.74,212.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,212.28 309.14,212.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,219.57 309.14,219.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,219.35 309.74,219.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,219.35 309.74,219.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,219.57 309.14,219.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,204.1 309.74,204.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,211.62 309.74,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,204.1 309.14,211.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,204.1 309.74,211.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.33,211.4 309.33,204.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.55,211.4 309.55,204.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,211.62 309.14,211.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,211.4 309.74,211.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,211.4 309.74,211.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,211.62 309.14,211.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,237.26 309.14,237.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,237.04 309.74,237.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,237.04 309.74,237.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,237.26 309.14,237.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,229.96 309.14,229.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,229.74 309.74,229.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,229.74 309.74,229.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,229.96 309.14,229.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.33,237.04 309.33,229.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.55,237.04 309.55,229.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,229.74 309.74,237.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,229.74 309.14,237.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,237.26 309.74,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,229.74 309.74,229.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,245.21 309.14,244.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,244.99 309.74,244.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,244.99 309.74,245.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,245.21 309.14,245.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,237.92 309.14,237.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,237.7 309.74,237.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,237.7 309.74,237.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,237.92 309.14,237.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.33,244.99 309.33,237.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.55,244.99 309.55,237.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,237.7 309.74,245.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,237.7 309.14,245.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,245.21 309.74,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.7,237.7 308.7,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,237.7 309.74,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,237.7 309.74,237.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,237.7 309.74,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,253.17 309.14,252.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,252.95 309.74,252.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,252.95 309.74,253.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,253.17 309.14,253.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,245.88 309.14,245.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,245.66 309.74,245.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,245.66 309.74,245.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,245.88 309.14,245.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.33,252.95 309.33,245.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.55,252.95 309.55,245.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.74,245.66 309.74,253.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,245.66 309.14,253.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,253.17 309.74,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,245.66 309.74,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,245.66 309.74,245.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,245.66 309.74,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.7,245.66 308.7,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,253.17 309.14,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.81,178.46 308.81,185.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,201.89 310.02,194.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,227.53 310.02,212.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.81,204.1 308.81,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,178.02 308.64,178.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,178.46 308.64,178.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.64,178.02 308.64,178.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,178.46 310.02,178.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.93,176.42 310.79,176.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.93,178.3 310.02,178.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.93,203.94 310.02,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.93,202.06 310.02,202.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,204.1 310.02,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,202.06 310.02,201.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.97,202.33 308.97,203.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.97,202.33 308.64,202.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,201.89 308.64,201.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.64,202.33 308.64,201.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.64,203.66 308.64,204.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,204.1 308.64,204.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.97,203.66 308.64,203.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.81,229.74 308.81,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.97,229.3 308.64,229.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,229.74 308.64,229.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.64,229.3 308.64,229.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.64,227.97 308.64,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,227.53 308.64,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.97,227.97 308.64,227.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.81,237.7 308.81,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,237.7 308.7,237.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,237.26 308.7,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.81,245.66 308.81,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,253.61 309.74,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,253.17 310.02,229.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.81,253.61 308.81,254.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.03,256.24 308.03,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,254.06 310.02,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,253.17 309.14,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.97,227.97 308.97,229.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,227.7 310.02,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,229.74 310.02,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.93,227.7 310.02,227.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.93,229.58 310.02,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,253.61 309.74,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.64,253.61 308.64,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,253.61 308.64,253.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,253.17 308.64,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,245.21 308.7,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.74,245.66 308.7,245.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.07,256.24 308.03,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.07,254.06 310.02,254.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.39,254.53 308.06,254.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.06,255.63 307.84,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.84,255.63 307.84,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.84,254.97 308.06,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.06,254.97 308.06,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.06,255.63 308.06,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.39,255.63 308.03,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.39,254.53 308.39,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.06,254.53 308.06,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.81,254.83 308.39,254.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.14,194.38 309.14,201.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.14,170.72 309.14,178.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.07,256.24 312.07,254.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.79,176.42 310.79,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.58,172.05 309.58,176.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,172.05 310.02,176.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.19,183.55 481.82,183.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="481.99,186.42 481.99,185.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.13,185.53 481.99,185.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.97,184.87 475.13,184.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.43,186.42 481.99,186.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.37,177.94 483.54,177.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.37,178.43 483.54,178.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.37,170.47 483.37,177.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.37,178.43 483.37,185.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.14,172.16 455.97,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.89,170.47 479.89,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.33,170.47 480.33,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.97,171.39 455.97,178.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.19,172.05 457.19,178.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.19,172.05 481.82,172.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.37,170.47 480.33,170.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.82,170.28 320.26,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.82,170.39 312.29,170.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.79,170.39 320.26,170.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.76,170.28 336.2,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.76,170.39 328.23,170.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.23,170.28 327.79,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="343.73,170.39 336.2,170.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.86,170.39 346.33,170.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.86,170.28 354.3,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.83,170.28 362.27,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.8,170.28 370.24,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.89,170.28 388.34,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.87,170.28 396.31,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.87,170.39 388.34,170.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.89,170.39 380.37,170.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="403.84,170.28 404.28,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="403.84,170.39 396.31,170.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="411.81,170.39 404.28,170.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.93,170.28 422.38,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.91,170.28 430.35,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.93,170.39 414.4,170.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.91,170.39 422.38,170.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.94,170.28 464.39,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.88,170.39 430.35,170.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.88,170.28 438.32,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="445.85,170.39 438.32,170.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.97,170.39 448.44,170.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.92,170.28 472.36,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.94,170.47 455.97,170.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.92,170.47 464.39,170.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.89,170.47 472.36,170.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.97,170.28 456.42,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.54,177.94 483.54,178.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.89,170.28 480.33,170.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="481.82,172.05 481.82,183.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.42,170.28 456.42,170.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.97,170.47 455.97,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,172.05 309.58,172.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,176.42 309.58,176.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.21,387.92 295.21,383.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.38,387.92 295.38,383.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,409.33 509.73,409.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,409.11 509.07,409.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,409.11 509.07,409.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,409.33 509.73,409.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,409.11 509.07,414.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,409.11 509.73,414.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,414.97 509.73,414.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,414.75 509.07,414.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,414.75 509.07,414.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,414.97 509.73,414.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.79,434.31 508.84,434.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.79,434.47 508.84,434.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,428.56 509.73,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,434.72 503.56,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,434.06 509.06,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,434.06 509.73,434.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.32,428.78 509.32,433.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.47,428.78 509.47,433.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,434.06 294.96,434.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.63,434.06 295.63,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.94,435.16 294.94,434.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.27,435.16 295.27,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.52,434.75 294.94,434.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.52,434.42 294.96,434.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.96,434.42 294.96,434.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.63,434.72 295.27,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.63,434.72 301.12,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,434.06 301.12,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,434.06 294.96,428.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.21,428.78 295.21,433.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.37,428.78 295.37,433.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.9,434.31 295.85,434.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.9,434.47 295.85,434.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,255.63 509.73,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,255.63 509.06,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.75,254.52 509.75,254.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.42,254.52 509.42,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,254.94 509.75,254.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,255.27 509.73,255.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,255.27 509.73,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,254.96 509.42,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,254.96 503.56,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,255.63 503.56,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.79,255.21 508.84,255.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.79,255.38 508.84,255.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,260.91 509.31,255.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.47,260.91 509.47,255.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,254.97 282.75,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,255.27 282.45,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,255.27 282.45,255.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,254.94 282.42,254.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.75,254.53 282.75,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,254.53 282.42,254.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,255.63 283.11,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,255.63 282.45,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.7,260.91 282.7,255.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,260.91 282.86,255.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.39,255.22 283.33,255.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.39,255.38 283.33,255.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.11,435.17 483.78,435.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.93,435.17 496.6,435.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.75,435.17 509.42,435.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,434.42 510.17,434.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,408.78 510.17,409.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,395.96 510.17,396.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,383.14 510.17,383.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,370.32 510.17,370.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.12,357.5 510.12,357.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.75,254.52 509.42,254.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,255.27 510.17,254.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,254.53 282.75,254.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,255.27 282.01,254.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.52,434.42 294.52,434.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.94,435.16 295.27,435.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="462.67,177.13 477.41,177.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="462.49,176.97 477.58,176.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="471.07,178.63 471.07,179.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="473.5,178.63 473.5,183.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="474.72,178.63 474.72,183.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="477.41,177.13 477.41,178.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="477.58,176.97 477.58,178.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="478.29,181.09 478.29,174.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="478.29,174.58 461.36,174.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="474.02,180.08 473.51,181.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="473.51,181.09 474.02,182.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="474.27,180.08 473.76,181.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="473.76,181.09 474.27,182.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="474.27,180.08 474.02,180.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="474.27,182.1 474.02,182.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M474.27 180.08L474.02 180.08 473.51 181.09 473.76 181.09 474.27 180.08Z" fill-rule="evenodd" fill="blue"/>
+<path d="M474.27 182.1L474.02 182.1 473.51 181.09 473.76 181.09 474.27 182.1Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="478.29,181.09 473.5,181.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="472.79,356.73 477.43,356.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,376.51 508.46,377.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,364.46 508.46,376.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.43,256.24 289.38,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,383.53 508.46,389.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,383.03 488.32,383.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,286.77 508.46,274.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.74,256.24 502.79,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.12,356.73 482.12,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.93,281.68 320.27,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.32,318.54 321.32,312.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.32,296.33 326.21,296.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.32,297.21 325.33,297.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.93,306.28 320.27,306.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.54,305.39 320.27,305.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.32,311.8 325.33,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.32,312.69 325.33,312.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.71,319.43 326.21,319.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,281.68 310.05,296.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.54,281.68 311.54,293.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.32,318.54 325.33,318.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.32,311.8 321.32,306.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.32,306.28 325.33,306.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.32,305.39 321.32,297.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.32,305.39 325.33,305.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.32,296.33 321.32,290.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.27,306.28 320.27,318.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.27,280.47 320.27,281.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.33,318.54 325.33,316.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.21,319.43 326.21,316.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.33,305.39 325.33,305.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.33,311.8 325.33,310.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.21,314.48 325.33,314.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.21,316.91 325.33,316.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.21,316.91 326.21,310.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.33,316.91 325.33,312.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.33,310.31 326.21,310.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.33,307.82 326.21,307.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.21,316.91 326.21,305.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.33,316.91 325.33,312.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.33,311.8 325.33,306.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.54,293.46 320.27,293.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.54,293.01 320.27,293.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.54,293.46 311.54,296.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.27,293.46 320.27,305.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.93,280.47 320.27,280.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.93,281.02 320.27,281.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.32,284.36 321.32,279.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.27,290.33 320.27,293.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.54,302.32 311.54,305.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,302.32 310.05,305.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,307.32 310.05,330.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.93,279.81 321.32,279.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,280.58 282.01,280.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,293.4 282.01,293.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,306.22 282.01,306.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,306.77 282.45,306.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,306.55 283.11,306.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,306.55 283.11,306.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,306.77 282.45,306.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,306.55 282.45,312.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,306.55 283.11,312.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,306.55 283.11,306.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,306.55 282.45,306.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,306.22 282.45,306" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,306 283.11,306" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,306 283.11,306.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,306.22 282.45,306.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,300.45 282.45,306.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,300.36 283.11,306.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,306.22 282.45,306.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,306.22 282.45,306.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,306.22 283.11,306.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,293.95 282.45,293.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,293.73 283.11,293.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,293.73 283.11,293.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,293.95 282.45,293.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,293.73 282.45,299.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,293.73 283.11,299.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,293.73 283.11,293.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,293.73 282.45,293.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,293.4 282.45,293.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,293.18 283.11,293.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,293.18 283.11,293.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,293.4 282.45,293.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,287.76 282.45,287.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,287.54 283.11,287.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,287.54 283.11,287.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,287.76 282.45,287.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,287.54 282.45,293.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,287.54 283.11,293.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,293.4 282.45,293.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,293.4 282.45,293.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,293.4 283.11,293.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,293.4 283.11,293.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,286.77 282.45,286.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,286.55 283.11,286.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,286.55 283.11,286.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,286.77 282.45,286.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,281.13 282.45,280.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,280.91 283.11,280.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,280.91 283.11,281.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,281.13 282.45,281.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,280.91 282.45,286.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,280.91 283.11,286.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,280.91 283.11,280.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,280.91 282.45,280.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,280.58 282.45,280.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,280.36 283.11,280.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,280.36 283.11,280.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,280.58 282.45,280.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,274.94 282.45,274.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,274.72 283.11,274.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,274.72 283.11,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,274.94 282.45,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.7,280.36 282.7,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,280.36 282.86,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,274.72 282.45,280.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,274.72 283.11,280.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,280.58 282.45,280.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,280.58 282.45,280.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,280.58 283.11,280.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,280.58 283.11,280.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,306.55 283.11,306.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,306.22 283.11,306.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,293.4 283.11,293.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,293.73 283.11,293.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,287.63 281.78,286.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,280.91 283.11,280.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,280.58 283.11,280.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.7,268.31 282.7,273.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,268.31 282.86,273.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.01,319.37 283.11,319.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,319.04 283.11,319.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,326.09 281.78,325.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,319.04 283.11,319.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,319.04 283.11,319.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,319.04 282.45,319.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,319.04 282.45,319.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,313.18 283.11,319.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,313.27 282.45,319.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,319.04 282.45,318.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,318.82 283.11,318.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,318.82 283.11,319.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,319.04 282.45,319.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,319.37 282.45,319.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,319.37 283.11,319.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,319.37 283.11,325.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,319.37 282.45,325.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,319.59 282.45,319.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,319.37 283.11,319.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,319.37 283.11,319.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,319.59 282.45,319.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.01,319.04 282.01,319.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,287.63 281.78,286.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.7,281.13 282.7,286.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,281.13 282.86,286.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.7,287.76 282.7,293.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,287.76 282.86,293.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,299.59 282.45,299.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,299.37 283.11,299.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,299.37 283.11,299.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,299.59 282.45,299.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,300.58 282.45,300.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,300.36 283.11,300.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,300.36 283.11,300.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,300.58 282.45,300.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,293.95 282.86,299.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.7,293.95 282.7,299.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.7,300.58 282.7,306" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,300.58 282.86,306" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,313.4 282.45,313.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,313.18 283.11,313.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,313.18 283.11,313.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,313.4 282.45,313.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,312.41 282.45,312.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,312.19 283.11,312.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,312.19 283.11,312.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,312.41 282.45,312.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.7,306.77 282.7,312.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,306.77 282.86,312.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.7,313.4 282.7,318.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,313.4 282.86,318.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.78,326.09 281.78,325.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,326.09 281.78,325.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,325.23 282.45,325.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,325.01 283.11,325.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,325.01 283.11,325.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,325.23 282.45,325.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.78,326.09 281.78,325.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.7,319.59 282.7,325.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,319.59 282.86,325.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,370.87 282.86,376.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.7,370.87 282.7,376.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,364.68 282.86,370.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.7,364.68 282.7,370.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,358.05 282.86,363.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.7,358.05 282.7,363.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,363.69 282.45,363.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,363.47 283.11,363.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,363.47 283.11,363.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,363.69 282.45,363.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,364.68 282.45,364.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,364.46 283.11,364.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,364.46 283.11,364.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,364.68 282.45,364.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,351.86 282.86,357.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.7,351.86 282.7,357.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.01,370.32 282.01,370.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,370.87 282.45,370.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,370.65 283.11,370.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,370.65 283.11,370.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,370.87 282.45,370.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,370.65 282.45,376.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,370.65 283.11,376.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,370.65 283.11,370.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,370.65 282.45,370.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,370.32 282.45,370.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,370.1 283.11,370.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,370.1 283.11,370.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,370.32 282.45,370.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,364.46 282.45,370.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,364.46 283.11,370.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,370.32 282.45,370.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,370.32 282.45,370.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,370.32 283.11,370.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,370.32 283.11,370.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,370.32 283.11,370.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,370.65 283.11,370.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,357.5 283.11,357.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,357.83 283.11,357.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,357.5 283.11,357.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,357.5 282.45,357.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,357.5 282.45,357.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,351.73 283.11,357.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,351.73 282.45,357.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,357.5 282.45,357.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,357.28 283.11,357.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,357.28 283.11,357.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,357.5 282.45,357.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,357.83 282.45,357.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,357.83 283.11,357.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,357.83 283.11,363.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,357.83 282.45,363.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,358.05 282.45,357.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,357.83 283.11,357.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,357.83 283.11,358.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,358.05 282.45,358.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.01,357.5 282.01,357.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301,280 301,266.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.28,280.28 301.28,266.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301,259.33 301,256.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="286.44,280.28 301.28,280.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="286.44,280 301,280" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.28,259.61 301.28,256.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.8,273.54 291.03,272.19 291.02,271.03 289.19,272.43 289.18,271.28 286.51,269.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="289.34,272.32 289.19,272.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.49,266.24 299.49,259.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.71,266.24 300.71,259.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.75,262.83 290.1,262.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301,256.46 301.28,256.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="509.87,357.5 509.87,357.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.35,358.61 482.35,362.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.32,358.61 486.18,359.65 485.77,360.63 485.12,361.46 484.27,362.09 483.28,362.47 482.23,362.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.47,358.61 482.47,362.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.47,358.61 482.47,358.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.35,358.61 482.47,358.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.32,358.61 486.55,358.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.55,358.61 486.55,357.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.55,357.86 486.32,357.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.32,357.86 486.32,358.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.12,358.61 482.35,358.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.35,358.61 482.35,357.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.35,357.86 482.12,357.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.12,357.86 482.12,358.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.7,358.61 488.7,361.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="488.98,358.61 488.98,361.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="488.98,368.66 488.98,382.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="488.7,368.39 488.7,382.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="499.2,372.31 505.83,372.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="499.2,368.39 505.83,368.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="499.2,371.09 505.83,371.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="499.2,368.39 499.2,372.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="498.92,368.66 498.92,372.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="493.12,368.39 493.12,361.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="491.91,368.39 491.91,361.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="490.69,368.39 490.69,361.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="489.47,368.39 489.47,361.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="499.2,369.78 505.8,369.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="502.5,364.93 488.41,364.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="502.5,364.93 502.5,375.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="462.49,176.97 462.49,177.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="462.83,172.05 462.83,176.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="464.04,172.05 464.04,176.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="465.26,172.05 465.26,176.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="466.47,172.05 466.47,176.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="467.69,172.05 467.69,176.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="468.9,172.05 468.9,176.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="470.12,172.05 470.12,176.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="462.49,177.13 462.49,183.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="462.67,177.13 462.67,183.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="470.49,178.63 477.58,178.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="470.41,178.46 477.41,178.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="472.29,178.63 472.29,181.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="471.34,172.05 471.34,176.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="472.55,172.05 472.55,176.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="473.77,172.05 473.77,176.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="474.98,172.05 474.98,176.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.2,172.05 476.2,176.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="459.47,175.14 459.47,173.81 459.8,173.81 459.94,173.88 460.03,174 460.08,174.13 460.13,174.32 460.13,174.64 460.08,174.83 460.03,174.95 459.94,175.08 459.8,175.14 459.47,175.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="460.46,175.14 460.46,173.81 461.12,175.14 461.12,173.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="461.55,175.01 461.5,175.08 461.55,175.14 461.6,175.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.55,263.27 302.55,261.94 302.88,261.94 303.03,262 303.12,262.13 303.17,262.26 303.22,262.44 303.22,262.76 303.17,262.95 303.12,263.08 303.03,263.2 302.88,263.27 302.55,263.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.55,263.27 303.55,261.94 304.21,263.27 304.21,261.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.64,263.14 304.59,263.2 304.64,263.27 304.68,263.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.93,264.39 321.11,264.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,271.74 310.05,270.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.71,265.05 321.11,265.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,227.7 311.93,227.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,229.58 311.93,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.93,176.42 311.93,178.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.93,264.39 310.93,263.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.71,271.08 310.71,270.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.78,268.42 329.73,268.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.71,271.08 317.58,271.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.78,267.76 329.73,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.07,254.44 336.37,254.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,271.74 330.95,271.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.07,255.11 335.7,255.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.93,307.32 311.93,318.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.93,318.54 320.27,318.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.71,319.43 310.71,330.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="307.76,434.06 307.76,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,383.23 455.1,383.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.94,358.61 463.94,356.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.28,358.61 463.28,355.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.7,355.84 468.7,331.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.36,338.16 480.36,339.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.36,339.93 482.01,339.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.01,338.16 482.01,339.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="481.41,356.73 481.41,339.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.12,279.81 482.12,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,306.22 510.17,306.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,319.04 509.73,318.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,318.82 509.06,318.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,318.82 509.06,319.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,319.04 509.73,319.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,313.4 509.73,313.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,313.18 509.06,313.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,313.18 509.06,313.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,313.4 509.73,313.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,318.82 509.48,313.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,318.82 509.31,313.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,313.18 509.73,319.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,313.18 509.06,319.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,313.18 509.73,313.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,312.41 509.73,312.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,312.19 509.06,312.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,312.19 509.06,312.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,312.41 509.73,312.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,306.77 509.73,306.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,306.55 509.06,306.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,306.55 509.06,306.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,306.77 509.73,306.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,312.19 509.48,306.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,312.19 509.31,306.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,306.55 509.73,312.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,306.55 509.06,312.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,312.41 509.73,312.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,306.55 509.06,306.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,306.55 509.73,306.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,306.22 509.73,306" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,306 509.06,306" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,306 509.06,306.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,306.22 509.73,306.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,300.58 509.73,300.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,300.36 509.06,300.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,300.36 509.06,300.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,300.58 509.73,300.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,306 509.48,300.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,306 509.31,300.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,300.36 509.73,306.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,300.36 509.06,306.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,306.22 509.73,306.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,300.36 509.73,300.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,306.22 509.73,306.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,306.22 509.06,306.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,306.22 509.06,306.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,299.59 509.73,299.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,299.37 509.06,299.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,299.37 509.06,299.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,299.59 509.73,299.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,299.59 509.73,299.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,313.27 510.39,312.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,313.27 509.73,313.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,312.33 509.73,312.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,306.22 509.06,306.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,306.55 509.06,306.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,299.51 509.73,299.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,300.45 509.73,300.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,300.45 510.39,299.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,300.36 508.46,299.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,299.59 508.46,299.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,300.36 508.46,300.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,313.18 508.46,312.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,313.18 508.46,313.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,312.41 508.46,312.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,300.36 508.46,306.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,319.04 509.73,319.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,319.04 509.73,318.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,318.82 509.06,318.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,318.82 509.06,319.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,319.04 509.73,319.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,319.04 509.73,319.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,331.86 509.73,331.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,331.86 509.73,331.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,331.64 509.06,331.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,331.64 509.06,331.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,331.86 509.73,331.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,331.86 509.73,331.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,319.37 509.06,319.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,319.04 509.06,319.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,325.15 509.73,325.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,326.09 509.73,326.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,326.09 510.39,325.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,319.04 509.06,319.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,319.04 509.06,319.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,319.04 509.73,319.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,319.04 509.73,319.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,319.04 509.73,318.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,318.82 509.06,318.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,318.82 509.06,319.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,319.04 509.73,319.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,319.37 509.73,319.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,319.37 509.06,319.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,325.23 509.73,325.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,319.37 509.06,325.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,319.37 509.73,325.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,325.01 509.48,319.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,325.01 509.31,319.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,319.59 509.73,319.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,319.37 509.06,319.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,319.37 509.06,319.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,319.59 509.73,319.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,325.23 509.73,325.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,325.01 509.06,325.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,325.01 509.06,325.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,325.23 509.73,325.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,326 509.73,326" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,326 509.06,331.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,326 509.73,331.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,331.64 509.48,326.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,331.64 509.31,326.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,326.22 509.73,326" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,326 509.06,326" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,326 509.06,326.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,326.22 509.73,326.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,331.86 509.73,331.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,331.64 509.06,331.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,331.64 509.06,331.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,331.86 509.73,331.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="510.17,319.04 510.17,319.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,325.23 508.46,325.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,326 508.46,326" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,326 508.46,325.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.16,365.42 486.16,364.1 486.49,364.1 486.63,364.16 486.73,364.29 486.77,364.41 486.82,364.6 486.82,364.92 486.77,365.11 486.73,365.24 486.63,365.36 486.49,365.42 486.16,365.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="487.15,365.42 487.15,364.1 487.82,365.42 487.82,364.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="488.24,365.3 488.2,365.36 488.24,365.42 488.29,365.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="457.19,183.35 457.19,183.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.97,183.35 455.97,184.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.19,178.93 455.97,178.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.19,183.35 455.97,183.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.19,183.13 461.17,183.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.19,179.15 458.24,179.29 459.21,179.71 460.05,180.36 460.68,181.21 461.06,182.2 461.17,183.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.19,183.01 461.16,183.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.19,183.01 457.19,183.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.19,183.13 457.19,183.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.19,179.15 457.19,178.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.19,178.93 455.97,178.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.97,178.93 455.97,179.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.97,179.15 457.19,179.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.19,183.35 457.19,183.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.19,183.13 455.97,183.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.97,183.13 455.97,183.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.97,183.35 457.19,183.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.09,254.17 448.09,246.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="447.42,253.5 447.42,247.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,254.17 437.63,254.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.63,254.17 437.63,246.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.29,253.5 438.29,247.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="447.42,253.5 438.29,253.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="447.42,247.54 438.29,247.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.09,246.87 437.63,246.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.48,409.33 509.48,414.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,409.33 509.31,414.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.01,344.68 282.01,345.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,345.23 282.45,345.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,345.01 283.11,345.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,345.01 283.11,345.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,345.23 282.45,345.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,345.01 283.11,344.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,345.01 282.45,345.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,344.68 282.45,344.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,344.46 283.11,344.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,344.46 283.11,344.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,344.68 282.45,344.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,338.82 283.11,344.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,344.68 282.45,344.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,344.68 282.45,344.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,344.68 283.11,345.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,345.01 283.11,345.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,344.68 283.11,344.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,339.04 282.45,338.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,338.82 283.11,338.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,338.82 283.11,339.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,339.04 282.45,339.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.7,339.04 282.7,344.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,339.04 282.86,344.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,345.01 282.45,350.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,345.01 283.11,350.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.7,345.23 282.7,350.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,345.23 282.86,350.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.72,256.24 283.72,261.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,338.05 282.45,337.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,337.83 283.11,337.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,337.83 283.11,338.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,338.05 282.45,338.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,332.41 282.86,337.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.7,332.41 282.7,337.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,332.19 283.11,338.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,332.19 282.45,337.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,326.22 282.86,331.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.7,326.22 282.7,331.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,326.22 282.45,326" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,326 283.11,326" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,326 283.11,326.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,326.22 282.45,326.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.01,331.86 283.11,331.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,332.19 283.11,332.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,331.86 283.11,332.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,331.86 282.45,331.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,331.86 282.45,331.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,326 283.11,331.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,326 282.45,331.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,331.86 282.45,331.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,331.64 283.11,331.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,331.64 283.11,331.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,331.86 282.45,331.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,332.19 282.45,332.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,332.19 283.11,331.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,332.41 282.45,332.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,332.19 283.11,332.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,332.19 283.11,332.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,332.41 282.45,332.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.01,331.86 282.01,332.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,351.73 282.45,351.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,350.79 282.45,350.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,351.64 283.72,351.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,350.87 283.72,350.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,350.87 282.45,350.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,350.87 283.72,351.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,350.65 283.11,350.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,350.87 282.45,350.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,350.87 282.45,350.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,350.65 283.11,350.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,351.64 283.11,351.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,351.64 283.11,351.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,351.86 282.45,351.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,351.86 282.45,351.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,351.64 283.11,351.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.72,363.69 283.72,364.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,363.69 283.72,363.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,364.46 283.72,364.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,363.61 282.45,363.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,364.55 282.45,364.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,363.61 282.45,363.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,364.46 282.45,364.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,338.82 283.11,338.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,338.05 283.72,338.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,338.05 283.72,338.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,338.82 283.72,338.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,337.97 282.45,337.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,338.91 282.45,338.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,338.82 282.45,338.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,338.82 282.45,344.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,326 282.45,326.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,325.15 282.45,325.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,326.09 281.78,325.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,326.09 281.78,325.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,326.09 282.45,326.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,325.15 282.45,325.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,326 283.72,326" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,325.23 283.72,325.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,325.23 283.72,326" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,312.41 283.72,313.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,312.41 283.72,312.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,313.18 283.72,313.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,312.33 282.45,312.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,313.27 282.45,313.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,312.33 282.45,312.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,313.18 282.45,313.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,299.59 283.72,300.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,299.59 283.72,299.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,300.36 283.72,300.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,299.51 282.45,299.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,300.45 282.45,300.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,299.51 282.45,299.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,300.36 282.45,300.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,287.63 281.78,286.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,287.63 281.78,286.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,287.63 281.78,286.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,287.63 281.78,286.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,287.54 282.45,287.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,286.69 282.45,286.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,287.63 281.78,286.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,287.63 281.78,286.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,287.63 282.45,287.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,286.69 282.45,286.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,286.69 281.78,287.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,287.54 283.72,287.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,286.77 283.72,286.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,286.77 283.72,287.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,287.63 281.78,286.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,287.63 281.78,286.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.7,377.5 282.7,382.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,377.5 282.86,382.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,383.14 282.45,382.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,382.81 282.45,377.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,382.81 283.11,377.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,382.81 282.45,382.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,382.81 283.11,383.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,383.92 282.75,383.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.42,383.92 282.42,383.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.75,383.92 282.75,383.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,383.47 282.42,383.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,383.14 282.45,383.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.14,383.47 283.11,383.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.01,383.22 283.33,383.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.6,383.47 290.38,383.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.38,383.47 290.38,382.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.38,382.81 290.6,382.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.6,382.81 290.6,383.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.23,383.47 287.01,383.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.01,383.47 287.01,382.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.01,382.81 287.23,382.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.23,382.81 287.23,383.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.38,383.47 295.27,383.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.38,382.81 294.96,382.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.15,383.47 294.92,383.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.92,383.47 294.92,382.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.92,382.81 295.15,382.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.15,382.81 295.15,383.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.92,383.06 290.6,383.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.92,383.22 290.6,383.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.23,384.27 287.23,382.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.01,383.06 283.33,383.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,382.81 287.14,382.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.38,384.27 290.38,382.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.15,383.47 295.15,382.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.01,383.14 282.01,383.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.11,383.47 282.75,383.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,274.81 281.78,273.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,274.81 281.78,273.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,274.81 281.78,273.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,273.95 283.72,274.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,273.95 283.72,273.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,274.72 283.72,274.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,273.87 281.78,274.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,273.87 282.45,273.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,274.81 282.45,274.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,274.81 281.78,273.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,274.81 281.78,273.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,273.87 282.45,273.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,274.72 282.45,274.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,274.81 281.78,273.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,274.81 281.78,273.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,274.81 281.78,273.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,274.81 281.78,273.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,274.94 282.45,274.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,274.72 283.11,274.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,274.72 283.11,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,274.94 282.45,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,377.28 282.45,377.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,376.43 282.45,376.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,377.37 282.45,377.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,376.43 282.45,376.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,377.28 283.72,377.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,376.51 283.72,376.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,376.51 283.72,377.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,377.5 282.45,377.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,377.28 283.11,377.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,377.28 283.11,377.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,377.5 282.45,377.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,376.51 282.45,376.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,376.29 283.11,376.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,376.29 283.11,376.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,376.51 282.45,376.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.78,299.51 281.78,300.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,312.33 281.78,313.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,337.97 281.78,338.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,350.79 281.78,351.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,363.61 281.78,364.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.78,376.43 281.78,377.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,401.87 284.41,403.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.68,423.53 311.68,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.12,423.53 312.12,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.77,414.91 310.77,419.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.1,414.25 310.1,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.58,417.95 336.17,417.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.58,414.25 321.58,417.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.54,418.62 329.54,421.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.2,418.62 330.2,425.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.51,418.62 335.51,419.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.17,417.95 336.17,419.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.58,421.27 329.54,421.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.58,421.93 329.54,421.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.58,418.62 329.54,418.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.2,418.62 335.51,418.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.54,421.93 329.54,429.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.2,425.25 330.65,425.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.2,425.91 330.65,425.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.54,429.34 330.2,429.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.2,425.91 330.2,429.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.51,425.91 335.51,434.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.77,414.91 310.77,421.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.77,421.66 310.77,422.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.51,434.59 335.74,434.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.74,434.59 335.74,435.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.51,423.74 335.51,425.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.17,423.74 336.17,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.51,419.31 336.17,419.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.51,423.74 336.17,423.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.51,419.54 331.53,419.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.51,423.51 334.46,423.37 333.49,422.96 332.65,422.31 332.02,421.46 331.64,420.47 331.53,419.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.51,419.66 331.54,419.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.51,419.66 335.51,419.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.51,419.54 335.51,419.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.51,423.51 335.51,423.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.51,423.74 336.17,423.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.17,423.74 336.17,423.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.17,423.51 335.51,423.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.51,419.31 335.51,419.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.51,419.54 336.17,419.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.17,419.54 336.17,419.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.17,419.31 335.51,419.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.07,425.91 335.51,425.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.07,425.25 335.51,425.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.07,425.91 335.07,425.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.65,425.91 330.65,425.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="334.85,425.91 334.85,429.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.87,425.91 331.01,426.96 331.42,427.93 332.08,428.77 332.93,429.39 333.91,429.78 334.96,429.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.72,425.91 334.72,429.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.72,425.91 334.72,425.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.85,425.91 334.72,425.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.87,425.25 330.65,425.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.65,425.25 330.65,425.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.65,425.91 330.87,425.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.87,425.91 330.87,425.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.07,425.25 334.85,425.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.85,425.25 334.85,425.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.85,425.91 335.07,425.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.07,425.91 335.07,425.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<path d="M329.52 428.57L329.52 428.68 328.86 428.68 328.86 428.57 329.52 428.57Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M325.49 422L325.6 422 325.6 428.57 325.49 428.57 325.49 422Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M326.21 428.57L326.21 428.68 324.88 428.68 324.88 428.57 326.21 428.57Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="326.21,428.63 326.34,427.79 326.73,427.04 327.34,426.45 328.1,426.09 328.94,425.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="328.86,428.63 328.86,425.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="322.23,428.63 322.36,427.79 322.75,427.04 323.36,426.45 324.12,426.09 324.96,425.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="324.88,428.63 324.88,425.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<path d="M321.51 428.68L321.51 428.57 322.23 428.57 322.23 428.68 321.51 428.68Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="459.91,258.13 459.91,259.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.68,260.04 458.22,260.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.22,260.04 458.22,257.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.22,257.91 459.68,257.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.63,258.3 459.63,259.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.73,259.65 458.73,258.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.84,258.19 459.51,258.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.51,259.76 458.84,259.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.51,258.19 459.59,258.22 459.63,258.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.63,259.65 459.59,259.72 459.51,259.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.84,259.76 458.76,259.72 458.73,259.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.73,258.3 458.76,258.22 458.84,258.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.68,257.91 459.84,257.97 459.91,258.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.91,259.81 459.84,259.97 459.68,260.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.87,261.17 459.87,262.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.65,263.08 458.19,263.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.19,263.08 458.19,260.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.19,260.94 459.65,260.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.59,261.34 459.59,262.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.7,262.68 458.7,261.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.81,261.23 459.48,261.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.48,262.8 458.81,262.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.48,261.23 459.56,261.26 459.59,261.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.59,262.68 459.56,262.76 459.48,262.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.81,262.8 458.73,262.76 458.7,262.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.7,261.34 458.73,261.26 458.81,261.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.65,260.94 459.81,261.01 459.87,261.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.87,262.85 459.81,263.01 459.65,263.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.77,270.91 459.77,269.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.77,269.9 460.22,269.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.22,269.9 460.61,269.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.9,269.56 461.34,269.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.79,269.9 461.34,269.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.79,270.91 461.79,269.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.79,270.91 459.77,270.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.61,269.56 460.9,269.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.39,270.91 462.39,269.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.39,269.9 462.84,269.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.84,269.9 463.23,269.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.52,269.56 463.96,269.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.41,269.9 463.96,269.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.41,270.91 464.41,269.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.41,270.91 462.39,270.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.23,269.56 463.52,269.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.11,270.91 465.11,269.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.11,269.9 465.56,269.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.56,269.9 465.95,269.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.23,269.56 466.68,269.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.13,269.9 466.68,269.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.13,270.91 467.13,269.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.13,270.91 465.11,270.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.95,269.56 466.23,269.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<path d="M467.43 261.12L467.43 261.01 468.15 261.01 468.15 261.12 467.43 261.12Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M467.54 267.69L467.43 267.69 467.43 261.12 467.54 261.12 467.54 267.69Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="468.15,261.06 468.29,261.9 468.68,262.65 469.28,263.24 470.05,263.61 470.88,263.71" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.8,261.06 470.8,263.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469.48,264.66 469.77,264.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="469.77,264.73 470.03,264.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.03,264.95 470.2,265.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.2,265.27 470.26,265.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.26,265.67 470.17,266.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.6,267.69 470.6,266.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.6,266.96 470.41,266.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.41,266.92 470.2,266.78 470.1,266.53 470.17,266.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="468.78,266.28 468.85,266.53 468.76,266.78 468.54,266.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="468.36,267.69 470.6,267.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="468.36,266.96 468.54,266.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="468.36,267.69 468.36,266.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="468.78,266.28 468.69,265.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="468.69,265.67 468.75,265.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="468.75,265.27 468.92,264.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="468.92,264.95 469.19,264.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="469.19,264.73 469.48,264.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.13,261.06 472.27,261.9 472.66,262.65 473.26,263.24 474.02,263.61 474.86,263.71" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.78,261.06 474.78,263.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<path d="M472.13 261.01L472.13 261.12 470.8 261.12 470.8 261.01 472.13 261.01Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M471.52 267.69L471.41 267.69 471.41 261.12 471.52 261.12 471.52 267.69Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="473.46,264.66 473.75,264.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.75,264.73 474.01,264.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.01,264.95 474.18,265.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.18,265.27 474.24,265.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.24,265.67 474.15,266.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.58,267.69 474.58,266.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.58,266.96 474.39,266.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.39,266.92 474.18,266.78 474.08,266.53 474.15,266.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.76,266.28 472.83,266.53 472.74,266.78 472.52,266.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.33,267.69 474.58,267.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.33,266.96 472.52,266.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.33,267.69 472.33,266.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.76,266.28 472.67,265.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.67,265.67 472.73,265.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.73,265.27 472.9,264.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.9,264.95 473.17,264.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.17,264.73 473.46,264.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<path d="M475.45 261.01L475.45 261.12 474.78 261.12 474.78 261.01 475.45 261.01Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="480.99,265.77 480.77,265.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="480.77,265.77 480.77,265.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="480.77,265.11 480.99,265.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="480.99,265.11 480.99,265.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.79,265.77 476.57,265.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.57,265.77 476.57,265.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.57,265.11 476.79,265.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.79,265.11 476.79,265.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="480.77,265.11 480.77,261.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.79,265.11 476.93,264.06 477.34,263.08 478,262.25 478.85,261.62 479.84,261.24 480.89,261.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="480.65,265.11 480.65,261.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="480.65,265.11 480.65,265.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="480.77,265.11 480.65,265.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.57,265.11 476.57,265.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.99,265.11 480.99,265.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.99,265.77 481.43,265.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.99,265.11 481.43,265.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.1,271.74 482.1,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="481.43,271.08 481.43,265.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.34,271.08 467.51,271.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.66,269.64 456.66,263.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.66,269.64 459.34,269.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.34,271.08 459.34,269.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.12,271.08 459.12,269.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.66,269.86 459.12,269.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="481.43,265.11 481.43,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="476.13,265.11 476.13,260.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.47,260.36 476.13,260.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="476.13,265.11 476.57,265.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="476.13,265.77 476.57,265.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.47,267.76 475.47,260.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="476.13,271.08 476.57,271.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.17,271.08 475.47,271.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="467.51,267.76 475.47,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.17,268.42 475.47,268.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="476.13,271.08 476.13,265.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.47,271.08 475.47,268.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.17,271.08 468.17,268.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="467.51,271.08 467.51,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.66,271.08 459.12,271.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.03,271.74 471.07,271.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456,271.74 456,254.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.66,271.08 456.66,269.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.02,263.5 458.02,256.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.33,254.06 456,254.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.33,254.72 456.66,254.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.66,256.43 458.02,256.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.66,256.87 457.58,256.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.66,263.5 458.02,263.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.66,263.06 457.58,263.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.58,263.06 457.58,256.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.66,263.06 456.66,256.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.66,256.43 456.66,254.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.99,271.08 481.43,271.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.99,271.74 482.1,271.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.99,271.08 480.99,271.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="476.57,271.08 476.57,271.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.77,271.08 480.77,267.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.79,271.08 476.93,270.03 477.34,269.05 478,268.22 478.85,267.59 479.84,267.21 480.89,267.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="480.65,271.08 480.65,267.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="480.65,271.08 480.65,271.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="480.77,271.08 480.65,271.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.79,271.08 476.57,271.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.57,271.08 476.57,271.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.57,271.74 476.79,271.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.79,271.74 476.79,271.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="480.99,271.08 480.77,271.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="480.77,271.08 480.77,271.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="480.77,271.74 480.99,271.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="480.99,271.74 480.99,271.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.97,229.58 353.26,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.26,229.58 353.26,235.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.92,235.69 344.09,235.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,229.58 344.09,235.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.97,228.91 353.92,228.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.75,229.58 344.75,235.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.26,235.03 344.75,235.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.92,228.91 353.92,235.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.11,261.46 321.11,263.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.78,261.46 321.78,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.93,263.95 321.11,263.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.93,263.5 321.11,263.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.93,263.5 310.93,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.11,263.95 321.11,264.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.11,265.05 321.11,269.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.78,268.42 321.78,271.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.78,271.08 329.73,271.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.73,261.46 329.73,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.4,261.46 330.4,263.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.7,255.11 335.7,263.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.11,261.46 321.78,261.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.4,263.78 330.84,263.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.4,264.44 330.84,264.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.4,264.44 330.4,271.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.73,268.42 329.73,271.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.4,271.08 330.95,271.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.26,263.78 335.7,263.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.26,264.44 335.7,264.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.26,263.78 335.26,264.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.84,263.78 330.84,264.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.04,263.78 335.04,259.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.06,263.78 331.2,262.73 331.61,261.76 332.27,260.93 333.12,260.3 334.11,259.91 335.16,259.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.92,263.78 334.92,259.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.92,263.78 334.92,263.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.04,263.78 334.92,263.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.06,263.78 330.84,263.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.84,263.78 330.84,264.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.84,264.44 331.06,264.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.06,264.44 331.06,263.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.26,263.78 335.04,263.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.04,263.78 335.04,264.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.04,264.44 335.26,264.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.26,264.44 335.26,263.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.7,264.44 335.7,271.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.37,254.44 336.37,271.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.73,261.46 330.4,261.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.79,264.67 323.5,264.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.5,264.74 323.23,264.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.23,264.97 323.06,265.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.06,265.29 323,265.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323,265.69 323.09,266.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.66,267.71 322.66,266.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.66,266.98 322.85,266.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.85,266.94 323.07,266.79 323.16,266.54 323.09,266.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.48,266.29 324.41,266.54 324.5,266.79 324.72,266.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.91,267.71 322.66,267.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.91,266.98 324.72,266.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.91,267.71 324.91,266.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.48,266.29 324.57,265.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.57,265.69 324.51,265.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.51,265.29 324.34,264.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.34,264.97 324.08,264.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.08,264.74 323.79,264.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<path d="M325.11 261.59L325.11 261.48 326.44 261.48 326.44 261.59 325.11 261.59Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="325.11,261.54 324.98,262.37 324.59,263.12 323.98,263.71 323.22,264.08 322.38,264.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="322.46,261.54 322.46,264.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.76,264.67 327.48,264.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.48,264.74 327.21,264.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.21,264.97 327.04,265.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.04,265.29 326.98,265.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.98,265.69 327.07,266.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.64,267.71 326.64,266.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.64,266.98 326.83,266.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.83,266.94 327.05,266.79 327.14,266.54 327.07,266.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.46,266.29 328.39,266.54 328.48,266.79 328.7,266.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.89,267.71 326.64,267.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.89,266.98 328.7,266.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.89,267.71 328.89,266.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.46,266.29 328.55,265.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.55,265.69 328.49,265.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.49,265.29 328.32,264.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.32,264.97 328.05,264.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.05,264.74 327.76,264.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.09,261.54 328.96,262.37 328.57,263.12 327.96,263.71 327.2,264.08 326.36,264.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="326.44,261.54 326.44,264.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<path d="M325.83 267.76L325.72 267.76 325.72 261.59 325.83 261.59 325.83 267.76Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M329.73 261.48L329.73 261.59 329.09 261.59 329.09 261.48 329.73 261.48Z" fill-rule="evenodd" fill="yellow"/>
+<path d="M321.78 261.59L321.78 261.48 322.46 261.48 322.46 261.59 321.78 261.59Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="318.58,261.79 316.9,261.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.67,262.02 316.67,263.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.67,263.48 318.8,263.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.8,263.48 318.8,262.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.41,262.07 317.06,262.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.06,262.97 318.41,262.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.52,262.86 318.52,262.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.95,262.18 316.95,262.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.52,262.18 318.49,262.1 318.41,262.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.06,262.07 316.98,262.1 316.95,262.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.95,262.86 316.98,262.94 317.06,262.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.41,262.97 318.49,262.94 318.52,262.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.8,262.02 318.74,261.86 318.58,261.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.9,261.79 316.74,261.86 316.67,262.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.19,261.79 313.5,261.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.28,262.02 313.28,263.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.28,263.48 315.41,263.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.41,263.48 315.41,262.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.02,262.07 313.67,262.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.67,262.97 315.02,262.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.13,262.86 315.13,262.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.56,262.18 313.56,262.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.13,262.18 315.1,262.1 315.02,262.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.67,262.07 313.59,262.1 313.56,262.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.56,262.86 313.59,262.94 313.67,262.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.02,262.97 315.1,262.94 315.13,262.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.41,262.02 315.34,261.86 315.19,261.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.5,261.79 313.34,261.86 313.28,262.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.8,269.53 321.11,269.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.8,269.53 317.8,271.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.58,269.31 321.11,269.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.58,269.31 317.58,271.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.11,269.53 321.11,271.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.8,271.08 321.11,271.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.1,418.06 482.1,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="481.43,418.73 481.43,421.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.46,422.04 481.43,422.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.13,421.38 481.43,421.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.64,418.73 457.08,418.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.97,418.06 457.08,418.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.13,418.73 470.13,421.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.46,418.73 469.46,422.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.48,418.73 463.48,419.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.04,418.73 463.04,428.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="462.6,418.73 462.6,428.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="461.93,418.73 461.93,425.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="461.93,428.45 463.48,428.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="462.6,428.01 463.04,428.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.13,418.73 481.43,418.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.48,418.73 465.91,418.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="462.6,418.73 463.04,418.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.97,435.47 455.97,418.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.42,435.47 456.42,434.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.64,434.73 456.64,426.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.42,434.73 456.64,434.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="481.43,422.04 481.43,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.64,425.36 457.08,425.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.64,426.02 457.08,426.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.64,425.36 456.64,418.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="461.93,426.02 461.93,428.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.48,419.94 465.91,419.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="465.91,418.73 465.91,419.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.48,420.16 466.13,420.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.13,418.73 466.13,420.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.48,420.16 463.48,428.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.13,418.73 469.46,418.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="461.5,418.73 461.93,418.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="461.5,418.06 482.1,418.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="461.5,418.73 461.5,418.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.08,418.73 457.08,418.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.3,418.73 457.3,422.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.27,418.73 461.13,419.78 460.72,420.75 460.07,421.58 459.22,422.21 458.23,422.59 457.18,422.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.42,418.73 457.42,422.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.42,418.73 457.42,418.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.3,418.73 457.42,418.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.27,418.73 461.5,418.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.5,418.73 461.5,418.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.5,418.06 461.27,418.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.27,418.06 461.27,418.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.08,418.73 457.3,418.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.3,418.73 457.3,418.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.3,418.06 457.08,418.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.08,418.06 457.08,418.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.5,426.02 461.93,426.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="461.5,425.36 461.93,425.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="461.5,426.02 461.5,425.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.08,426.02 457.08,425.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.3,426.02 457.3,430" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.27,426.02 461.13,427.07 460.72,428.04 460.07,428.88 459.22,429.51 458.23,429.89 457.18,430" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.42,426.02 457.42,429.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.42,426.02 457.42,426.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.3,426.02 457.42,426.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.27,426.02 461.5,426.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.5,426.02 461.5,425.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.5,425.36 461.27,425.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.27,425.36 461.27,426.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.08,426.02 457.3,426.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.3,426.02 457.3,425.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.3,425.36 457.08,425.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.08,425.36 457.08,426.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="378.13,331.09 378.13,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.01,331.09 380.01,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,332.97 380.01,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.13,331.09 380.01,331.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,331.09 414.05,331.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,332.97 414.05,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.05,331.09 414.05,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,331.09 412.17,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,331.09 414.05,331.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,332.97 414.05,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.05,331.09 414.05,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.17,331.09 412.17,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,331.09 446.21,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.09,331.09 448.09,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,332.97 448.09,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,331.09 448.09,331.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,331.09 446.21,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.09,331.09 448.09,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,332.97 448.09,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,331.09 448.09,331.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,421.6 510.17,421.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,427.79 509.73,427.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,428.56 508.46,427.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,427.79 509.73,427.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,428.56 508.46,428.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,427.79 508.46,427.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,428.65 510.39,427.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,428.65 509.73,428.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,427.71 509.73,427.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,427.79 509.73,427.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,414.97 509.73,414.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,414.89 509.73,414.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,415.83 509.73,415.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,415.83 510.39,414.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,414.97 508.46,414.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,415.74 508.46,415.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,421.6 509.07,421.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,421.93 509.07,421.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,414.97 509.73,414.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,421.6 509.07,421.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,421.6 509.73,421.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,415.74 509.73,415.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,415.74 508.46,414.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,421.6 509.73,421.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,415.74 509.07,421.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,415.74 509.73,421.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,421.38 509.48,415.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,421.38 509.31,415.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,415.96 509.73,415.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,415.74 509.07,415.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,415.74 509.07,415.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,415.96 509.73,415.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,421.6 509.73,421.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,421.38 509.07,421.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,421.38 509.07,421.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,421.6 509.73,421.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,421.93 509.73,421.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,421.93 509.07,421.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,427.79 509.73,427.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,421.93 509.07,427.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,421.93 509.73,427.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,427.57 509.48,422.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,427.57 509.31,422.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,422.15 509.73,421.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,421.93 509.07,421.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,421.93 509.07,422.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,422.15 509.73,422.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,427.79 509.73,427.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,427.57 509.07,427.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,427.57 509.07,427.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,427.79 509.73,427.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,428.56 509.73,428.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,351.64 508.46,350.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,351.64 508.46,351.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,350.87 508.46,350.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,344.68 510.17,345.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,357.5 509.73,357.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,357.28 509.06,357.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,357.28 509.06,357.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,357.5 509.73,357.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,351.86 509.73,351.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,351.64 509.06,351.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,351.64 509.06,351.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,351.86 509.73,351.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,357.28 509.48,351.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,357.28 509.31,351.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,351.64 509.73,357.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,351.64 509.06,357.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,351.64 509.73,351.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,350.87 509.73,350.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,350.65 509.06,350.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,350.65 509.06,350.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,350.87 509.73,350.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,345.23 509.73,345.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,345.01 509.06,345.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,345.01 509.06,345.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,345.23 509.73,345.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,350.65 509.48,345.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,350.65 509.31,345.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,345.01 509.73,350.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,345.01 509.06,350.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,350.87 509.73,350.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,345.01 509.06,344.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,345.01 509.73,345.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,344.68 509.73,344.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,344.46 509.06,344.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,344.46 509.06,344.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,344.68 509.73,344.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,344.68 509.73,344.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,344.68 509.73,344.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,344.68 509.06,345.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,344.68 509.06,344.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,351.73 510.39,350.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,351.73 509.73,351.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,350.79 509.73,350.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,344.68 509.06,344.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,345.01 509.06,345.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,357.5 509.73,357.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,357.5 509.73,357.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,357.28 509.06,357.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,357.28 509.06,357.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,357.5 509.73,357.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.07,357.5 509.73,357.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,344.68 509.73,344.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,344.68 509.73,344.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,344.46 509.06,344.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,344.46 509.06,344.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,344.68 509.73,344.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,344.68 509.73,344.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,338.05 508.46,338.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,338.82 508.46,338.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,338.82 508.46,338.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,332.19 509.06,332.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.17,331.86 509.06,331.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,337.97 509.73,337.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,338.91 509.73,338.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.39,338.91 510.39,337.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,331.86 509.06,331.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,331.86 509.06,332.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,331.86 509.73,331.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,331.86 509.73,331.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,332.19 509.73,332.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,332.19 509.06,331.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,338.05 509.73,338.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,332.19 509.06,338.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,332.19 509.73,338.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,337.83 509.48,332.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,337.83 509.31,332.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,332.41 509.73,332.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,332.19 509.06,332.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,332.19 509.06,332.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,332.41 509.73,332.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,338.05 509.73,337.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,337.83 509.06,337.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,337.83 509.06,338.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,338.05 509.73,338.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,338.82 509.73,338.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.06,338.82 509.06,344.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,338.82 509.73,344.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.48,344.46 509.48,339.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.31,344.46 509.31,339.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,339.04 509.73,338.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,338.82 509.06,338.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,338.82 509.06,339.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,339.04 509.73,339.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,344.68 509.73,344.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,344.46 509.06,344.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,344.46 509.06,344.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,344.68 509.73,344.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="510.17,331.86 510.17,332.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.7,355.84 463.28,355.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.7,356.51 463.94,356.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.94,358.61 463.28,358.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.58,332.03 480.25,332.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.7,331.14 480.25,331.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="481.24,338.16 481.24,332.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.51,332.97 469.58,347" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.58,332.03 480.63,347" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.29,384.25 482.12,384.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.29,383.58 482.12,383.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.71,384.25 486.71,382.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.51,383.58 482.51,379.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.49,383.58 486.35,382.53 485.94,381.56 485.28,380.73 484.43,380.1 483.45,379.71 482.39,379.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.64,383.58 482.64,379.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.64,383.58 482.64,383.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.51,383.58 482.64,383.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.49,384.25 486.71,384.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.71,384.25 486.71,383.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.71,383.58 486.49,383.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.49,383.58 486.49,384.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.29,384.25 482.51,384.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.51,384.25 482.51,383.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.51,383.58 482.29,383.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.29,383.58 482.29,384.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.12,305.45 482.12,307.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.27,306.28 311.93,318.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.93,306.28 320.27,318.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,287.54 508.46,299.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.71,266.36 310.71,265.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,266.36 310.05,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.71,266.36 310.05,266.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.71,270.33 310.05,270.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.71,270.11 314.25,270.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.71,266.58 311.82,266.76 312.82,267.28 313.61,268.09 314.1,269.1 314.25,270.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.71,270 314.24,270" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.71,270 310.71,270" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.71,270.11 310.71,270" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.71,266.58 310.71,266.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.71,266.36 310.05,266.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.05,266.36 310.05,266.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.05,266.58 310.71,266.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.71,270.33 310.71,270.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.71,270.11 310.05,270.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.05,270.11 310.05,270.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.05,270.33 310.71,270.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.46,338.82 508.46,350.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.03,370.49 482.03,382.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.74,433.45 502.79,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,254.17 354.53,254.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,254.17 344.09,246.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.75,253.5 344.75,247.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.75,253.5 353.86,253.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.86,253.5 353.86,247.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.53,254.17 354.53,246.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.75,247.54 353.86,247.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.09,246.87 354.53,246.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.97,229.58 345.97,235.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.91,247.54 345.91,253.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.26,247.54 446.26,253.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.3,247.54 446.26,253.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,326 283.72,338.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.18,279.91 448.09,279.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,211.61 310.02,204.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.93,227.7 311.93,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.93,202.06 311.93,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.33,203.94 480.33,202.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.33,229.58 480.33,227.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.49,330.12 353.57,330.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.15,330.78 352.9,330.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.57,330.12 353.57,333.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.9,330.78 352.9,333.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.49,333.93 353.57,333.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.15,333.27 352.9,333.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.49,330.12 336.49,333.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.15,330.78 337.15,333.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.1,414.25 310.97,414.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.77,414.91 310.97,414.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.77,423.53 311.68,423.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.77,422.87 313.2,422.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.42,422.87 320.92,422.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.92,414.91 320.92,422.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<path d="M321.51 423.53L321.62 423.53 321.62 428.57 321.51 428.57 321.51 423.53Z" fill-rule="evenodd" fill="yellow"/>
+<polyline points="321.58,418.62 321.58,421.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.58,421.93 321.58,423.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.77,421.43 313.42,421.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.42,422.87 313.42,421.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.2,422.87 313.2,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.77,421.66 313.2,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.12,423.53 321.58,423.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.77,423.53 310.77,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="315.39,414.91 320.92,414.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="315.39,414.25 321.58,414.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="315.39,414.91 315.39,414.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.97,414.91 310.97,414.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.19,414.91 311.19,418.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.17,414.91 315.03,415.96 314.61,416.94 313.96,417.77 313.11,418.4 312.12,418.78 311.07,418.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.31,414.91 311.31,418.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.31,414.91 311.31,414.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.19,414.91 311.31,414.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.17,414.91 315.39,414.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.39,414.91 315.39,414.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.39,414.25 315.17,414.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.17,414.25 315.17,414.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.97,414.91 311.19,414.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.19,414.91 311.19,414.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.19,414.25 310.97,414.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.97,414.25 310.97,414.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.65,372.03 494.29,374.77 495.44,374.68 494.2,376.63 495.35,376.54 496.96,379.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="494.34,376.42 494.34,376.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="497.4,376.64 496.9,375.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="496.9,375.63 497.4,374.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="497.66,376.64 497.15,375.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="497.15,375.63 497.66,374.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="497.66,376.64 497.4,376.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="497.66,374.62 497.4,374.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M497.66 376.64L497.4 376.64 496.9 375.63 497.15 375.63 497.66 376.64Z" fill-rule="evenodd" fill="blue"/>
+<path d="M497.66 374.62L497.4 374.62 496.9 375.63 497.15 375.63 497.66 374.62Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="502.5,375.63 496.88,375.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="455.11,370.49 455.11,383.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,382.37 462.79,382.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.3,376.12 467.11,376.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.3,377.63 468.88,377.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.46,375.95 467.11,375.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.46,377.79 468.98,377.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.3,376.12 475.3,377.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.46,375.95 475.46,377.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="467.11,375.95 467.11,376.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="467.29,371.32 467.29,371.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="468.42,371.34 468.42,371.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="469.55,371.34 469.55,371.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="470.69,371.34 470.69,371.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="471.82,371.34 471.82,371.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="472.95,371.34 472.95,371.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="474.09,371.34 474.09,371.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.22,371.34 475.22,371.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.46,371.51 467.11,371.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.46,371.67 467.11,371.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="467.11,371.51 467.11,371.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.46,382.18 471.62,382.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.46,382.02 471.52,382.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.46,371.51 475.46,371.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.46,382.18 475.46,382.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="467.29,371.67 467.29,375.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="468.42,371.67 468.42,375.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="469.55,371.67 469.55,375.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="470.69,371.67 470.69,375.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="471.82,371.67 471.82,375.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="472.95,371.67 472.95,375.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="474.09,371.67 474.09,375.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.22,371.67 475.22,375.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.22,382.02 475.22,377.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="474.09,382.02 474.09,377.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="472.95,382.02 472.95,377.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="471.82,382.02 471.82,377.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="470.69,380.86 470.69,379.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="469.55,378.75 469.55,377.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.22,382.37 475.22,382.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="474.09,382.37 474.09,382.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="472.95,382.37 472.95,382.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.26,379.76 472.01,379.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M472.79 378.75L472.53 378.75 472.03 379.76 472.28 379.76 472.79 378.75Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="472.79,378.75 472.53,378.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="472.28,379.76 472.79,378.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="472.03,379.76 472.53,378.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M472.79 380.77L472.53 380.77 472.03 379.76 472.28 379.76 472.79 380.77Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="472.79,380.77 472.53,380.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="472.79,380.77 472.28,379.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="472.53,380.77 472.03,379.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.26,373.86 476.26,379.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.26,373.86 465.47,373.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="463.45,373.13 463.45,374.08 463.5,374.27 463.59,374.39 463.73,374.46 463.83,374.46 463.97,374.39 464.07,374.27 464.11,374.08 464.11,373.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="464.49,374.46 464.49,373.13 464.92,373.13 465.06,373.19 465.11,373.26 465.15,373.38 465.15,373.57 465.11,373.7 465.06,373.76 464.92,373.82 464.49,373.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="470.69,379.01 470.69,377.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="456,271.74 447.31,271.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,279.81 446.21,276.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.18,271.74 472.18,273.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.97,229.58 353.26,235.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.91,247.54 353.86,253.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.44,178.46 471.3,180.26 470.59,181.17 472.89,181.22 472.19,182.12 472.86,183.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="472.29,182 472.29,182.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="327.84,172.16 311.98,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.02,193.97 310.02,178.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,332.33 508.46,338.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,261.9 283.72,273.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,274.72 283.72,280.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,280.97 283.72,286.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,287.54 283.72,299.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,313.18 283.72,325.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,345.12 283.72,350.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,338.82 283.72,363.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,364.46 283.72,376.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,377.28 283.72,382.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,428.56 508.46,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,415.74 508.46,427.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,402.92 508.46,414.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,377.28 508.46,383.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,351.64 508.46,357.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,319.45 508.46,325.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,326 508.46,331.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,313.18 508.46,319.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,306.65 508.46,312.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,273.95 508.46,261.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.46,261.13 508.46,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.56,256.24 508.46,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.15,237.26 482.15,229.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="464.02,237.7 464.02,241.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468,237.7 467.86,238.75 467.44,239.72 466.79,240.55 465.94,241.18 464.95,241.57 463.9,241.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.14,237.7 464.14,241.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.14,237.7 464.14,237.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.02,237.7 464.14,237.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.8,237.7 464.02,237.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.02,237.7 464.02,237.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.02,237.26 463.8,237.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.8,237.26 463.8,237.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.87,237.26 468,237.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.87,237.7 468,237.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.65,237.7 470.87,237.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.87,237.7 470.87,237.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.87,237.26 470.65,237.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.65,237.26 470.65,237.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468,237.7 468.22,237.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.22,237.7 468.22,237.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.22,237.26 468,237.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468,237.26 468,237.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.22,237.48 470.65,237.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.98,172.16 310.79,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.92,163.42 360.92,158.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="379.7,169.36 379.7,170.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.04,169.36 379.04,170.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.7,169.36 379.04,169.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.7,170.03 379.04,170.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="355.3,169.97 354.63,169.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="355.3,169.31 354.63,169.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.63,169.31 354.63,169.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="355.3,169.31 355.3,169.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="355.38,157.65 355.38,158.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.71,157.65 354.71,158.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="355.38,158.31 354.71,158.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.38,161.8 357.38,160.47 357.71,160.47 357.85,160.54 357.95,160.66 358,160.79 358.04,160.98 358.04,161.29 358,161.48 357.95,161.61 357.85,161.74 357.71,161.8 357.38,161.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="358.38,161.8 358.38,160.47 359.04,161.8 359.04,160.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.46,161.67 359.42,161.74 359.46,161.8 359.51,161.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="375.61,166.99 369.9,166.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M370.67 168L370.42 168 369.91 166.99 370.16 166.99 370.67 168Z" fill-rule="evenodd" fill="blue"/>
+<path d="M370.67 165.98L370.42 165.98 369.91 166.99 370.16 166.99 370.67 165.98Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="370.67,165.98 370.42,165.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.67,165.98 370.16,166.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369.91,166.99 370.42,168" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.42,165.98 369.91,166.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="375.61,160.99 359.85,160.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="375.61,166.99 375.61,160.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="380.37,156.91 359.71,156.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.7,157.57 359.71,157.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="373.27,158.6 373.27,158.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.72,169.23 378.72,169.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.61,163.42 368.61,158.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369.72,163.42 369.72,158.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.82,163.42 370.82,158.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.61,169.23 368.61,167" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369.72,169.23 369.72,164.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.82,169.23 370.82,164.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="366.94,169.4 378.72,169.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="367.02,169.23 378.72,169.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="373.1,164.28 373.1,163.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="371.91,163.42 371.91,158.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369.38,164.28 373.1,164.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="371.91,169.23 371.91,164.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="360.89,163.59 373.1,163.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="360.72,163.42 373.25,163.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369.3,164.44 373.25,164.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="373.25,164.44 373.25,163.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="361.63,169.96 361.1,169.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.63,169.43 361.1,169.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.1,169.43 361.1,169.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.63,169.43 361.63,169.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.6,158.31 378.94,158.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.6,157.65 378.94,157.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.94,157.65 378.94,158.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.6,157.65 379.6,158.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.02,169.96 378.85,169.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="373,163.42 373,158.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="373,169.23 373,164.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.01,163.42 362.01,158.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="363.1,163.42 363.1,158.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="373.27,158.6 360.66,158.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="373.27,158.44 360.66,158.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="364.19,163.42 364.19,158.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.29,163.42 365.29,158.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="360.66,158.6 360.66,158.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="366.4,163.42 366.4,158.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="366.94,169.4 367.74,167.71 367.21,167.02 368.94,166.99 368.41,166.31 369.4,164.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.85,158.42 355.4,158.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.85,169.96 378.85,158.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="367.5,163.42 367.5,158.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="353.86,157.57 353.86,156.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.52,157.57 354.52,156.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.86,157.57 354.52,157.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.86,162.77 354.52,162.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.86,157.57 353.86,162.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.52,157.57 354.52,162.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.26,162.55 354.26,157.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.11,162.55 354.11,157.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.52,157.79 354.52,157.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.52,157.57 353.86,157.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.86,157.57 353.86,157.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.86,157.79 354.52,157.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.52,162.77 354.52,162.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.52,162.55 353.86,162.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.86,162.55 353.86,162.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.86,162.77 354.52,162.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.52,157.57 353.86,157.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.52,156.91 353.86,156.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.71,157.57 359.71,156.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.52,157.57 354.52,156.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.71,157.57 354.52,157.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.71,156.91 354.52,156.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.74,157.31 359.49,157.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.74,157.17 359.49,157.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.49,157.57 359.71,157.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.71,157.57 359.71,156.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.71,156.91 359.49,156.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.49,156.91 359.49,157.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.52,157.57 354.74,157.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.74,157.57 354.74,156.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.74,156.91 354.52,156.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.52,156.91 354.52,157.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.71,157.65 355.38,157.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.02,169.96 361.02,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.89,163.59 360.89,170.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="360.72,163.42 360.72,170.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="355.4,170.72 355.4,158.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.52,170.72 354.52,162.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.86,170.28 353.86,162.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.7,170.72 379.7,157.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.37,170.28 380.37,156.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="355.95,170.67 355.95,166.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.93,170.67 359.79,169.62 359.38,168.65 358.72,167.82 357.87,167.19 356.89,166.8 355.83,166.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="356.08,170.67 356.08,166.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="356.08,170.67 356.08,170.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="355.95,170.67 356.08,170.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="355.73,170.72 355.73,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.15,171.45 360.15,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.93,171.45 360.15,171.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.15,171.45 360.15,170.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.15,170.67 359.93,170.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.93,170.67 359.93,171.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="355.73,171.45 355.95,171.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="355.95,171.45 355.95,170.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="355.95,170.67 355.73,170.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="355.73,170.67 355.73,171.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="355.73,170.72 354.3,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.83,170.72 360.15,170.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.15,171.45 378.07,171.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="367.51,169.23 367.51,168.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.61,166.57 368.61,165.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="348.89,442.41 348.89,438.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="347.78,448.14 347.78,443.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="348.89,448.14 348.89,443.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="349.99,448.14 349.99,443.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="351.1,448.14 351.1,443.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="352.2,448.14 352.2,443.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="342.68,436.13 342.68,443.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="342.52,436.13 342.52,443.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="342.94,448.14 342.94,448.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="354.56,442.58 346.84,442.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="354.73,442.41 346.92,442.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="360.56,437.52 349.25,437.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="350.8,437.69 349.17,437.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="360.56,437.69 349.17,437.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="354.73,443.39 349.16,443.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="360.85,436.7 360.85,437.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.51,436.7 361.51,437.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.85,436.7 361.51,436.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.85,437.36 361.51,437.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.54,448.14 354.54,448.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="354.73,443.22 354.73,443.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="354.54,448.14 342.94,448.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="354.54,448.3 342.94,448.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="353.31,448.14 353.31,443.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="361.54,449.08 360.88,449.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.54,448.41 360.88,448.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.88,448.41 360.88,449.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.54,448.41 361.54,449.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.14,448.41 337.14,449.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.48,448.41 336.48,449.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.14,448.41 336.48,448.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.14,449.08 336.48,449.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.14,437.36 336.48,437.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.14,436.7 336.48,436.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.48,436.7 336.48,437.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.14,436.7 337.14,437.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.76,449.16 361.61,449.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.76,449.83 336.42,449.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.73,443.22 354.73,442.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="354.56,443.22 354.56,442.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="349.99,442.41 349.99,437.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="351.1,442.41 351.1,437.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="352.2,442.41 352.2,437.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="353.31,442.41 353.31,437.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="346.81,442.65 347.52,441.15 346.81,440.24 349.12,440.2 348.41,439.29 349.27,437.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="347.76,443.39 342.52,443.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="354.56,443.22 342.68,443.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="354.73,443.39 342.52,443.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="350.67,441.26 350.16,440.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="350.16,440.25 350.67,439.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="350.92,441.26 350.42,440.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="350.42,440.25 350.92,439.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="350.92,441.26 350.67,441.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="350.92,439.24 350.67,439.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M350.92 441.26L350.67 441.26 350.16 440.25 350.42 440.25 350.92 441.26Z" fill-rule="evenodd" fill="blue"/>
+<path d="M350.92 439.24L350.67 439.24 350.16 440.25 350.42 440.25 350.92 439.24Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="355.52,440.25 350.15,440.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="355.52,440.25 355.78,440.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="355.78,440.25 355.78,445.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="355.78,445.93 341.84,445.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="354.41,442.41 354.41,437.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="354.41,448.14 354.41,443.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="342.98,437.29 343.52,437.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.98,436.76 343.52,436.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="343.52,436.76 343.52,437.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.98,436.76 342.98,437.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.98,448.59 342.98,449.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="343.52,448.59 343.52,449.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.98,448.59 343.52,448.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.98,449.12 343.52,449.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.42,449.14 336.42,449.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.95,449.14 342.95,449.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.42,449.16 342.95,449.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.73,449.42 336.64,449.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.73,449.61 336.64,449.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.64,449.16 336.42,449.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.42,449.16 336.42,449.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.42,449.83 336.64,449.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.64,449.83 336.64,449.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.95,449.16 342.73,449.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.73,449.16 342.73,449.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.73,449.83 342.95,449.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.95,449.83 342.95,449.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.95,449.83 362.27,449.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.42,449.83 342.95,449.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.76,442.63 335.76,449.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.42,449.16 336.42,448.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.42,448.94 335.76,448.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.76,448.94 335.76,449.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.76,449.16 336.42,449.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.42,442.85 336.42,442.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.42,442.63 335.76,442.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.76,442.63 335.76,442.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.76,442.85 336.42,442.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.16,448.94 336.16,442.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.97,448.94 335.97,442.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.42,442.63 336.42,449.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.76,449.16 335.76,449.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.46,436.13 337.46,440.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="341.43,436.13 341.29,437.18 340.88,438.16 340.23,438.99 339.38,439.62 338.39,440 337.34,440.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.58,436.13 337.58,440.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.58,436.13 337.58,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.46,436.13 337.58,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.42,436.13 336.42,442.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.76,436.41 335.76,442.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="362.27,436.41 362.27,449.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.61,436.02 361.61,449.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.66,436.13 341.66,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.43,436.13 341.66,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="341.66,436.13 341.66,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="341.66,435.47 341.43,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="341.43,435.47 341.43,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.73,435.47 341.66,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="343.73,436.13 341.66,436.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="343.73,436.13 343.73,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.23,435.47 336.2,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.23,436.13 336.2,436.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.23,436.13 337.46,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.46,436.13 337.46,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.46,435.47 337.23,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.23,435.47 337.23,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="346.68,448.14 346.68,443.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="345.57,448.14 345.57,443.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="344.47,448.14 344.47,443.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="343.36,448.14 343.36,443.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="339.35,446.4 339.35,445.07 339.68,445.07 339.82,445.14 339.92,445.26 339.96,445.39 340.01,445.58 340.01,445.89 339.96,446.08 339.92,446.21 339.82,446.34 339.68,446.4 339.35,446.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="340.34,446.4 340.34,445.07 341.01,446.4 341.01,445.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="341.43,446.27 341.39,446.34 341.43,446.4 341.48,446.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="360.56,437.52 360.56,437.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="327.84,193.1 323.86,193.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,189.12 326.79,189.26 325.82,189.67 324.98,190.33 324.35,191.18 323.97,192.16 323.86,193.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,192.97 323.87,192.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,192.97 327.84,192.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,193.1 327.84,192.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.28,193.32 328.28,193.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.28,193.1 327.84,193.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,193.1 327.84,193.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,193.32 328.28,193.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.72,300.36 283.72,312.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.33,297.32 325.33,297.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.21,297.32 326.21,296.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.33,297.32 326.21,297.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.33,305.28 326.21,305.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.21,297.54 329.97,297.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.21,301.3 327.39,301.11 328.46,300.56 329.29,299.7 329.81,298.62 329.97,297.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.21,297.66 329.96,297.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.21,297.66 326.21,297.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.21,297.54 326.21,297.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.21,305.06 326.21,304.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.21,304.94 326.21,304.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.21,304.94 329.96,304.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.97,305.17 329.81,303.98 329.29,302.91 328.46,302.05 327.39,301.49 326.21,301.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.21,305.06 329.97,305.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.33,305.06 325.33,305.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.33,305.28 326.21,305.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.21,305.28 326.21,305.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.21,305.06 325.33,305.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.33,297.32 325.33,297.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.33,297.54 326.21,297.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.21,297.54 326.21,297.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.21,297.32 325.33,297.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.19,330.78 371.19,333.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="370.53,330.12 370.53,333.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="386.94,330.78 386.94,333.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.61,330.12 387.61,333.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="371.19,333.27 386.94,333.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="370.53,333.93 387.61,333.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="371.19,330.78 386.94,330.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="370.53,330.12 387.61,330.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="404.57,330.12 404.57,333.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="405.23,330.78 405.23,333.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.64,330.12 421.64,333.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.98,330.78 420.98,333.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="404.57,330.12 421.64,330.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="405.23,330.78 420.98,330.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="404.57,333.93 421.64,333.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="405.23,333.27 420.98,333.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.02,330.78 455.02,333.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.68,330.12 455.68,333.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="439.27,333.27 455.02,333.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.61,333.93 455.68,333.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="439.27,330.78 455.02,330.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.61,330.12 455.68,330.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="439.27,330.78 439.27,333.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.61,330.12 438.61,333.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.55,355.76 455.55,359.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="454.88,356.42 454.88,358.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.61,355.76 455.55,355.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="439.27,356.42 454.88,356.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.61,359.57 455.55,359.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="439.27,358.91 454.88,358.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.61,355.76 438.61,359.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="439.27,356.42 439.27,358.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.64,355.76 421.64,359.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.98,356.42 420.98,358.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="404.57,355.76 421.64,355.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="405.23,356.42 420.98,356.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="404.57,359.57 421.64,359.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="405.23,358.91 420.98,358.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="404.57,355.76 404.57,359.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="405.23,356.42 405.23,358.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.61,355.76 387.61,359.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="386.94,356.42 386.94,358.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="370.53,355.76 387.61,355.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="371.19,356.42 386.94,356.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="370.53,359.57 387.61,359.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="371.19,358.91 386.94,358.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="370.53,355.76 370.53,359.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="371.19,356.42 371.19,358.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.9,356.42 352.9,358.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.57,355.76 353.57,359.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.15,356.42 352.9,356.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.49,355.76 353.57,355.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.15,358.91 352.9,358.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.49,359.57 360.84,359.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.15,356.42 337.15,358.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.49,355.76 336.49,359.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.58,272.01 309.82,272.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.58,275.77 312.4,275.58 311.33,275.03 310.5,274.17 309.98,273.09 309.82,271.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.58,272.13 309.83,272.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.58,272.13 313.58,272.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.58,272.01 313.58,272.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.58,279.53 313.58,279.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.58,279.41 313.58,279.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.58,279.41 309.83,279.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.82,279.64 309.98,278.45 310.5,277.38 311.33,276.52 312.4,275.96 313.58,275.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.58,279.53 309.82,279.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.58,279.53 313.58,279.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.58,279.75 314.02,279.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="314.02,279.75 314.02,279.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="314.02,279.53 313.58,279.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.58,271.79 313.58,272.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.58,272.01 314.02,272.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="314.02,272.01 314.02,271.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="314.02,271.79 313.58,271.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.87,409.4 332,409.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.87,413.27 334.66,413.07 333.56,412.5 332.7,411.62 332.17,410.51 332.01,409.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.87,409.52 332.01,409.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.87,409.52 335.87,409.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.87,409.4 335.87,409.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.87,409.18 335.87,409.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.87,409.4 336.32,409.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.32,409.4 336.32,409.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.32,409.18 335.87,409.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.54,417.7 334.97,417.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.54,414.66 331.54,417.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.97,414.66 331.54,414.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.97,417.7 334.97,414.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="334.97,414.91 331.54,414.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="321.58,415.1 330.29,415.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.29,415.12 330.29,417.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.04,416.77 323.11,416.93 323.27,416.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.27,415.37 323.11,415.43 323.04,415.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.29,415.59 325.22,415.43 325.06,415.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.06,416.99 325.22,416.93 325.29,416.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.29,416.77 325.29,415.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.27,416.99 325.06,416.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.04,415.59 323.04,416.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.06,415.37 323.27,415.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.51,417.5 325.51,415.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.82,417.5 325.51,417.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.82,415.14 322.82,417.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.51,415.14 322.82,415.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324,416.18 324.05,416.06 324.16,416.01 324.28,416.06 324.33,416.18 324.28,416.3 324.16,416.35 324.05,416.3 324,416.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.1,410.13 306.24,410.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.1,414 308.89,413.81 307.79,413.24 306.93,412.35 306.4,411.24 306.24,410.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.1,410.25 306.24,410.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.1,410.25 310.1,410.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.1,410.13 310.1,410.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.1,414 310.1,414.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.1,414.22 310.55,414.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.55,414.22 310.55,414" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.55,414 310.1,414" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.1,409.91 310.1,410.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.1,410.13 310.55,410.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.55,410.13 310.55,409.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.55,409.91 310.1,409.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.17,358.61 456.17,361.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.48,358.61 459.31,359.65 458.83,360.59 458.07,361.32 457.12,361.78 456.07,361.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.27,358.61 456.27,361.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.27,358.61 456.27,358.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.17,358.61 456.27,358.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.8,358.61 462.69,358.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.69,358.61 462.69,358.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.69,358.61 462.69,361.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.9,361.92 461.85,361.78 460.9,361.32 460.14,360.59 459.65,359.65 459.48,358.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.8,358.61 462.8,361.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.8,358.61 463.02,358.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.02,358.61 463.02,358.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.02,358.16 462.8,358.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.8,358.16 462.8,358.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.95,358.61 456.17,358.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.17,358.61 456.17,358.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.17,358.16 455.95,358.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.95,358.16 455.95,358.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.05,360.03 442.92,360.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.05,363.9 440.27,363.71 441.36,363.14 442.22,362.25 442.76,361.14 442.92,359.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.05,360.16 442.91,360.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.05,360.16 439.05,360.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.05,360.03 439.05,360.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.61,359.81 438.61,360.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.61,360.03 439.05,360.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.05,360.03 439.05,359.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.05,359.81 438.61,359.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.05,363.9 439.05,372.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.61,363.9 438.61,372.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.05,368.21 439.05,367.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.05,367.99 438.61,367.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.61,367.99 438.61,368.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.61,368.21 439.05,368.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.83,367.99 438.83,364.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.83,372.08 438.83,368.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.05,364.12 439.05,363.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.05,363.9 438.61,363.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.61,363.9 438.61,364.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.61,364.12 439.05,364.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.05,372.3 439.05,372.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.05,372.08 438.61,372.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.61,372.08 438.61,372.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.61,372.3 439.05,372.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.81,421.05 437.81,429.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.26,421.05 438.26,429.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.26,425.36 438.26,425.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.26,425.14 437.81,425.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.81,425.14 437.81,425.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.81,425.36 438.26,425.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.03,425.14 438.03,421.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.03,429.23 438.03,425.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.26,421.27 438.26,421.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.26,421.05 437.81,421.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.81,421.05 437.81,421.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.81,421.27 438.26,421.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.26,429.45 438.26,429.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.26,429.23 437.81,429.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.81,429.23 437.81,429.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.81,429.45 438.26,429.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.9,418.51 438.9,422.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.77,418.51 442.58,419.72 442.01,420.82 441.12,421.67 440.01,422.21 438.79,422.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.02,418.51 439.02,422.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.02,418.51 439.02,418.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.9,418.51 439.02,418.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.68,418.51 438.9,418.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.9,418.51 438.9,418.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.9,418.06 438.68,418.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.68,418.06 438.68,418.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="449.07,418.06 442.77,418.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="449.07,418.51 442.77,418.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.99,418.28 448.85,418.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.85,418.51 449.07,418.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="449.07,418.51 449.07,418.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="449.07,418.06 448.85,418.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.85,418.06 448.85,418.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.77,418.51 442.99,418.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.99,418.51 442.99,418.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.99,418.06 442.77,418.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.77,418.06 442.77,418.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.06,407.66 492.93,407.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.06,403.79 490.28,403.99 491.37,404.56 492.23,405.44 492.77,406.55 492.93,407.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.06,407.54 492.92,407.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.06,407.54 489.06,407.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.06,407.66 489.06,407.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.62,407.88 488.62,407.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.62,407.66 489.06,407.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.06,407.66 489.06,407.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.06,407.88 488.62,407.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.06,403.57 489.06,403.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.06,403.79 488.62,403.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.62,403.79 488.62,403.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.62,403.57 489.06,403.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.71,415.74 482.71,419.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.58,415.74 486.38,416.95 485.81,418.05 484.93,418.91 483.82,419.44 482.6,419.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.83,415.74 482.83,419.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.83,415.74 482.83,415.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.71,415.74 482.83,415.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.58,415.74 486.8,415.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.8,415.74 486.8,415.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.8,415.3 486.58,415.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.58,415.3 486.58,415.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.49,415.74 482.71,415.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.71,415.74 482.71,415.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.71,415.3 482.49,415.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.49,415.3 482.49,415.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.96,371.34 455.96,382.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="461.93,371.34 461.93,382.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="462.79,371.34 462.79,382.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="481.15,371.34 480.89,371.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.03,370.49 467.3,370.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.44,371.34 480.44,382.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="481.15,371.34 481.15,382.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.89,371.34 480.89,382.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.44,371.34 467.3,371.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.77,377.44 469.76,379.08 470.9,378.99 469.67,380.94 470.82,380.85 471.73,382.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="462.88,371.34 462.79,371.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="462.88,370.49 460.85,370.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="467.3,371.34 467.3,370.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="462.88,371.34 462.88,370.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.1,370.49 463.1,366.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.08,370.49 466.94,369.44 466.52,368.46 465.87,367.63 465.02,367 464.03,366.62 462.98,366.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.22,370.49 463.22,366.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.22,370.49 463.22,370.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.1,370.49 463.22,370.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.08,371.34 467.3,371.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.3,371.34 467.3,370.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.3,370.49 467.08,370.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.08,370.49 467.08,371.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.88,371.34 463.1,371.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.1,371.34 463.1,370.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.1,370.49 462.88,370.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.88,370.49 462.88,371.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,382.37 455.96,382.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="461.93,371.34 460.85,371.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.43,371.34 455.96,371.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.43,370.49 455.11,370.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="460.85,371.34 460.85,370.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.43,371.34 456.43,370.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.65,371.34 456.65,375.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.63,371.34 460.49,372.39 460.08,373.37 459.42,374.2 458.57,374.83 457.59,375.21 456.53,375.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.78,371.34 456.78,375.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.78,371.34 456.78,371.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.65,371.34 456.78,371.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.63,371.34 460.85,371.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.85,371.34 460.85,370.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.85,370.49 460.63,370.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.63,370.49 460.63,371.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.43,371.34 456.65,371.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.65,371.34 456.65,370.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.65,370.49 456.43,370.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.43,370.49 456.43,371.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.71,384.25 488.32,384.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="488.32,384.25 488.32,383.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="489.45,320.44 493.32,320.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.45,324.31 490.67,324.12 491.76,323.55 492.62,322.66 493.16,321.55 493.32,320.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.45,320.56 493.31,320.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.45,320.56 489.45,320.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.45,320.44 489.45,320.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.01,320.22 489.01,320.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.01,320.44 489.45,320.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.45,320.44 489.45,320.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.45,320.22 489.01,320.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.45,324.31 489.45,330.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.01,324.31 489.01,330.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.23,330.5 489.23,324.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.45,324.53 489.45,324.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.45,324.31 489.01,324.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.01,324.31 489.01,324.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.01,324.53 489.45,324.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.45,330.72 489.45,330.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.45,330.5 489.01,330.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.01,330.5 489.01,330.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.01,330.72 489.45,330.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469.51,329.04 469.51,326.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.16,329.04 472.03,328.21 471.64,327.46 471.03,326.87 470.27,326.5 469.43,326.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469.59,329.04 469.59,326.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469.59,329.04 469.59,329.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469.51,329.04 469.59,329.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.82,329.04 474.73,329.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.73,329.04 474.73,329.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.73,329.04 474.73,326.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.9,326.39 474.06,326.5 473.3,326.87 472.69,327.46 472.3,328.21 472.16,329.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.82,329.04 474.82,326.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.82,329.48 475.04,329.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.04,329.48 475.04,329.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.04,329.04 474.82,329.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.82,329.04 474.82,329.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469.29,329.48 469.51,329.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469.51,329.48 469.51,329.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469.51,329.04 469.29,329.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469.29,329.04 469.29,329.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476,329.04 476,326.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.66,329.04 478.52,328.21 478.13,327.46 477.53,326.87 476.76,326.5 475.93,326.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.09,329.04 476.09,326.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.09,329.04 476.09,329.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476,329.04 476.09,329.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="481.31,329.04 481.23,329.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="481.23,329.04 481.23,329.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="481.23,329.04 481.23,326.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="481.39,326.39 480.55,326.5 479.79,326.87 479.18,327.46 478.79,328.21 478.66,329.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="481.31,329.04 481.31,326.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="481.31,329.48 481.53,329.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="481.53,329.48 481.53,329.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="481.53,329.04 481.31,329.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="481.31,329.04 481.31,329.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.78,329.48 476,329.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476,329.48 476,329.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476,329.04 475.78,329.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.78,329.04 475.78,329.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.28,274.17 491.28,270.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.15,274.17 494.95,272.96 494.38,271.86 493.5,271 492.39,270.47 491.17,270.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.4,274.17 491.4,270.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.4,274.17 491.4,274.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.28,274.17 491.4,274.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.06,274.61 491.28,274.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.28,274.61 491.28,274.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.28,274.17 491.06,274.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.06,274.17 491.06,274.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.56,274.17 495.37,274.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.56,274.61 495.37,274.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.37,274.39 501.34,274.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.34,274.61 501.56,274.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.56,274.61 501.56,274.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.56,274.17 501.34,274.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.34,274.17 501.34,274.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.15,274.61 495.37,274.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.37,274.61 495.37,274.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.37,274.17 495.15,274.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.15,274.17 495.15,274.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.04,265 490.04,270.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.48,265 490.48,270.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.26,269.86 490.26,265.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.48,265.22 490.48,265" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.48,265 490.04,265" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.04,265 490.04,265.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.04,265.22 490.48,265.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.48,270.08 490.48,269.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.48,269.86 490.04,269.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.04,269.86 490.04,270.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.04,270.08 490.48,270.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.18,279.41 472.18,279.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.07,271.74 471.07,273.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.07,278.8 447.31,278.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="447.31,278.8 447.31,276.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456,270.63 446.21,270.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.55,271.74 459.55,271.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="458.41,271.74 458.41,271.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="457.28,271.74 457.28,271.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="456.15,271.71 456.15,278.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="455.02,271.74 455.02,271.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="453.88,271.74 453.88,271.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="452.75,271.74 452.75,271.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="451.62,271.74 451.62,271.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="451.44,271.94 451.44,272.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="461.72,272.11 451.44,272.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="461.82,271.94 451.44,271.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="451.62,278.78 451.62,278.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="452.75,278.76 452.75,278.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="453.88,278.76 453.88,278.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="455.02,278.76 455.02,278.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="456.15,278.76 456.15,278.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="457.28,278.76 457.28,278.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="457.82,278.6 451.44,278.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="457.92,278.43 451.44,278.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="451.44,278.6 451.44,278.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="460.68,271.74 460.68,271.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="461.81,271.74 461.81,271.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="446.21,271.74 446.21,270.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="447.31,271.74 446.21,271.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="447.31,276.16 446.21,276.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.21,271.96 442.23,271.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="446.21,275.94 445.16,275.8 444.18,275.39 443.35,274.73 442.72,273.88 442.34,272.89 442.23,271.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="446.21,272.08 442.24,272.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="446.21,272.08 446.21,272.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="446.21,271.96 446.21,272.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="446.21,275.94 446.21,276.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="446.21,276.16 447.31,276.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="447.31,276.16 447.31,275.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="447.31,275.94 446.21,275.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="446.21,271.74 446.21,271.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="446.21,271.96 447.31,271.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="447.31,271.96 447.31,271.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="447.31,271.74 446.21,271.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.4,274 455.9,275.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="455.9,275.01 455.4,276.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="455.15,274 455.65,275.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="455.65,275.01 455.15,276.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="455.15,274 455.4,274" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="455.15,276.02 455.4,276.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M455.15 274L455.4 274 455.9 275.01 455.65 275.01 455.15 274Z" fill-rule="evenodd" fill="blue"/>
+<path d="M455.15 276.02L455.4 276.02 455.9 275.01 455.65 275.01 455.15 276.02Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="450.55,275.01 455.92,275.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="488.32,357.83 488.32,356.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.46,274.37 448.46,275.31 448.51,275.5 448.6,275.63 448.75,275.69 448.84,275.69 448.98,275.63 449.08,275.5 449.12,275.31 449.12,274.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="449.5,275.69 449.5,274.37 449.93,274.37 450.07,274.43 450.12,274.49 450.17,274.62 450.17,274.81 450.12,274.93 450.07,275 449.93,275.06 449.5,275.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="328.28,189.12 328.28,188.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.28,188.9 327.84,188.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,188.9 327.84,189.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,189.12 328.28,189.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.7,186.42 308.7,185.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.84,212.98 323.86,212.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,216.96 326.79,216.82 325.82,216.41 324.98,215.75 324.35,214.9 323.97,213.91 323.86,212.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,213.1 323.87,213.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,213.1 327.84,213.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,212.98 327.84,213.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.28,212.76 328.28,212.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.28,212.98 327.84,212.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,212.98 327.84,212.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,212.76 328.28,212.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.28,216.96 328.28,217.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.28,217.18 327.84,217.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,217.18 327.84,216.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,216.96 328.28,216.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.07,278.3 471.07,278.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.18,278.3 472.18,279.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.07,273.88 472.18,273.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.07,278.3 472.18,278.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.18,278.08 476.16,278.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.18,274.1 473.23,274.24 474.2,274.65 475.03,275.31 475.66,276.16 476.05,277.14 476.15,278.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.18,277.95 476.15,277.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.18,277.95 472.18,277.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.18,278.08 472.18,277.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.18,274.1 472.18,273.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.18,273.88 471.07,273.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.07,273.88 471.07,274.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.07,274.1 472.18,274.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.18,278.3 472.18,278.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.18,278.08 471.07,278.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.07,278.08 471.07,278.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.07,278.3 472.18,278.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.18,271.74 476.57,271.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.02,272.11 455.02,278.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="453.88,272.11 453.88,278.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="452.75,272.11 452.75,278.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="451.62,272.11 451.62,278.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="457.28,272.11 457.28,278.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="458.41,272.11 458.41,277.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="459.55,272.11 459.55,276.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="460.68,272.11 460.68,273.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="457.7,278.8 459.38,276.01 460.53,276.1 459.29,274.15 460.44,274.24 461.94,271.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="489.89,254.8 484.11,254.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.6,254.8 490.83,254.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.71,254.8 496.93,254.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.42,254.8 503.65,254.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,255.27 509.89,261.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,261.99 509.89,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,268.09 509.89,273.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,274.81 509.89,280.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,280.91 509.89,286.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,287.63 509.89,293.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,293.73 509.89,299.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,300.45 509.89,306.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,306.55 509.89,312.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,313.27 509.89,319.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,319.37 509.89,325.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,326.09 509.89,331.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,351.73 509.89,357.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,345.01 509.89,350.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,338.91 509.89,344.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,332.19 509.89,337.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,357.83 509.89,363.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,364.55 509.89,370.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,370.65 509.89,376.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,377.37 509.89,383.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,383.47 509.89,389.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,390.19 509.89,395.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,396.29 509.89,402.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,403.01 509.89,408.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,409.11 509.89,414.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,415.83 509.89,421.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,421.93 509.89,427.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.89,428.65 509.89,434.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.42,434.89 503.65,434.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.71,434.89 496.93,434.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="489.89,434.89 484.11,434.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.6,434.89 490.83,434.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.18,434.89 483.78,434.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.33,436.58 479.89,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.04,436.58 482.48,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.89,436.3 472.36,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.92,436.58 472.36,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.92,436.3 464.39,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.94,436.58 464.39,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.94,436.3 456.42,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.33,436.13 482.04,436.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.88,436.3 430.35,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.91,436.58 430.35,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="437.88,436.58 438.32,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="445.85,436.3 438.32,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.29,436.58 445.85,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448,436.58 448.44,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.97,436.3 448.44,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="446.29,436.13 448,436.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.97,436.58 456.42,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.93,436.3 414.4,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.91,436.3 422.38,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.93,436.58 422.38,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="403.84,436.3 396.31,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="403.84,436.58 404.28,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="411.81,436.3 404.28,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.25,436.58 411.81,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.25,436.3 413.96,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="413.96,436.58 414.4,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.87,436.3 388.34,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="395.87,436.58 396.31,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.89,436.58 388.34,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.89,436.3 380.24,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.8,436.58 380.24,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="377.94,436.58 377.5,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="377.94,436.13 379.8,436.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="377.5,436.3 370.24,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.8,436.58 370.24,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.8,436.3 362.27,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.88,436.58 346.33,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="343.73,436.58 344.17,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.17,436.13 345.88,436.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.76,436.58 336.2,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.76,436.3 328.23,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.79,436.58 328.23,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.79,436.3 320.26,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.82,436.58 320.26,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.82,436.3 312.29,436.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.13,436.58 309.69,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.84,436.58 312.29,436.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.98,434.89 307.76,434.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.13,436.13 311.84,436.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.8,427.71 294.8,421.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.8,434.42 294.8,428.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.27,434.89 301.04,434.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.8,413.78 294.8,404.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.8,422.79 294.8,416.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.8,388.14 294.8,383.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.8,400.96 294.8,391.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.23,383.64 282.75,383.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="290.38,383.64 294.8,383.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,370.65 282.28,376.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,383.14 282.28,377.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,351.73 282.28,357.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,357.83 282.28,363.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,364.55 282.28,370.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,332.19 282.28,337.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,338.91 282.28,344.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,345.01 282.28,350.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,313.27 282.28,319.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,319.37 282.28,325.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,326.09 282.28,331.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,293.73 282.28,299.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,300.45 282.28,306.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,306.55 282.28,312.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,280.91 282.28,286.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,287.63 282.28,293.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,268.09 282.28,273.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,274.81 282.28,280.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.57,254.8 301.35,254.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.47,254.8 295.24,254.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.75,254.8 288.53,254.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,261.99 282.28,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.28,255.27 282.28,261.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.29,254.8 308.06,254.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.58,435.91 477.01,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.58,435.69 477.01,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.23,435.69 479.67,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.23,435.91 479.67,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.01,435.47 477.23,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.23,435.47 477.23,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.23,436.13 477.01,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.01,436.13 477.01,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.67,435.47 479.89,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.89,435.47 479.89,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.89,436.13 479.67,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.67,436.13 479.67,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.36,435.47 472.58,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.58,435.47 472.58,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.58,436.13 472.36,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="472.36,436.13 472.36,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.94,435.47 463.72,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.72,435.47 463.72,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.72,436.13 463.94,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.94,436.13 463.94,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.64,435.47 456.42,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.42,435.47 456.42,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.42,436.13 456.64,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.64,436.13 456.64,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.29,435.47 459.07,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.07,435.47 459.07,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.07,436.13 459.29,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.29,436.13 459.29,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.07,435.91 456.64,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.07,435.69 456.64,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.72,435.69 459.29,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.72,435.91 459.29,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.97,435.47 455.75,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.75,435.47 455.75,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.75,436.13 455.97,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.97,436.13 455.97,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.67,435.47 448.44,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.44,435.47 448.44,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.44,436.13 448.67,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.67,436.13 448.67,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.32,435.47 451.1,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.1,435.47 451.1,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.1,436.13 451.32,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.32,436.13 451.32,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.1,435.91 448.67,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.1,435.69 448.67,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.75,435.69 451.32,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="455.75,435.91 451.32,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.54,435.91 442.97,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.54,435.69 442.97,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.19,435.69 445.63,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.19,435.91 445.63,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.97,435.47 443.19,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.19,435.47 443.19,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.19,436.13 442.97,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.97,436.13 442.97,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.63,435.47 445.85,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.85,435.47 445.85,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.85,436.13 445.63,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.63,436.13 445.63,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.32,435.47 438.54,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.54,435.47 438.54,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.54,436.13 438.32,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.32,436.13 438.32,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.93,435.47 421.71,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.71,435.47 421.71,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.71,436.13 421.93,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.93,436.13 421.93,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.63,435.47 414.4,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.4,435.47 414.4,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.4,436.13 414.63,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.63,436.13 414.63,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.28,435.47 417.06,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.06,435.47 417.06,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.06,436.13 417.28,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.28,436.13 417.28,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.06,435.91 414.63,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.06,435.69 414.63,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.71,435.69 417.28,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.71,435.91 417.28,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="404.5,435.91 408.93,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="404.5,435.69 408.93,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.16,435.69 411.59,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.16,435.91 411.59,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.93,435.47 409.16,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.16,435.47 409.16,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.16,436.13 408.93,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.93,436.13 408.93,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.59,435.47 411.81,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.81,435.47 411.81,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.81,436.13 411.59,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.59,436.13 411.59,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="404.28,435.47 404.5,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="404.5,435.47 404.5,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="404.5,436.13 404.28,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="404.28,436.13 404.28,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.46,435.47 380.24,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.24,435.47 380.24,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.24,436.13 380.46,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.46,436.13 380.46,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.24,435.47 383.02,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.02,435.47 383.02,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.02,436.13 383.24,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.24,436.13 383.24,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.02,435.91 380.46,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.02,435.69 380.46,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.67,435.69 383.24,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.67,435.91 383.24,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.46,435.91 374.7,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.46,435.69 374.7,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.92,435.69 377.28,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.92,435.91 377.28,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.7,435.47 374.92,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.92,435.47 374.92,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.92,436.13 374.7,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.7,436.13 374.7,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.28,435.47 377.5,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.5,435.47 377.5,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.5,436.13 377.28,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.28,436.13 377.28,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.24,435.47 370.46,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.46,435.47 370.46,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.46,436.13 370.24,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.24,436.13 370.24,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.82,435.47 319.59,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.59,435.47 319.59,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.59,436.13 319.82,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.82,436.13 319.82,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.51,435.47 312.29,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.29,435.47 312.29,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.29,436.13 312.51,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.51,436.13 312.51,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.16,435.47 314.94,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="314.94,435.47 314.94,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="314.94,436.13 315.16,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.16,436.13 315.16,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="314.94,435.91 312.51,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="314.94,435.69 312.51,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.59,435.69 315.16,435.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.59,435.91 315.16,435.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.97,322.08 315.69,322.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.69,319.43 315.69,322.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.45,320.33 314.38,320.17 314.22,320.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.22,321.73 314.38,321.67 314.45,321.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.2,321.51 312.27,321.67 312.43,321.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.43,320.1 312.27,320.17 312.2,320.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.2,320.33 312.2,321.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.22,320.1 312.43,320.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.45,321.51 314.45,320.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.43,321.73 314.22,321.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.98,319.6 311.98,321.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.67,319.6 311.98,319.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.67,321.96 314.67,319.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.98,321.96 314.67,321.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.16,320.92 313.21,320.8 313.33,320.75 313.45,320.8 313.49,320.92 313.45,321.04 313.33,321.09 313.21,321.04 313.16,320.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="370.53,338.46 370.53,338.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.53,338.68 370.97,338.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.97,338.68 370.97,338.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.97,338.46 370.53,338.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.53,344.65 370.53,344.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.53,344.87 370.97,344.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.97,344.87 370.97,344.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.97,344.65 370.53,344.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.75,338.68 370.75,344.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.97,344.87 370.97,338.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.53,344.87 370.53,338.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.53,334.26 370.53,334.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.53,334.48 370.97,334.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.97,334.48 370.97,334.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.97,334.26 370.53,334.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.97,334.48 374.95,334.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.97,338.46 372.02,338.32 372.99,337.9 373.83,337.25 374.46,336.4 374.84,335.41 374.95,334.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.97,334.6 374.94,334.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.97,334.6 370.97,334.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.97,334.48 370.97,334.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.15,271.08 335.7,271.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.15,271.74 336.37,271.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.15,271.08 335.15,271.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.95,271.08 330.95,271.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="334.93,271.08 334.93,267.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.17,271.08 331.36,269.89 331.92,268.83 332.78,268 333.85,267.47 335.04,267.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.81,271.08 334.81,267.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.81,271.08 334.81,271.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.93,271.08 334.81,271.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.17,271.08 330.95,271.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.95,271.08 330.95,271.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.95,271.74 331.17,271.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.17,271.74 331.17,271.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.15,271.08 334.93,271.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.93,271.08 334.93,271.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.93,271.74 335.15,271.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.15,271.74 335.15,271.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="446.26,247.54 438.29,253.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.86,247.54 345.91,253.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.26,229.58 345.97,235.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.2,340.65 421.2,340.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.2,340.87 421.64,340.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.64,340.87 421.64,340.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.64,340.65 421.2,340.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.64,340.87 425.62,340.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.64,344.85 422.69,344.7 423.67,344.29 424.5,343.64 425.13,342.79 425.51,341.8 425.62,340.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.64,340.99 425.62,340.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.64,340.99 421.64,340.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.64,340.87 421.64,340.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.2,349.05 421.2,348.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.2,348.82 421.64,348.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.64,348.82 421.64,349.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.64,349.05 421.2,349.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.64,348.82 425.62,348.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.64,344.85 422.69,344.99 423.67,345.4 424.5,346.05 425.13,346.9 425.51,347.89 425.62,348.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.64,348.7 425.62,348.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.64,348.7 421.64,348.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.64,348.82 421.64,348.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.44,306.88 342.22,306.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.22,306.88 342.22,307.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.22,307.38 342.44,307.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.44,307.38 342.44,306.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.24,306.88 338.02,306.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.02,306.88 338.02,307.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.02,307.38 338.24,307.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.24,307.38 338.24,306.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.22,306.88 342.22,302.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.24,306.88 338.38,305.83 338.79,304.86 339.45,304.03 340.3,303.4 341.28,303.02 342.33,302.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.09,306.88 342.09,302.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.09,306.88 342.09,306.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.22,306.88 342.09,306.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.78,316.06 360.56,316.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.56,316.06 360.56,316.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.56,316.55 360.78,316.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.78,316.55 360.78,316.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="364.98,316.06 364.75,316.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="364.75,316.06 364.75,316.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="364.75,316.55 364.98,316.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="364.98,316.55 364.98,316.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="364.75,316.06 364.75,312.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.78,316.06 360.92,315.01 361.33,314.03 361.98,313.2 362.83,312.57 363.82,312.19 364.87,312.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="364.63,316.06 364.63,312.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="364.63,316.06 364.63,316.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="364.75,316.06 364.63,316.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,293.95 413.6,294.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,294.17 414.1,294.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.1,294.17 414.1,293.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.1,293.95 413.6,293.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,298.15 413.6,298.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,298.37 414.1,298.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.1,298.37 414.1,298.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.1,298.15 413.6,298.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,294.17 409.63,294.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,298.15 412.55,298.01 411.58,297.6 410.75,296.94 410.12,296.09 409.74,295.11 409.63,294.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,294.3 409.63,294.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,294.3 413.6,294.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,294.17 413.6,294.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,287.98 413.6,287.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,287.76 414.1,287.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.1,287.76 414.1,287.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.1,287.98 413.6,287.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,292.18 413.6,291.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,291.96 414.1,291.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.1,291.96 414.1,292.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.1,292.18 413.6,292.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,291.96 409.63,291.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,287.98 412.55,288.13 411.58,288.54 410.75,289.19 410.12,290.04 409.74,291.03 409.63,292.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,291.84 409.63,291.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,291.84 413.6,291.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,291.96 413.6,291.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,318.27 413.6,318.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,318.05 414.1,318.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.1,318.05 414.1,318.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.1,318.27 413.6,318.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,314.07 413.6,313.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,313.85 414.1,313.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.1,313.85 414.1,314.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.1,314.07 413.6,314.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,318.05 409.63,318.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,314.07 412.55,314.21 411.58,314.62 410.75,315.27 410.12,316.12 409.74,317.11 409.63,318.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,317.92 409.63,317.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,317.92 413.6,317.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.6,318.05 413.6,317.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.04,280.5 352.82,280.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.82,280.5 352.82,280.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.82,280.99 353.04,280.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.04,280.99 353.04,280.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.84,280.5 348.62,280.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.62,280.5 348.62,280.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.62,280.99 348.84,280.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.84,280.99 348.84,280.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.84,280.99 348.84,284.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.82,280.99 352.68,282.04 352.27,283.02 351.61,283.85 350.76,284.48 349.77,284.86 348.72,284.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.96,280.99 348.96,284.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.96,280.99 348.96,280.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.84,280.99 348.96,280.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.17,172.6 396.31,172.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="393.5,172.6 380.01,172.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="395.87,172.16 380.06,172.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="393.88,279.81 393.88,265.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="369.07,280.97 361.33,280.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.07,280.52 361.33,280.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.33,280.75 369.07,280.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.09,278.21 340.11,278.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.09,274.23 343.04,274.37 342.06,274.78 341.23,275.44 340.6,276.29 340.22,277.27 340.11,278.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.09,278.08 340.12,278.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.09,278.08 344.09,278.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.09,278.21 344.09,278.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.09,279.81 344.09,278.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.09,273.92 344.09,273.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.59,278.51 344.59,279.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.59,273.92 344.59,273.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.34,278.51 344.34,279.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.34,273.92 344.34,273.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,194.87 393.5,194.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,194.65 393.94,194.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,194.65 393.94,194.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,194.87 393.5,194.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,199.07 393.5,198.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,198.85 393.94,198.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,198.85 393.94,199.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,199.07 393.5,199.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,198.85 397.92,198.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,194.87 394.99,195.01 395.97,195.43 396.8,196.08 397.43,196.93 397.81,197.92 397.92,198.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,198.73 397.92,198.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,198.73 393.94,198.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,198.85 393.94,198.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,185.26 393.5,185.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,185.04 393.94,185.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,185.04 393.94,185.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,185.26 393.5,185.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,181.06 393.5,180.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,180.84 393.94,180.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,180.84 393.94,181.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,181.06 393.5,181.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,185.04 397.92,185.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,181.06 394.99,181.2 395.97,181.61 396.8,182.27 397.43,183.12 397.81,184.1 397.92,185.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,184.91 397.92,184.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,184.91 393.94,184.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,185.04 393.94,184.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,212.89 393.5,212.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,212.67 393.94,212.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,212.67 393.94,212.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,212.89 393.5,212.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,208.69 393.5,208.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,208.47 393.94,208.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,208.47 393.94,208.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,208.69 393.5,208.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,212.67 397.92,212.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,208.69 394.99,208.83 395.97,209.24 396.8,209.9 397.43,210.75 397.81,211.73 397.92,212.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,212.54 397.92,212.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,212.54 393.94,212.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,212.67 393.94,212.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,226.81 393.5,226.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,226.59 393.94,226.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,226.59 393.94,226.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,226.81 393.5,226.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,222.61 393.5,222.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,222.39 393.94,222.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,222.39 393.94,222.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,222.61 393.5,222.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,226.59 397.92,226.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,222.61 394.99,222.75 395.97,223.17 396.8,223.82 397.43,224.67 397.81,225.66 397.92,226.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,226.47 397.92,226.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,226.47 393.94,226.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,226.59 393.94,226.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.87,232.23 363.1,232.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.1,232.23 363.1,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.1,232.67 362.87,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.87,232.67 362.87,232.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.28,232.23 369.06,232.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.06,232.23 369.06,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.06,232.67 369.28,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.28,232.67 369.28,232.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.1,232.67 363.1,235.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="366.08,232.67 365.93,233.61 365.49,234.45 364.81,235.12 363.95,235.53 363.01,235.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.19,232.67 363.19,235.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.19,232.67 363.19,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.1,232.67 363.19,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.06,232.67 369.06,235.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="366.08,232.67 366.23,233.61 366.67,234.45 367.35,235.12 368.21,235.53 369.15,235.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="368.97,232.67 368.97,235.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="368.97,232.67 368.97,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.06,232.67 368.97,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.27,232.23 371.49,232.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.49,232.23 371.49,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.49,232.67 371.27,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.27,232.67 371.27,232.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.68,232.23 377.46,232.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.46,232.23 377.46,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.46,232.67 377.68,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.68,232.67 377.68,232.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.46,232.67 377.46,235.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.48,232.67 374.63,233.61 375.07,234.45 375.75,235.12 376.61,235.53 377.55,235.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.37,232.67 377.37,235.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.37,232.67 377.37,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.46,232.67 377.37,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.49,232.67 371.49,235.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.48,232.67 374.33,233.61 373.89,234.45 373.21,235.12 372.35,235.53 371.41,235.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.59,232.67 371.59,235.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.59,232.67 371.59,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.49,232.67 371.59,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="379.84,232.23 380.06,232.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.06,232.23 380.06,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.06,232.67 379.84,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="379.84,232.67 379.84,232.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.25,232.23 386.03,232.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.03,232.23 386.03,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.03,232.67 386.25,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.25,232.67 386.25,232.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.03,232.67 386.03,235.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.05,232.67 383.2,233.61 383.64,234.45 384.32,235.12 385.18,235.53 386.12,235.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.94,232.67 385.94,235.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.94,232.67 385.94,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.03,232.67 385.94,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.06,232.67 380.06,235.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.05,232.67 382.89,233.61 382.45,234.45 381.77,235.12 380.92,235.53 379.97,235.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.15,232.67 380.15,235.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.15,232.67 380.15,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.06,232.67 380.15,232.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.3,241.34 363.5,241.09 364.57,240.48 365.4,239.57 365.92,238.46 366.08,237.24 365.86,236.03 365.29,234.95 364.41,234.09 363.31,233.53 362.1,233.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.23,237.32 362.23,241.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.23,241.3 362.45,241.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.45,241.3 362.45,237.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.45,237.32 362.23,237.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.02,233.33 385.81,233.53 384.72,234.09 383.84,234.95 383.26,236.03 383.05,237.24 383.2,238.46 383.72,239.57 384.56,240.48 385.62,241.09 386.83,241.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.89,241.3 386.67,241.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.89,237.32 386.89,241.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.67,241.3 386.67,237.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.67,237.32 386.89,237.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,236.54 393.5,236.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,236.32 393.94,236.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,236.32 393.94,236.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,236.54 393.5,236.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,240.74 393.5,240.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,240.52 393.94,240.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,240.52 393.94,240.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,240.74 393.5,240.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,240.52 397.92,240.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,236.54 394.99,236.68 395.97,237.09 396.8,237.75 397.43,238.6 397.81,239.58 397.92,240.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,240.39 397.92,240.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,240.39 393.94,240.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,240.52 393.94,240.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,242.95 393.5,243.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,243.17 393.94,243.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,243.17 393.94,242.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,242.95 393.5,242.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,247.15 393.5,247.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.5,247.37 393.94,247.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,247.37 393.94,247.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,247.15 393.5,247.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,243.17 397.92,243.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,247.15 394.99,247.01 395.97,246.6 396.8,245.94 397.43,245.09 397.81,244.1 397.92,243.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,243.29 397.92,243.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,243.29 393.94,243.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.94,243.17 393.94,243.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.94,253.34 326.38,253.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.94,252.01 326.38,252.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.94,248.81 326.38,248.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.94,240.85 326.38,240.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.94,253.12 326.38,253.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.94,248.58 326.38,248.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.94,240.85 326.38,240.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.94,252.23 326.38,252.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.16,253.12 326.16,252.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.16,248.58 326.16,241.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.94,240.85 325.94,248.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.38,248.81 326.38,240.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.38,253.34 326.38,252.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.94,253.34 325.94,252.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.08,183.96 356.65,184.91 359.32,185.48 362.05,185.68 364.77,185.48 367.45,184.91 370.01,183.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="355.42,181.65 357.56,182.41 359.78,182.87 362.05,183.02 364.31,182.87 366.54,182.41 368.68,181.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.35,382.15 296.35,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.22,400.96 296.35,400.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.22,400.96 294.22,404.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.22,413.78 294.22,416.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.63,427.79 295.63,416.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,413.78 295.63,409.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="446.33,363.99 446.33,363.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,363.92 446.33,363.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,363.84 446.33,363.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,363.77 446.33,363.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,363.69 446.33,363.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,363.61 446.33,363.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,363.53 446.33,363.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,363.45 446.33,363.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,363.37 446.33,363.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,363.3 446.33,363.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,363.22 446.33,363.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,363.14 446.33,363.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,363.06 446.33,363.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,362.98 446.33,362.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,362.9 446.33,362.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,362.83 446.33,362.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,362.75 446.33,362.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,362.67 446.33,362.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,362.59 446.33,362.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,362.51 446.33,362.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,362.44 446.33,362.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,362.36 446.33,362.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,362.28 446.33,362.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,362.2 446.33,362.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,362.12 446.33,362.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,362.04 446.33,361.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,361.97 446.33,361.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,361.89 446.33,361.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,361.81 446.33,361.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,361.73 446.33,361.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,361.65 446.33,361.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,361.57 446.33,361.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,361.5 446.33,361.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,361.42 446.33,361.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,361.34 446.33,361.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,361.26 446.33,361.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,361.18 446.33,361.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,361.1 446.33,361.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,361.03 446.33,360.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,360.95 446.33,360.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,360.87 446.33,360.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,360.79 446.33,360.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,360.71 446.33,360.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,360.63 446.33,360.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,360.56 446.33,360.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,360.48 446.33,360.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,360.4 446.33,360.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,360.32 446.33,360.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,360.24 446.33,360.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,360.16 446.33,360.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,360.09 446.33,360.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,360.01 446.33,359.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,359.93 446.33,359.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,359.85 446.33,359.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,359.77 446.33,359.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,359.69 446.33,359.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.33,359.62 446.33,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.68,359.57 450.64,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.61,359.57 450.56,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.53,359.57 450.48,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.45,359.57 450.4,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.37,359.57 450.32,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.3,359.57 450.24,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.22,359.57 450.17,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.14,359.57 450.09,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.06,359.57 450.01,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.98,359.57 449.93,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.9,359.57 449.85,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.83,359.57 449.77,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.75,359.57 449.7,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.67,359.57 449.62,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.59,359.57 449.54,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.51,359.57 449.46,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.43,359.57 449.38,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.36,359.57 449.3,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.28,359.57 449.23,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.2,359.57 449.15,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.12,359.57 449.07,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.04,359.57 448.99,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.96,359.57 448.91,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.89,359.57 448.83,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.81,359.57 448.76,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.73,359.57 448.68,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.65,359.57 448.6,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.57,359.57 448.52,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.49,359.57 448.44,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.42,359.57 448.36,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.34,359.57 448.29,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.26,359.57 448.21,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.18,359.57 448.13,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.1,359.57 448.05,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.02,359.57 447.97,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.95,359.57 447.89,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.87,359.57 447.82,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.79,359.57 447.74,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.71,359.57 447.66,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.63,359.57 447.58,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.55,359.57 447.5,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.48,359.57 447.42,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.4,359.57 447.35,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.32,359.57 447.27,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.24,359.57 447.19,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.16,359.57 447.11,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.08,359.57 447.03,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.01,359.57 446.95,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.93,359.57 446.88,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.85,359.57 446.8,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.77,359.57 446.72,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.69,359.57 446.64,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.61,359.57 446.56,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.54,359.57 446.48,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.46,359.57 446.41,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.38,359.57 446.33,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.1,359.57 455.1,363.99 450.68,363.99 450.68,359.57 455.1,359.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.54,361.05 451.74,361.56 451.93,361.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.03,361.36 452.32,361.36 452.32,361.32 452.29,361.27 452.27,361.24 452.22,361.22 452.15,361.22 452.1,361.24 452.05,361.29 452.03,361.36 452.03,361.41 452.05,361.49 452.1,361.53 452.15,361.56 452.22,361.56 452.27,361.53 452.32,361.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.46,361.56 452.46,361.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.46,361.32 452.54,361.24 452.59,361.22 452.66,361.22 452.71,361.24 452.73,361.32 452.73,361.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.22,361.05 453.22,361.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.22,361.29 453.17,361.24 453.12,361.22 453.05,361.22 453,361.24 452.95,361.29 452.93,361.36 452.93,361.41 452.95,361.49 453,361.53 453.05,361.56 453.12,361.56 453.17,361.53 453.22,361.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.39,361.07 453.41,361.1 453.44,361.07 453.41,361.05 453.39,361.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.41,361.22 453.41,361.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.58,361.56 453.58,361.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.58,361.32 453.66,361.24 453.7,361.22 453.78,361.22 453.83,361.24 453.85,361.32 453.85,361.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.34,361.22 454.34,361.61 454.31,361.68 454.29,361.7 454.24,361.73 454.17,361.73 454.12,361.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.34,361.29 454.29,361.24 454.24,361.22 454.17,361.22 454.12,361.24 454.07,361.29 454.04,361.36 454.04,361.41 454.07,361.49 454.12,361.53 454.17,361.56 454.24,361.56 454.29,361.53 454.34,361.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.42,361.91 451.42,362.42 451.71,362.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.95,362.08 451.91,362.11 451.86,362.16 451.83,362.23 451.83,362.28 451.86,362.35 451.91,362.4 451.95,362.42 452.03,362.42 452.08,362.4 452.12,362.35 452.15,362.28 452.15,362.23 452.12,362.16 452.08,362.11 452.03,362.08 451.95,362.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.59,362.16 452.54,362.11 452.49,362.08 452.42,362.08 452.37,362.11 452.32,362.16 452.29,362.23 452.29,362.28 452.32,362.35 452.37,362.4 452.42,362.42 452.49,362.42 452.54,362.4 452.59,362.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.02,362.08 453.02,362.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.02,362.16 452.98,362.11 452.93,362.08 452.85,362.08 452.8,362.11 452.76,362.16 452.73,362.23 452.73,362.28 452.76,362.35 452.8,362.4 452.85,362.42 452.93,362.42 452.98,362.4 453.02,362.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.27,361.91 453.27,362.33 453.29,362.4 453.34,362.42 453.39,362.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.19,362.08 453.36,362.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.53,361.94 453.56,361.96 453.58,361.94 453.56,361.91 453.53,361.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.56,362.08 453.56,362.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.85,362.08 453.8,362.11 453.75,362.16 453.73,362.23 453.73,362.28 453.75,362.35 453.8,362.4 453.85,362.42 453.92,362.42 453.97,362.4 454.02,362.35 454.04,362.28 454.04,362.23 454.02,362.16 453.97,362.11 453.92,362.08 453.85,362.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.19,362.42 454.19,362.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.19,362.18 454.26,362.11 454.31,362.08 454.38,362.08 454.43,362.11 454.46,362.18 454.46,362.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.89,360.8 447.87,360.75 447.81,360.69 447.76,360.67 447.66,360.67 447.6,360.69 447.55,360.75 447.52,360.8 447.5,360.88 447.5,361.01 447.52,361.09 447.55,361.14 447.6,361.19 447.66,361.22 447.76,361.22 447.81,361.19 447.87,361.14 447.89,361.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.05,361.22 448.05,360.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.05,361.01 448.08,360.93 448.13,360.88 448.18,360.85 448.26,360.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.39,360.85 448.39,361.12 448.42,361.19 448.47,361.22 448.55,361.22 448.6,361.19 448.68,361.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.68,360.85 448.68,361.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.18,360.93 449.16,360.88 449.08,360.85 449,360.85 448.92,360.88 448.89,360.93 448.92,360.98 448.97,361.01 449.1,361.04 449.16,361.06 449.18,361.12 449.18,361.14 449.16,361.19 449.08,361.22 449,361.22 448.92,361.19 448.89,361.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.34,361.22 449.34,360.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.34,360.96 449.42,360.88 449.47,360.85 449.55,360.85 449.6,360.88 449.63,360.96 449.63,361.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.77,361.67 447.72,361.62 447.64,361.59 447.54,361.59 447.46,361.62 447.41,361.67 447.41,361.72 447.43,361.77 447.46,361.8 447.51,361.83 447.67,361.88 447.72,361.9 447.75,361.93 447.77,361.98 447.77,362.06 447.72,362.11 447.64,362.14 447.54,362.14 447.46,362.11 447.41,362.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.93,361.77 447.93,362.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.93,361.85 447.98,361.8 448.04,361.77 448.12,361.77 448.17,361.8 448.22,361.85 448.25,361.93 448.25,361.98 448.22,362.06 448.17,362.11 448.12,362.14 448.04,362.14 447.98,362.11 447.93,362.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.75,361.77 448.75,362.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.75,361.85 448.69,361.8 448.64,361.77 448.56,361.77 448.51,361.8 448.46,361.85 448.43,361.93 448.43,361.98 448.46,362.06 448.51,362.11 448.56,362.14 448.64,362.14 448.69,362.11 448.75,362.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.25,361.85 449.19,361.8 449.14,361.77 449.06,361.77 449.01,361.8 448.96,361.85 448.93,361.93 448.93,361.98 448.96,362.06 449.01,362.11 449.06,362.14 449.14,362.14 449.19,362.11 449.25,362.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.41,361.93 449.72,361.93 449.72,361.88 449.69,361.83 449.67,361.8 449.62,361.77 449.54,361.77 449.48,361.8 449.43,361.85 449.41,361.93 449.41,361.98 449.43,362.06 449.48,362.11 449.54,362.14 449.62,362.14 449.67,362.11 449.72,362.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.68,363.99 450.64,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.61,363.99 450.56,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.53,363.99 450.48,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.45,363.99 450.4,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.37,363.99 450.32,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.3,363.99 450.24,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.22,363.99 450.17,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.14,363.99 450.09,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.06,363.99 450.01,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.98,363.99 449.93,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.9,363.99 449.85,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.83,363.99 449.77,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.75,363.99 449.7,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.67,363.99 449.62,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.59,363.99 449.54,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.51,363.99 449.46,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.43,363.99 449.38,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.36,363.99 449.3,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.28,363.99 449.23,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.2,363.99 449.15,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.12,363.99 449.07,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.04,363.99 448.99,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.96,363.99 448.91,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.89,363.99 448.83,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.81,363.99 448.76,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.73,363.99 448.68,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.65,363.99 448.6,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.57,363.99 448.52,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.49,363.99 448.44,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.42,363.99 448.36,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.34,363.99 448.29,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.26,363.99 448.21,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.18,363.99 448.13,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.1,363.99 448.05,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.02,363.99 447.97,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.95,363.99 447.89,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.87,363.99 447.82,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.79,363.99 447.74,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.71,363.99 447.66,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.63,363.99 447.58,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.55,363.99 447.5,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.48,363.99 447.42,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.4,363.99 447.35,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.32,363.99 447.27,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.24,363.99 447.19,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.16,363.99 447.11,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.08,363.99 447.03,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.01,363.99 446.95,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.93,363.99 446.88,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.85,363.99 446.8,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.77,363.99 446.72,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.69,363.99 446.64,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.61,363.99 446.56,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.54,363.99 446.48,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.46,363.99 446.41,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.38,363.99 446.33,363.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="488.32,384.25 488.32,384.47" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="488.32,388.89 488.32,395.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="489.06,397.04 489.06,397.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.06,397.26 488.62,397.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.62,397.26 488.62,397.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.62,397.04 489.06,397.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.06,403.57 489.06,403.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.06,403.79 488.62,403.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.62,403.79 488.62,403.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.62,403.57 489.06,403.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.84,397.26 488.84,403.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.62,397.26 489.06,397.26 489.06,403.57 488.62,403.57 488.62,397.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.27,418.06 475.35,418.06 475.35,415.45 479.27,415.45 479.27,418.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.21,417.23 476.28,417.39 476.44,417.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.44,415.82 476.28,415.89 476.21,416.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.46,416.05 478.39,415.89 478.23,415.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.23,417.45 478.39,417.39 478.46,417.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.46,417.23 478.46,416.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.44,417.45 478.23,417.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.21,416.05 476.21,417.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.23,415.82 476.44,415.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.68,417.96 478.68,415.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.99,417.96 478.68,417.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.99,415.6 475.99,417.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.68,415.6 475.99,415.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.17,416.64 477.22,416.52 477.33,416.47 477.45,416.52 477.5,416.64 477.45,416.76 477.33,416.81 477.22,416.76 477.17,416.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="343.96,263.03 343.96,259.11 343.8,259.11 343.8,263.03 343.96,263.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.37,256.04 338.98,256.04 338.98,267.79 336.37,267.79 336.37,256.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.44,267.84 336.44,271.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="339.48,267.84 336.44,267.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="339.48,271.26 339.48,267.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="336.44,271.26 339.48,271.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="339.23,271.26 339.23,267.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.21,269.96 337.21,269.09 337.43,269.09 337.52,269.13 337.59,269.21 337.62,269.3 337.65,269.42 337.65,269.63 337.62,269.75 337.59,269.84 337.52,269.92 337.43,269.96 337.21,269.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.86,269.09 338.02,269.96 338.18,269.09 338.33,269.96 338.49,269.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,256.04 337.67,256.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,256.13 337.67,256.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,256.2 337.67,256.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,256.28 337.67,256.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,256.36 337.67,256.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,256.44 337.67,256.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,256.52 337.67,256.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,256.6 337.67,256.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,256.67 337.67,256.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,256.75 337.67,256.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,256.83 337.67,256.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,256.91 337.67,256.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,256.99 337.67,257.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,257.07 337.67,257.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,257.14 337.67,257.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,257.22 337.67,257.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,257.3 337.67,257.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,257.38 337.67,257.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,257.46 337.67,257.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,257.54 337.67,257.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,257.61 337.67,257.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,257.69 337.67,257.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,257.77 337.67,257.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,257.85 337.67,257.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,257.93 337.67,257.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,258.01 337.67,258.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,258.08 337.67,258.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,258.16 337.67,258.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,258.24 337.67,258.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,258.32 337.67,258.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,258.4 337.67,258.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,258.48 337.67,258.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,258.55 337.67,258.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,258.63 337.67,258.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,258.71 337.67,258.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,258.79 337.67,258.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,258.87 337.67,258.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,258.95 337.67,259" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,259.02 337.67,259.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,259.1 337.67,259.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,259.18 337.67,259.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,259.26 337.67,259.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,259.34 337.67,259.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,259.42 337.67,259.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,259.49 337.67,259.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,259.57 337.67,259.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,259.65 337.67,259.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,259.73 337.67,259.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,259.81 337.67,259.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,259.89 337.67,259.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,259.96 337.67,260.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,260.04 337.67,260.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,260.12 337.67,260.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,260.2 337.67,260.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,260.28 337.67,260.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,260.36 337.67,260.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,260.43 337.67,260.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,260.51 337.67,260.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,260.59 337.67,260.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,260.67 337.67,260.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,260.75 337.67,260.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,260.82 337.67,260.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,260.9 337.67,260.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,260.98 337.67,261.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,261.06 337.67,261.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,261.14 337.67,261.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,261.22 337.67,261.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,261.29 337.67,261.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,261.37 337.67,261.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,261.45 337.67,261.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,261.53 337.67,261.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,261.61 337.67,261.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,261.69 337.67,261.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,261.76 337.67,261.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,261.84 337.67,261.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,261.92 337.67,261.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,262 337.67,262.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,262.08 337.67,262.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,262.16 337.67,262.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,262.23 337.67,262.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,262.31 337.67,262.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,262.39 337.67,262.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,262.47 337.67,262.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,262.55 337.67,262.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,262.63 337.67,262.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,262.7 337.67,262.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,262.78 337.67,262.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,262.86 337.67,262.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,262.94 337.67,262.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,263.02 337.67,263.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,263.1 337.67,263.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,263.17 337.67,263.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,263.25 337.67,263.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,263.33 337.67,263.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,263.41 337.67,263.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,263.49 337.67,263.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,263.57 337.67,263.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,263.64 337.67,263.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,263.72 337.67,263.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,263.8 337.67,263.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,263.88 337.67,263.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,263.96 337.67,264.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,264.04 337.67,264.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,264.11 337.67,264.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,264.19 337.67,264.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,264.27 337.67,264.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,264.35 337.67,264.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,264.43 337.67,264.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,264.51 337.67,264.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,264.58 337.67,264.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,264.66 337.67,264.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,264.74 337.67,264.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,264.82 337.67,264.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,264.9 337.67,264.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,264.98 337.67,265.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,265.05 337.67,265.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,265.13 337.67,265.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,265.21 337.67,265.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,265.29 337.67,265.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,265.37 337.67,265.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,265.45 337.67,265.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,265.52 337.67,265.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,265.6 337.67,265.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,265.68 337.67,265.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,265.76 337.67,265.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,265.84 337.67,265.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,265.92 337.67,265.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,265.99 337.67,266.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,266.07 337.67,266.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,266.15 337.67,266.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,266.23 337.67,266.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,266.31 337.67,266.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,266.39 337.67,266.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,266.46 337.67,266.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,266.54 337.67,266.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,266.62 337.67,266.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,266.7 337.67,266.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,266.78 337.67,266.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,266.86 337.67,266.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,266.93 337.67,266.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,267.01 337.67,267.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,267.09 337.67,267.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,267.17 337.67,267.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,267.25 337.67,267.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,267.33 337.67,267.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,267.4 337.67,267.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,267.48 337.67,267.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,267.56 337.67,267.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,267.64 337.67,267.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,267.72 337.67,267.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,267.8 337.67,267.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,267.87 337.67,267.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,267.95 337.67,268" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,268.03 337.67,268.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,268.11 337.67,268.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,268.19 337.67,268.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,268.27 337.67,268.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,268.34 337.67,268.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,268.42 337.67,268.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,268.5 337.67,268.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,268.58 337.67,268.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,268.66 337.67,268.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,268.74 337.67,268.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,268.81 337.67,268.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,268.89 337.67,268.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,268.97 337.67,269.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,269.05 337.67,269.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,269.13 337.67,269.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,269.21 337.67,269.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,269.28 337.67,269.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,269.36 337.67,269.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,269.44 337.67,269.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,269.52 337.67,269.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,269.6 337.67,269.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,269.68 337.67,269.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,269.75 337.67,269.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,269.83 337.67,269.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,269.91 337.67,269.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,269.99 337.67,270.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,270.07 337.67,270.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,270.14 337.67,270.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,270.22 337.67,270.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,270.3 337.67,270.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,270.38 337.67,270.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,270.46 337.67,270.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,270.54 337.67,270.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,270.61 337.67,270.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,270.69 337.67,270.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,270.77 337.67,270.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,270.85 337.67,270.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,270.93 337.67,270.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,271.01 337.67,271.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,271.08 337.67,271.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,271.16 337.67,271.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.67,271.24 337.67,271.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="412.17,256.93 412.17,257.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.17,257.15 412.61,257.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.61,257.15 412.61,256.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.61,256.93 412.17,256.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.17,261.13 412.17,261.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.17,261.35 412.61,261.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.61,261.35 412.61,261.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.61,261.13 412.17,261.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.61,257.15 416.59,257.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.61,261.13 413.66,260.99 414.63,260.58 415.46,259.92 416.09,259.07 416.48,258.08 416.59,257.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.61,257.27 416.58,257.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.61,257.27 412.61,257.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.61,257.15 412.61,257.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="397.14,279.81 397.14,265.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="393.88,265.22 397.14,265.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="381.58,270.71 381.58,256.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="380.26,270.71 380.26,256.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="379.61,270.71 386.8,270.71 386.8,273.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="379.61,270.71 379.61,273.47 386.8,273.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="355.42,181.65 354.75,181.47 354.08,181.65 353.59,182.14 353.42,182.8 353.59,183.47 354.08,183.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.01,183.96 370.5,183.47 370.68,182.8 370.5,182.14 370.01,181.65 369.35,181.47 368.68,181.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.46,171.45 361.46,174.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="361.46,174.06 376.74,174.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.74,174.06 376.74,180.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="380.01,178.3 380.01,178.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="377.74,181.09 379.44,179.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.74,180.53 376.9,180.95 377.29,181.17 377.74,181.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="379.44,179.98 379.86,179.51 380.01,178.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="354.52,172.6 345.97,172.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="344.09,172.6 328.28,172.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="354.52,172.6 354.52,172.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.74,191.61 343.66,191.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.31,191.61 367.25,191.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.94,190.95 387.94,222" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.94,222 373.72,222" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.74,191.61 333.74,221.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.11,172.75 362.17,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.2,172.75 362.25,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.28,172.75 362.33,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.35,172.75 362.41,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.43,172.75 362.48,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.51,172.75 362.56,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.59,172.75 362.64,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.67,172.75 362.72,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.75,172.75 362.8,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.82,172.75 362.88,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.9,172.75 362.95,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.98,172.75 363.03,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="363.06,172.75 363.11,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="363.14,172.75 363.19,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="363.22,172.75 363.27,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="363.29,172.75 363.35,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="363.37,172.75 363.42,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="363.45,172.75 363.5,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="363.53,172.75 363.58,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="363.61,172.75 363.66,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="363.68,172.75 363.74,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="363.76,172.75 363.82,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="363.84,172.75 363.89,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="363.92,172.75 363.97,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="364,172.75 364.05,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="364.08,172.75 364.13,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="364.15,172.75 364.21,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="364.23,172.75 364.29,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="364.31,172.75 364.36,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="364.39,172.75 364.44,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="364.47,172.75 364.52,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="364.55,172.75 364.6,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="364.62,172.75 364.68,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="364.7,172.75 364.76,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="364.78,172.75 364.83,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="364.86,172.75 364.91,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="364.94,172.75 364.99,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="365.02,172.75 365.07,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="365.09,172.75 365.15,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="365.17,172.75 365.23,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="365.25,172.75 365.3,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="365.33,172.75 365.38,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="365.41,172.75 365.46,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="365.49,172.75 365.54,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="365.56,172.75 365.62,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="365.64,172.75 365.7,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="365.72,172.75 365.77,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="365.8,172.75 365.85,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="365.88,172.75 365.93,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="365.96,172.75 366.01,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="366.03,172.75 366.09,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="366.11,172.75 366.17,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="366.19,172.75 366.24,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="366.27,172.75 366.32,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="366.35,172.75 366.4,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="366.43,172.75 366.48,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="366.5,172.75 366.56,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="366.58,172.75 366.63,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="366.66,172.75 366.71,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="366.74,172.75 366.79,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="366.82,172.75 366.87,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="366.9,172.75 366.95,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="366.97,172.75 367.03,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="367.05,172.75 367.1,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="367.13,172.75 367.18,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="367.21,172.75 367.26,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="367.29,172.75 367.34,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="367.37,172.75 367.42,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="367.44,172.75 367.5,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="367.52,172.75 367.57,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="367.6,172.75 367.65,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="367.68,172.75 367.73,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="367.76,172.75 367.81,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="367.84,172.75 367.89,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="367.91,172.75 367.97,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="367.99,172.75 368.04,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="368.07,172.75 368.12,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="368.15,172.75 368.2,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="368.23,172.75 368.28,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="368.31,172.75 368.36,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="368.38,172.75 368.44,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="368.46,172.75 368.51,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="368.54,172.75 368.59,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="368.62,172.75 368.67,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="368.7,172.75 368.75,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="368.78,172.75 368.83,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="368.85,172.75 368.91,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="368.93,172.75 368.98,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="369.01,172.75 369.06,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="369.09,172.75 369.14,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="369.17,172.75 369.22,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="369.25,172.75 369.3,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="369.32,172.75 369.38,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="369.4,172.75 369.45,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="369.48,172.75 369.53,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="369.56,172.75 369.61,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="369.64,172.75 369.69,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="369.72,172.75 369.77,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="369.79,172.75 369.85,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="369.87,172.75 369.92,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="369.95,172.75 370,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="370.03,172.75 370.08,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="370.11,172.75 370.16,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="370.19,172.75 370.24,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="370.26,172.75 370.32,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="370.34,172.75 370.39,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="370.42,172.75 370.47,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="370.5,172.75 370.55,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="370.58,172.75 370.63,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="370.66,172.75 370.71,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="370.73,172.75 370.79,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="370.81,172.75 370.86,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="370.89,172.75 370.94,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="370.97,172.75 371.02,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="371.05,172.75 371.1,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="371.13,172.75 371.18,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="371.2,172.75 371.26,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="371.28,172.75 371.33,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="371.36,172.75 371.41,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="371.44,172.75 371.49,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="371.52,172.75 371.57,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="371.6,172.75 371.65,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="371.67,172.75 371.73,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="371.75,172.75 371.8,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="371.83,172.75 371.88,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="371.91,172.75 371.96,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="371.99,172.75 372.04,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="372.07,172.75 372.12,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="372.14,172.75 372.2,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="372.22,172.75 372.27,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="372.3,172.75 372.35,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="372.38,172.75 372.43,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="372.46,172.75 372.51,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="372.54,172.75 372.59,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="372.61,172.75 372.67,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="372.69,172.75 372.74,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="372.77,172.75 372.82,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="372.85,172.75 372.9,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="372.93,172.75 372.98,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="373,172.75 373.06,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="373.08,172.75 373.14,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="373.16,172.75 373.21,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="373.24,172.75 373.29,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="373.32,172.75 373.37,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="373.4,172.75 373.45,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="373.47,172.75 373.53,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="373.55,172.75 373.61,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="373.63,172.75 373.68,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="373.71,172.75 373.76,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="373.79,172.75 373.84,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="373.87,172.75 373.92,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="373.94,172.75 374,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="374.02,172.75 374.08,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="374.1,172.75 374.15,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="374.18,172.75 374.23,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="374.26,172.75 374.31,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="374.34,172.75 374.39,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="374.41,172.75 374.47,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="374.49,172.75 374.55,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="374.57,172.75 374.62,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="374.65,172.75 374.7,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="374.73,172.75 374.78,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="374.81,172.75 374.86,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="374.88,172.75 374.94,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="374.96,172.75 375.02,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="375.04,172.75 375.09,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="375.12,172.75 375.17,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="375.2,172.75 375.25,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="375.28,172.75 375.33,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="375.35,172.75 375.41,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="375.43,172.75 375.49,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="375.51,172.75 375.56,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="375.59,172.75 375.64,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="375.67,172.75 375.72,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="375.75,172.75 375.8,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="375.82,172.75 375.88,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="375.9,172.75 375.95,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="375.98,172.75 376.03,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.06,172.75 376.11,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.14,172.75 376.19,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.22,172.75 376.27,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.29,172.75 376.35,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.37,172.75 376.42,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.45,172.75 376.5,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.53,172.75 376.58,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.61,172.75 376.66,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.69,172.75 376.74,172.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.11,172.75 362.11,172.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.11,172.67 362.11,172.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.11,172.59 362.11,172.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.11,172.52 362.11,172.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.11,172.44 362.11,172.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.11,172.36 362.11,172.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.11,172.28 362.11,172.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.11,172.2 362.11,172.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.11,172.12 362.11,172.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.11,172.05 362.11,171.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.11,171.97 362.11,171.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.11,171.89 362.11,171.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.11,171.81 362.11,171.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.11,171.73 362.11,171.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.11,171.65 362.11,171.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.11,171.58 362.11,171.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="362.11,171.5 362.11,171.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.74,172.75 376.74,172.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.74,172.67 376.74,172.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.74,172.59 376.74,172.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.74,172.52 376.74,172.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.74,172.44 376.74,172.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.74,172.36 376.74,172.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.74,172.28 376.74,172.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.74,172.2 376.74,172.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.74,172.12 376.74,172.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.74,172.05 376.74,171.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.74,171.97 376.74,171.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.74,171.89 376.74,171.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.74,171.81 376.74,171.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.74,171.73 376.74,171.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.74,171.65 376.74,171.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.74,171.58 376.74,171.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.74,171.5 376.74,171.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="367.25,221.28 357.33,221.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="343.66,221.28 333.74,221.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.22,201.53 367.25,201.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.72,201.52 387.94,201.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.72,201.98 387.94,201.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.74,220.83 343.66,220.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.33,220.83 367.25,220.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="334.2,191.61 334.2,221.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.77,191.61 356.77,211.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.23,191.61 357.23,211.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.74,211.41 334.2,211.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.77,211.41 357.23,211.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.79,201.52 366.79,221.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.25,201.52 367.25,221.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.74,192.06 343.66,192.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.72,192.06 387.94,192.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.49,192.06 387.49,222" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.72,190.95 373.72,192.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.72,201.52 373.72,201.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.72,221.54 373.72,222" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.25,192.06 367.25,191.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.74,201.53 344.09,201.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="345.97,201.53 357.22,201.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.79,201.98 345.97,201.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="344.09,201.98 333.74,201.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="344.09,201.98 344.09,201.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="345.97,201.98 345.97,201.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.94,221.54 373.72,221.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="334.2,192.06 334.2,195.98 336.35,195.98 338.12,194.21 338.12,192.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="334.2,192.06 338.12,192.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="334.2,195.98 336.35,195.98 336.62,196.25 336.62,196.25 336.81,196.71 336.81,201.53 334.2,201.53 334.2,195.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.12,192.06 338.12,194.21 338.39,194.48 338.39,194.48 338.85,194.67 343.66,194.67 343.66,192.06 338.12,192.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.27,197.67 338.96,197.39 339.48,196.86 339.75,196.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="339.25,196.47 339.38,196.18 339.28,195.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="339.25,196.47 338.57,197.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="337.97,197.18 338.28,197.28 338.57,197.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.24,197.51 338.87,197.25 339.34,196.77 339.58,196.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.24,197.51 338.27,197.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="339.58,196.13 339.75,196.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.54,194.93 338.32,194.78 338.04,194.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.04,194.79 337.34,195.24 336.89,195.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.54,194.93 339.28,195.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="336.89,195.94 336.88,196.22 337.03,196.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="337.97,197.18 337.03,196.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.77,192.06 356.77,195.98 354.62,195.98 352.85,194.21 352.85,192.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.77,192.06 352.85,192.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.77,195.98 354.62,195.98 354.35,196.25 354.35,196.25 354.16,196.71 354.16,201.53 356.77,201.53 356.77,195.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.85,192.06 352.85,194.21 352.58,194.48 352.58,194.48 352.12,194.67 347.31,194.67 347.31,192.06 352.85,192.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.7,197.67 352.01,197.39 351.49,196.86 351.22,196.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.72,196.47 351.59,196.18 351.69,195.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.72,196.47 352.4,197.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="353,197.18 352.69,197.28 352.4,197.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.73,197.51 352.1,197.25 351.63,196.77 351.39,196.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.73,197.51 352.7,197.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.39,196.13 351.22,196.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.43,194.93 352.66,194.78 352.93,194.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.93,194.79 353.63,195.24 354.08,195.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.43,194.93 351.69,195.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.08,195.94 354.09,196.22 353.94,196.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="353,197.18 353.94,196.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="343.66,192.06 343.66,191.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.31,191.61 347.31,192.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.8,199.2 346.8,197.43 346.8,197.43 346.11,197.56 345.54,197.94 345.15,198.52 345.03,199.2 345.03,199.2 344.9,198.52 344.52,197.94 343.94,197.56 343.26,197.43 343.26,199.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.02,201.41 343.04,201.41 343.04,199.2 347.02,199.2 347.02,201.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="334.2,201.98 334.2,205.9 336.35,205.9 338.11,204.13 338.11,201.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="334.2,201.98 338.11,201.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="334.2,205.9 336.35,205.9 336.62,206.17 336.62,206.17 336.81,206.63 336.81,211.45 334.2,211.45 334.2,205.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.11,201.98 338.11,204.13 338.39,204.4 338.39,204.4 338.85,204.59 343.66,204.59 343.66,201.98 338.11,201.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.27,207.59 338.96,207.31 339.48,206.78 339.75,206.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="339.25,206.39 339.38,206.1 339.28,205.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="339.25,206.39 338.56,207.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="337.97,207.1 338.27,207.2 338.56,207.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.24,207.43 338.87,207.17 339.34,206.69 339.58,206.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.24,207.43 338.27,207.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="339.58,206.05 339.75,206.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.54,204.85 338.31,204.7 338.04,204.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.04,204.71 337.34,205.16 336.89,205.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.54,204.85 339.28,205.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="336.89,205.86 336.88,206.14 337.03,206.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="337.97,207.1 337.03,206.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.77,201.98 356.77,205.9 354.62,205.9 352.85,204.13 352.85,201.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.77,201.98 352.85,201.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.77,205.9 354.62,205.9 354.35,206.17 354.35,206.17 354.16,206.63 354.16,211.45 356.77,211.45 356.77,205.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.85,201.98 352.85,204.13 352.58,204.4 352.58,204.4 352.12,204.59 347.3,204.59 347.3,201.98 352.85,201.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.69,207.59 352,207.31 351.48,206.78 351.22,206.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.72,206.39 351.59,206.1 351.69,205.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.72,206.39 352.4,207.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.99,207.1 352.69,207.2 352.4,207.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.72,207.43 352.1,207.17 351.62,206.69 351.39,206.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.72,207.43 352.69,207.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.39,206.05 351.22,206.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.42,204.85 352.65,204.7 352.93,204.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.93,204.71 353.63,205.16 354.08,205.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.42,204.85 351.69,205.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.08,205.86 354.09,206.14 353.94,206.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.99,207.1 353.94,206.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="334.2,220.83 334.2,216.91 336.35,216.91 338.11,218.68 338.11,220.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="334.2,220.83 338.11,220.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="334.2,216.91 336.35,216.91 336.62,216.64 336.62,216.64 336.81,216.18 336.81,211.36 334.2,211.36 334.2,216.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.11,220.83 338.11,218.68 338.39,218.41 338.39,218.41 338.85,218.22 343.66,218.22 343.66,220.83 338.11,220.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.27,215.22 338.96,215.5 339.48,216.03 339.75,216.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="339.25,216.42 339.38,216.71 339.28,217.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="339.25,216.42 338.56,215.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="337.97,215.71 338.27,215.61 338.56,215.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.24,215.38 338.87,215.64 339.34,216.12 339.58,216.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.24,215.38 338.27,215.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="339.58,216.76 339.75,216.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.54,217.96 338.31,218.11 338.04,218.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.04,218.1 337.34,217.65 336.89,216.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.54,217.96 339.28,217.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="336.89,216.95 336.88,216.67 337.03,216.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="337.97,215.71 337.03,216.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.23,213.78 354.24,213.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.23,213.39 353.25,213.39 353.25,211.41 357.23,211.41 357.23,213.39 353.25,211.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.79,201.98 366.79,205.9 364.64,205.9 362.88,204.13 362.88,201.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.79,201.98 362.88,201.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.79,205.9 364.64,205.9 364.37,206.17 364.37,206.17 364.18,206.63 364.18,211.45 366.79,211.44 366.79,205.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.88,201.98 362.88,204.13 362.61,204.4 362.61,204.4 362.15,204.59 357.33,204.59 357.33,201.98 362.88,201.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.72,207.59 362.03,207.31 361.51,206.78 361.25,206.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.74,206.39 361.61,206.1 361.71,205.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.74,206.39 362.43,207.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.02,207.1 362.72,207.2 362.43,207.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.75,207.43 362.12,207.17 361.65,206.69 361.41,206.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.75,207.43 362.72,207.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.41,206.05 361.25,206.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.45,204.85 362.68,204.7 362.95,204.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.95,204.71 363.65,205.16 364.1,205.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.45,204.85 361.71,205.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="364.1,205.86 364.12,206.14 363.96,206.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.02,207.1 363.96,206.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.79,220.83 366.79,216.91 364.64,216.91 362.88,218.68 362.88,220.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.79,220.83 362.88,220.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.79,216.91 364.64,216.91 364.37,216.64 364.37,216.64 364.18,216.18 364.18,211.36 366.79,211.36 366.79,216.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.88,220.83 362.88,218.68 362.61,218.41 362.61,218.41 362.15,218.22 357.33,218.22 357.33,220.83 362.88,220.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.72,215.22 362.03,215.5 361.51,216.03 361.25,216.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.74,216.42 361.61,216.71 361.71,217.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.74,216.42 362.43,215.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.02,215.71 362.72,215.61 362.43,215.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.75,215.38 362.12,215.64 361.65,216.12 361.41,216.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.75,215.38 362.72,215.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.41,216.75 361.25,216.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.45,217.96 362.68,218.11 362.95,218.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.95,218.1 363.65,217.64 364.1,216.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.45,217.96 361.71,217.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="364.1,216.95 364.12,216.67 363.96,216.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.02,215.71 363.96,216.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.33,221.28 357.33,220.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="343.66,220.83 343.66,221.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="343.66,221.28 343.88,221.28 343.88,217.36 343.66,217.36 343.66,221.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.11,221.28 357.33,221.28 357.33,217.36 357.11,217.36 357.11,221.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.5,222 373.72,222 373.72,218.08 373.5,218.08 373.5,222" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.5,201.98 373.72,201.98 373.72,198.07 373.5,198.07 373.5,201.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.31,192.06 367.25,192.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.23,192.06 357.23,195.98 359.38,195.98 361.14,194.21 361.14,192.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.23,192.06 361.14,192.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.23,195.98 359.38,195.98 359.65,196.25 359.65,196.25 359.84,196.71 359.84,201.53 357.22,201.53 357.23,195.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.14,192.06 361.14,194.21 361.41,194.48 361.41,194.48 361.87,194.67 366.69,194.67 366.69,192.06 361.14,192.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.3,197.67 361.99,197.39 362.51,196.86 362.77,196.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.28,196.47 362.41,196.18 362.31,195.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.28,196.47 361.59,197.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361,197.18 361.3,197.28 361.59,197.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.27,197.51 361.9,197.25 362.37,196.77 362.61,196.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.27,197.51 361.3,197.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.61,196.13 362.77,196.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.57,194.93 361.34,194.78 361.07,194.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.07,194.79 360.37,195.24 359.92,195.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.57,194.93 362.31,195.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.92,195.94 359.9,196.22 360.05,196.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361,197.18 360.05,196.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.84,201.53 365.06,201.53 365.06,199.79 359.84,199.79 359.84,201.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.49,201.52 387.49,197.61 385.34,197.61 383.57,199.38 383.57,201.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.49,201.52 383.57,201.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.49,197.61 385.34,197.61 385.07,197.34 385.07,197.34 384.88,196.88 384.88,192.06 387.49,192.06 387.49,197.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.57,201.52 383.57,199.37 383.3,199.11 383.3,199.11 382.84,198.91 378.02,198.91 378.02,201.52 383.57,201.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.41,195.92 382.72,196.2 382.2,196.73 381.94,197.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.44,197.12 382.31,197.41 382.41,197.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.44,197.12 383.12,196.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.71,196.41 383.41,196.31 383.12,196.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.44,196.08 382.82,196.33 382.34,196.82 382.1,197.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.44,196.08 383.41,195.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.1,197.45 381.94,197.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.14,198.66 383.37,198.81 383.65,198.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.65,198.8 384.34,198.34 384.8,197.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.14,198.66 382.41,197.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.8,197.64 384.81,197.37 384.66,197.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.71,196.41 384.66,197.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.94,190.95 384.4,190.47 380.83,190.3 377.26,190.47 373.72,190.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.13,198.99 374.3,198.23 374.79,197.63 375.48,197.29 376.26,197.29 376.96,197.63 377.44,198.23 377.61,198.99 377.44,199.74 376.96,200.35 376.26,200.68 375.48,200.68 374.79,200.35 374.3,199.74 374.13,198.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.8,195.29 376.11,195 375.37,195.01 374.69,195.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.26,195.45 374.96,195.57 374.82,195.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.26,195.45 376.23,195.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.67,195.85 376.52,195.57 376.23,195.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.71,195.43 376.08,195.17 375.41,195.17 374.79,195.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.71,195.43 376.8,195.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.79,195.45 374.69,195.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.67,197.04 374.73,197.31 374.93,197.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.93,197.49 375.74,197.67 376.56,197.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.67,197.04 374.82,195.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.56,197.49 376.76,197.31 376.82,197.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.67,195.85 376.82,197.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.49,221.54 387.49,217.63 385.34,217.63 383.57,219.39 383.57,221.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.49,221.54 383.57,221.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.49,217.63 385.34,217.63 385.07,217.36 385.07,217.36 384.88,216.9 384.88,212.08 387.49,212.08 387.49,217.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.57,221.54 383.57,219.39 383.3,219.12 383.3,219.12 382.84,218.93 378.02,218.93 378.02,221.54 383.57,221.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.41,215.94 382.72,216.22 382.2,216.75 381.94,217.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.44,217.14 382.31,217.43 382.41,217.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.44,217.14 383.12,216.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.71,216.43 383.41,216.33 383.12,216.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.44,216.1 382.82,216.35 382.34,216.84 382.1,217.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.44,216.1 383.41,215.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.1,217.47 381.94,217.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.14,218.68 383.37,218.83 383.65,218.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.65,218.81 384.34,218.36 384.8,217.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.14,218.68 382.41,217.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.8,217.66 384.81,217.39 384.66,217.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.71,216.43 384.66,217.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.13,219.01 374.3,218.25 374.79,217.65 375.48,217.31 376.26,217.31 376.96,217.65 377.44,218.25 377.61,219.01 377.44,219.76 376.96,220.37 376.26,220.7 375.48,220.7 374.79,220.37 374.3,219.76 374.13,219.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.8,215.31 376.11,215.02 375.37,215.03 374.69,215.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.26,215.47 374.96,215.59 374.82,215.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.26,215.47 376.23,215.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.67,215.87 376.52,215.59 376.23,215.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.71,215.45 376.08,215.18 375.41,215.19 374.79,215.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.71,215.45 376.8,215.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.79,215.47 374.69,215.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.67,217.06 374.73,217.33 374.93,217.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.93,217.51 375.74,217.69 376.56,217.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.67,217.06 374.82,215.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.56,217.51 376.76,217.33 376.82,217.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.67,215.87 376.82,217.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.72,211.62 387.94,211.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.72,212.08 387.94,212.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.72,211.62 373.72,212.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.5,212.08 373.72,212.08 373.72,208.16 373.5,208.16 373.5,212.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.49,211.62 387.49,207.71 385.34,207.71 383.57,209.47 383.57,211.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.49,211.62 383.57,211.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.49,207.71 385.34,207.71 385.07,207.44 385.07,207.44 384.88,206.98 384.88,202.16 387.49,202.16 387.49,207.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.57,211.62 383.57,209.47 383.3,209.2 383.3,209.2 382.84,209.01 378.02,209.01 378.02,211.62 383.57,211.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.41,206.02 382.72,206.3 382.2,206.83 381.94,207.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.44,207.22 382.31,207.51 382.41,207.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.44,207.22 383.12,206.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.71,206.5 383.41,206.41 383.12,206.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.44,206.18 382.82,206.43 382.34,206.92 382.1,207.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.44,206.18 383.41,206.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.1,207.55 381.94,207.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.14,208.76 383.37,208.91 383.65,208.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.65,208.89 384.34,208.44 384.8,207.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.14,208.76 382.41,207.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.8,207.74 384.81,207.47 384.66,207.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.71,206.5 384.66,207.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.13,209.09 374.3,208.33 374.79,207.73 375.48,207.39 376.26,207.39 376.96,207.73 377.44,208.33 377.61,209.09 377.44,209.84 376.96,210.45 376.26,210.78 375.48,210.78 374.79,210.45 374.3,209.84 374.13,209.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.8,205.39 376.11,205.1 375.37,205.11 374.69,205.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.26,205.55 374.96,205.67 374.82,205.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.26,205.55 376.23,205.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.67,205.95 376.52,205.67 376.23,205.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.71,205.53 376.08,205.26 375.41,205.27 374.79,205.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.71,205.53 376.8,205.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.79,205.55 374.69,205.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.67,207.14 374.73,207.41 374.93,207.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.93,207.59 375.74,207.77 376.56,207.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.67,207.14 374.82,205.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.56,207.59 376.76,207.41 376.82,207.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.67,205.95 376.82,207.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="342.31,212.4 342.31,210.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="342.69,213.39 342.69,209.42 344.68,209.42 344.68,213.39 342.69,213.39 344.68,209.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.05,210.41 347.05,212.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.67,209.42 346.67,213.39 344.68,213.39 344.68,209.42 346.67,209.42 344.68,213.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.81,218.29 369.81,220.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.43,217.3 369.43,221.28 367.44,221.28 367.44,217.3 369.43,217.3 367.44,221.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.81,214.32 369.81,216.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.43,213.32 369.43,217.3 367.44,217.3 367.44,213.32 369.43,213.32 367.44,217.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.81,210.34 369.81,212.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.43,209.34 369.43,213.32 367.44,213.32 367.44,209.34 369.43,209.34 367.44,213.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.81,206.36 369.81,208.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.43,205.36 369.43,209.34 367.44,209.34 367.44,205.36 369.43,205.36 367.44,209.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.81,202.38 369.81,204.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.43,201.39 369.43,205.36 367.44,205.36 367.44,201.39 369.43,201.39 367.44,205.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.29,174.34 336.12,174.34 336.12,172.6 328.29,172.6 328.29,174.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.27,184.89 329.28,184.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="332.26,184.51 328.28,184.51 328.28,182.52 332.26,182.52 332.26,184.51 328.28,182.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.28,182.52 336.24,182.52 336.24,182.06 328.28,182.06 328.28,182.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="335.25,184.89 333.26,184.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="336.24,184.51 332.26,184.51 332.26,182.52 336.24,182.52 336.24,184.51 332.26,182.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.28,182.06 328.28,178.15 330.43,178.15 332.2,179.91 332.2,182.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.28,182.06 332.2,182.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.28,178.15 330.43,178.15 330.7,177.88 330.7,177.88 330.89,177.42 330.89,174.34 328.28,174.34 328.28,178.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="332.2,182.06 332.2,179.91 332.47,179.64 332.47,179.64 332.93,179.45 336.24,179.45 336.24,182.06 332.2,182.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="332.36,176.46 333.05,176.74 333.57,177.27 333.83,177.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.33,177.66 333.46,177.95 333.36,178.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.33,177.66 332.65,176.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="332.06,176.95 332.36,176.85 332.65,176.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="332.33,176.62 332.95,176.87 333.43,177.36 333.67,177.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="332.33,176.62 332.36,176.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.67,177.99 333.83,177.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="332.63,179.2 332.4,179.35 332.12,179.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="332.12,179.33 331.42,178.88 330.97,178.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="332.63,179.2 333.36,178.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.97,178.18 330.96,177.91 331.11,177.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="332.06,176.95 331.11,177.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="341.55,175.72 341.55,173.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="341.93,176.72 341.93,172.74 343.92,172.74 343.92,176.72 341.93,176.72 343.92,172.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="341.55,179.7 341.55,177.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="341.93,180.69 341.93,176.72 343.92,176.72 343.92,180.69 341.93,180.69 343.92,176.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="380.46,174.34 388.3,174.34 388.3,172.6 380.46,172.6 380.46,174.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.44,184.9 381.45,184.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.44,184.51 380.46,184.51 380.46,182.52 384.44,182.52 384.44,184.51 380.46,182.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="380.46,182.52 388.42,182.52 388.42,182.07 380.46,182.07 380.46,182.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.42,184.9 385.43,184.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.42,184.51 384.44,184.51 384.44,182.52 388.42,182.52 388.42,184.51 384.44,182.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="380.46,182.07 380.46,178.15 382.61,178.15 384.37,179.92 384.37,182.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="380.46,182.07 384.37,182.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="380.46,178.15 382.61,178.15 382.88,177.88 382.88,177.88 383.07,177.42 383.07,174.34 380.46,174.34 380.46,178.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.37,182.06 384.37,179.92 384.65,179.65 384.65,179.65 385.11,179.46 388.42,179.46 388.42,182.07 384.37,182.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.53,176.46 385.22,176.74 385.74,177.27 386.01,177.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.51,177.66 385.64,177.95 385.54,178.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.51,177.66 384.82,176.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.23,176.95 384.53,176.85 384.82,176.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.5,176.62 385.13,176.88 385.6,177.36 385.84,177.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.5,176.62 384.53,176.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.84,177.99 386.01,177.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.8,179.2 384.57,179.35 384.3,179.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.3,179.34 383.6,178.88 383.15,178.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.8,179.2 385.54,178.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.15,178.19 383.14,177.91 383.29,177.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.23,176.95 383.29,177.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="380,182.07 380,178.15 380.46,178.15 380.46,182.07 380,182.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.03,177.19 391.03,175.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.41,178.19 391.41,174.21 393.4,174.21 393.4,178.19 391.41,178.19 393.4,174.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.02,377.31 352.42,377.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.02,376.69 352.42,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<path d="M358.97 376.99L358.97 377 352.48 377 352.48 376.99 358.97 376.99Z" fill-rule="evenodd" fill="cyan"/>
+<polyline points="403.71,376.69 403.52,375.46 402.95,374.35 402.07,373.47 400.96,372.91 399.73,372.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.93,372.71 399.93,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.93,376.69 399.73,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.73,376.69 399.73,372.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.51,377.26 399.51,377.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.51,377.31 399.73,377.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.73,377.31 399.73,377.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.73,377.12 399.79,377.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.79,377.12 399.79,376.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.79,376.9 399.73,376.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.73,376.9 399.73,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.73,376.69 399.51,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.51,376.69 399.51,376.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.93,377.26 403.93,377.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.93,377.31 403.71,377.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.71,377.31 403.71,377.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.71,377.12 403.66,377.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.66,377.12 403.66,376.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.66,376.9 403.71,376.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.71,376.9 403.71,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.71,376.69 403.93,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="403.93,376.69 403.93,376.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.51,376.74 399.51,377.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="410.12,376.84 410.12,377.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="410.12,376.74 410.12,377.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.9,377.31 403.93,377.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.9,376.69 403.93,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="410.12,376.79 410.12,376.69 409.9,376.69 409.9,376.88 409.85,376.88 409.85,377.1 409.9,377.1 409.9,377.31 410.12,377.31 410.12,377.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<path d="M409.85 376.99L409.85 377 403.99 377 403.99 376.99 409.85 376.99Z" fill-rule="evenodd" fill="cyan"/>
+<polyline points="403.71,376.79 403.71,376.69 403.93,376.69 403.93,376.88 403.99,376.88 403.99,377.1 403.93,377.1 403.93,377.31 403.71,377.31 403.71,377.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.49,376.69 393.68,375.46 394.25,374.35 395.13,373.47 396.24,372.91 397.47,372.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="397.27,372.71 397.27,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="397.27,376.69 397.47,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="397.47,376.69 397.47,372.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="397.69,377.26 397.69,377.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="397.69,377.31 397.47,377.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="397.47,377.31 397.47,377.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="397.47,377.12 397.41,377.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="397.41,377.12 397.41,376.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="397.41,376.9 397.47,376.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="397.47,376.9 397.47,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="397.47,376.69 397.69,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="397.69,376.69 397.69,376.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.27,377.26 393.27,377.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.27,377.31 393.49,377.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.49,377.31 393.49,377.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.49,377.12 393.54,377.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.54,377.12 393.54,376.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.54,376.9 393.49,376.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.49,376.9 393.49,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.49,376.69 393.27,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.27,376.69 393.27,376.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="397.69,376.74 397.69,377.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.97,377.31 393.27,377.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.97,376.69 393.27,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<path d="M386.03 377L386.03 376.99 393.21 376.99 393.21 377 386.03 377Z" fill-rule="evenodd" fill="cyan"/>
+<polyline points="393.49,376.79 393.49,376.69 393.27,376.69 393.27,376.88 393.21,376.88 393.21,377.1 393.27,377.1 393.27,377.31 393.49,377.31 393.49,377.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.63,376.84 383.63,377.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.63,376.74 383.63,377.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.4,377.31 376.11,377.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.4,376.69 376.11,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.63,376.79 383.63,376.69 383.4,376.69 383.4,376.88 383.35,376.88 383.35,377.1 383.4,377.1 383.4,377.31 383.63,377.31 383.63,377.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<path d="M383.35 376.99L383.35 377 376.17 377 376.17 376.99 383.35 376.99Z" fill-rule="evenodd" fill="cyan"/>
+<polyline points="375.89,376.79 375.89,376.69 376.11,376.69 376.11,376.88 376.17,376.88 376.17,377.1 376.11,377.1 376.11,377.31 375.89,377.31 375.89,377.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.75,376.84 385.75,377.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.75,376.74 385.75,377.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.75,376.79 385.75,376.69 385.97,376.69 385.97,376.88 386.03,376.88 386.03,377.1 385.97,377.1 385.97,377.31 385.75,377.31 385.75,377.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.89,376.69 375.69,375.46 375.13,374.35 374.25,373.47 373.14,372.91 371.91,372.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="372.1,372.71 372.1,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="372.1,376.69 371.91,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.91,376.69 371.91,372.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.69,377.26 371.69,377.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.69,377.31 371.91,377.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.91,377.31 371.91,377.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.91,377.12 371.97,377.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.97,377.12 371.97,376.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.97,376.9 371.91,376.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.91,376.9 371.91,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.91,376.69 371.69,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.69,376.69 371.69,376.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.11,377.26 376.11,377.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.11,377.31 375.89,377.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.89,377.31 375.89,377.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.89,377.12 375.83,377.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.83,377.12 375.83,376.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.83,376.9 375.89,376.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.89,376.9 375.89,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.89,376.69 376.11,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.11,376.69 376.11,376.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.49,319.43 310.97,319.43 310.97,322.08 336.49,322.08 336.49,319.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.45,320.33 314.38,320.17 314.22,320.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.22,321.73 314.38,321.67 314.45,321.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.2,321.51 312.27,321.67 312.43,321.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.43,320.1 312.27,320.17 312.2,320.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.2,320.33 312.2,321.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.22,320.1 312.43,320.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.45,321.51 314.45,320.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.43,321.73 314.22,321.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.98,319.6 311.98,321.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.67,319.6 311.98,319.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.67,321.96 314.67,319.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.98,321.96 314.67,321.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.16,320.92 313.21,320.8 313.33,320.75 313.45,320.8 313.49,320.92 313.45,321.04 313.33,321.09 313.21,321.04 313.16,320.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.57,345.73 309.8,345.92 310.91,346.49 311.79,347.37 312.35,348.48 312.55,349.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.55,349.52 308.57,349.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,349.52 308.57,349.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,349.71 312.55,349.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308,349.93 307.95,349.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.95,349.93 307.95,349.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.95,349.71 308.14,349.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.14,349.71 308.14,349.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.14,349.65 308.36,349.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.36,349.65 308.36,349.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.36,349.71 308.57,349.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,349.71 308.57,349.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,349.93 308.51,349.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308,345.51 307.95,345.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.95,345.51 307.95,345.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.95,345.73 308.14,345.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.14,345.73 308.14,345.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.14,345.79 308.36,345.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.36,345.79 308.36,345.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.36,345.73 308.57,345.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,345.73 308.57,345.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,345.51 308.51,345.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.51,349.93 308.01,349.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.47,345.73 308.57,345.73 308.57,345.51 308.37,345.51 308.37,345.45 308.15,345.45 308.15,345.51 307.95,345.51 307.95,345.73 308.03,345.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,359.13 309.8,359.33 310.91,359.89 311.79,360.77 312.35,361.88 312.55,363.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.55,362.92 308.57,362.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,362.92 308.57,363.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,363.11 312.55,363.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308,363.33 307.95,363.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.95,363.33 307.95,363.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.95,363.11 308.14,363.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.14,363.11 308.14,363.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.14,363.05 308.36,363.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.36,363.05 308.36,363.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.36,363.11 308.57,363.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,363.11 308.57,363.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,363.33 308.51,363.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308,358.91 307.95,358.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.95,358.91 307.95,359.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.95,359.13 308.14,359.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.14,359.13 308.14,359.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.14,359.19 308.36,359.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.36,359.19 308.36,359.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.36,359.13 308.57,359.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,359.13 308.57,358.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,358.91 308.51,358.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.51,363.33 308.01,363.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.42,351.75 308.09,351.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.51,351.75 308.01,351.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.95,351.97 307.95,358.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,351.97 308.57,358.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.47,351.75 308.57,351.75 308.57,351.97 308.37,351.97 308.37,352.03 308.15,352.03 308.15,351.97 307.95,351.97 307.95,351.75 308.03,351.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.26,352.03 308.26,358.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.47,359.13 308.57,359.13 308.57,358.91 308.37,358.91 308.37,358.85 308.15,358.85 308.15,358.91 307.95,358.91 307.95,359.13 308.03,359.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.64,351.31 336.49,351.31 336.49,355.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.57,371.81 309.8,372.01 310.91,372.57 311.79,373.45 312.35,374.56 312.55,375.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.55,375.6 308.57,375.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,375.6 308.57,375.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,375.79 312.55,375.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308,376.01 307.95,376.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.95,376.01 307.95,375.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.95,375.79 308.14,375.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.14,375.79 308.14,375.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.14,375.74 308.36,375.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.36,375.74 308.36,375.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.36,375.79 308.57,375.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,375.79 308.57,376.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,376.01 308.51,376.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308,371.59 307.95,371.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.95,371.59 307.95,371.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.95,371.81 308.14,371.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.14,371.81 308.14,371.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.14,371.87 308.36,371.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.36,371.87 308.36,371.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.36,371.81 308.57,371.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,371.81 308.57,371.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,371.59 308.51,371.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.51,376.01 308,376.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.51,365.1 308.01,365.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.95,365.32 307.95,371.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,365.32 308.57,371.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.47,365.1 308.57,365.1 308.57,365.32 308.37,365.32 308.37,365.37 308.15,365.37 308.15,365.32 307.95,365.32 307.95,365.1 308.03,365.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.26,365.37 308.26,371.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.47,371.81 308.57,371.81 308.57,371.59 308.37,371.59 308.37,371.54 308.15,371.54 308.15,371.59 307.95,371.59 307.95,371.81 308.03,371.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.89,350.61 351.66,350.81 350.55,351.37 349.67,352.25 349.11,353.36 348.91,354.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.91,354.4 352.89,354.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.89,354.4 352.89,354.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.89,354.59 348.91,354.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.46,354.81 353.51,354.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.51,354.81 353.51,354.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.51,354.59 353.32,354.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.32,354.59 353.32,354.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.32,354.54 353.1,354.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.1,354.54 353.1,354.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.1,354.59 352.89,354.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.89,354.59 352.89,354.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.89,354.81 352.95,354.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.46,350.39 353.51,350.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.51,350.39 353.51,350.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.51,350.61 353.32,350.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.32,350.61 353.32,350.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.32,350.67 353.1,350.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.1,350.67 353.1,350.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.1,350.61 352.89,350.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.89,350.61 352.89,350.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.89,350.39 352.95,350.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="367.21,364.7 370.53,364.7 370.53,345.48 367.21,345.48 367.21,364.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="370.53,364.7 370.53,345.48 369.2,345.48 369.2,364.7 370.53,364.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="353.57,355.76 353.57,359.08 360.58,359.08 360.58,355.76 353.57,355.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="353.57,359.08 360.58,359.08 360.58,357.75 353.57,357.75 353.57,359.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="411.77,423.92 410.54,423.73 409.43,423.16 408.55,422.28 407.98,421.17 407.79,419.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.79,420.14 411.77,420.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.77,420.14 411.77,419.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.77,419.94 407.79,419.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.33,419.72 412.39,419.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.39,419.72 412.39,419.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.39,419.94 412.19,419.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.19,419.94 412.19,420" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.19,420 411.97,420" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.97,420 411.97,419.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.97,419.94 411.77,419.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.77,419.94 411.77,419.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.77,419.72 411.82,419.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.33,424.14 412.39,424.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.39,424.14 412.39,423.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.39,423.92 412.19,423.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.19,423.92 412.19,423.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.19,423.87 411.97,423.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.97,423.87 411.97,423.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.97,423.92 411.77,423.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.77,423.92 411.77,424.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.77,424.14 411.82,424.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.37,383.5 335.37,383.17 327.38,383.17 327.38,383.5 335.37,383.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="335.37,383.5 335.7,383.5 335.7,390.21 335.37,390.21 335.37,383.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.96,368.54 300.96,368.2 284.59,368.2 284.59,368.54 300.96,368.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.29,375.17 300.96,375.17 300.96,368.54 301.29,368.54 301.29,375.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.32,372.66 370.53,372.66 370.53,376.64 368.32,376.64 368.32,372.66 370.53,376.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.32,368.68 370.53,368.68 370.53,372.66 368.32,372.66 368.32,368.68 370.53,372.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.32,364.7 370.53,364.7 370.53,368.68 368.32,368.68 368.32,364.7 370.53,368.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.55,364.93 366.68,365.6 367.07,366.18 367.64,366.56 368.32,366.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.55,365.01 368.32,365.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.32,364.93 366.55,364.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.32,366.69 367.64,366.83 367.07,367.21 366.68,367.79 366.55,368.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.55,368.38 368.32,368.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.32,368.46 366.55,368.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.96,345.81 300.96,345.48 284.59,345.48 284.59,345.81 300.96,345.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.29,352.27 300.96,352.27 300.96,345.81 301.29,345.81 301.29,352.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.04,383.5 327.38,383.5 327.38,397.26 327.04,397.26 327.04,383.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.95,382.7 298.95,382.37 309.79,382.37 309.79,382.7 298.95,382.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.76,383.5 317.76,383.17 327.04,383.17 327.04,383.5 317.76,383.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.76,383.5 317.43,383.5 317.43,390.21 317.76,390.21 317.76,383.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.14,382.2 368.14,382.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.14,382.64 368.14,382.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.14,383.14 368.14,383.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.14,383.64 368.14,383.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.14,384.14 368.14,384.41 367.98,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.81,384.41 367.48,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.31,384.41 366.98,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.81,384.41 366.48,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.32,384.41 365.99,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.82,384.41 365.49,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.32,384.41 364.99,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="364.83,384.41 364.49,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="364.33,384.41 364.16,384.41 364.16,384.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="364.16,383.97 364.16,383.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="364.16,383.47 364.16,383.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="364.16,382.97 364.16,382.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="364.16,382.48 364.16,382.2 364.33,382.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="364.49,382.2 364.83,382.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="364.99,382.2 365.32,382.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.49,382.2 365.82,382.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.99,382.2 366.32,382.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.48,382.2 366.81,382.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.98,382.2 367.31,382.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.48,382.2 367.81,382.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.98,382.2 368.14,382.2 367.96,382.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.82,382.38 367.53,382.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.38,382.62 367.09,382.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.95,382.86 366.66,383.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.51,383.1 366.22,383.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.08,383.35 365.79,383.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.64,383.59 365.35,383.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.21,383.83 364.92,383.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="364.77,384.07 364.49,384.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="364.34,384.31 364.16,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.12,382.2 372.12,382.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.12,382.64 372.12,382.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.12,383.14 372.12,383.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.12,383.64 372.12,383.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.12,384.14 372.12,384.41 371.95,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.79,384.41 371.46,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.29,384.41 370.96,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.79,384.41 370.46,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.3,384.41 369.96,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.8,384.41 369.47,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.3,384.41 368.97,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.8,384.41 368.47,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.31,384.41 368.14,384.41 368.14,384.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.14,383.97 368.14,383.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.14,383.47 368.14,383.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.14,382.97 368.14,382.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.14,382.48 368.14,382.2 368.31,382.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.47,382.2 368.8,382.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.97,382.2 369.3,382.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.47,382.2 369.8,382.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.96,382.2 370.3,382.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.46,382.2 370.79,382.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.96,382.2 371.29,382.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.46,382.2 371.79,382.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.95,382.2 372.12,382.2 371.94,382.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.8,382.38 371.51,382.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.36,382.62 371.07,382.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.93,382.86 370.64,383.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.49,383.1 370.2,383.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.06,383.35 369.77,383.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.62,383.59 369.33,383.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.19,383.83 368.9,383.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.75,384.07 368.46,384.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.32,384.31 368.14,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.79,371.52 383.75,371.33 383.63,371.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="381.31,371.18 381.18,371.33 381.14,371.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="381.31,373.34 381.31,371.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.63,371.18 383.63,373.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="381.14,373.46 381.14,371.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="381.14,373.46 381.18,373.59 381.29,373.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="381.31,373.34 381.35,373.47 381.47,373.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="381.47,373.55 382.47,373.67 383.47,373.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.47,373.55 383.58,373.47 383.63,373.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.79,371.52 383.79,373.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="381.29,373.67 382.47,373.83 383.64,373.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.64,373.67 383.75,373.59 383.79,373.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="381.31,371.18 383.63,371.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.82,371.52 377.87,371.33 377.99,371.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="380.31,371.18 380.43,371.33 380.48,371.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="380.31,373.34 380.31,371.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.99,371.18 377.99,373.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="380.48,373.46 380.48,371.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="380.48,373.46 380.43,373.59 380.32,373.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="380.31,373.34 380.27,373.47 380.15,373.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="380.15,373.55 379.15,373.67 378.15,373.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.15,373.55 378.03,373.47 377.99,373.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.82,371.52 377.82,373.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="380.32,373.67 379.15,373.83 377.98,373.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.98,373.67 377.87,373.59 377.82,373.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="380.31,371.18 377.99,371.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.57,364.2 378.25,363.91 379,363.92 379.68,364.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="379.11,364.36 379.41,364.48 379.55,364.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="379.11,364.36 378.14,364.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.7,364.76 377.84,364.48 378.14,364.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.66,364.34 378.29,364.08 378.96,364.09 379.58,364.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.66,364.34 377.57,364.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="379.58,364.36 379.68,364.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="379.7,365.95 379.64,366.22 379.44,366.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="379.44,366.4 378.62,366.58 377.81,366.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="379.7,365.95 379.55,364.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.81,366.4 377.61,366.22 377.55,365.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.7,364.76 377.55,365.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.92,331.36 324.55,331.36 324.55,328.05 317.92,328.05 317.92,331.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.55,331.36 331.18,331.36 331.18,328.05 324.55,328.05 324.55,331.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.24,344.62 321.24,337.99 317.92,337.99 317.92,344.62 321.24,344.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.24,337.99 321.24,331.36 317.92,331.36 317.92,337.99 321.24,337.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.18,337.99 331.18,331.36 327.87,331.36 327.87,337.99 331.18,337.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.2,327.48 328.24,327.67 328.37,327.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.69,327.83 330.81,327.67 330.85,327.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.69,325.67 330.69,327.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.37,327.83 328.37,325.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.85,325.55 330.85,327.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.85,325.55 330.81,325.42 330.7,325.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.69,325.67 330.64,325.53 330.53,325.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.53,325.46 329.53,325.34 328.53,325.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.53,325.46 328.41,325.53 328.37,325.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.2,327.48 328.2,325.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.7,325.34 329.53,325.17 328.35,325.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.35,325.34 328.24,325.42 328.2,325.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.69,327.83 328.37,327.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.54,327.48 327.49,327.67 327.37,327.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="325.05,327.83 324.93,327.67 324.89,327.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="325.05,325.67 325.05,327.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.37,327.83 327.37,325.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.89,325.55 324.89,327.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.89,325.55 324.93,325.42 325.04,325.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="325.05,325.67 325.1,325.53 325.21,325.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="325.21,325.46 326.21,325.34 327.21,325.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.21,325.46 327.33,325.53 327.37,325.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.54,327.48 327.54,325.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="325.04,325.34 326.21,325.17 327.39,325.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.39,325.34 327.5,325.42 327.54,325.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="325.05,327.83 327.37,327.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.57,327.48 321.61,327.67 321.74,327.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.06,327.83 324.18,327.67 324.22,327.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.06,325.67 324.06,327.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.74,327.83 321.74,325.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.22,325.55 324.22,327.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.22,325.55 324.18,325.42 324.07,325.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.06,325.67 324.01,325.53 323.9,325.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.9,325.46 322.9,325.34 321.9,325.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.9,325.46 321.78,325.53 321.74,325.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.57,327.48 321.57,325.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.07,325.34 322.9,325.17 321.72,325.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.72,325.34 321.61,325.42 321.57,325.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.06,327.83 321.74,327.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.91,327.48 320.86,327.67 320.74,327.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.42,327.83 318.3,327.67 318.25,327.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.42,325.67 318.42,327.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.74,327.83 320.74,325.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.25,325.55 318.25,327.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.25,325.55 318.3,325.42 318.41,325.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.42,325.67 318.47,325.53 318.58,325.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.58,325.46 319.58,325.34 320.58,325.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.58,325.46 320.7,325.53 320.74,325.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.91,327.48 320.91,325.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.41,325.34 319.58,325.17 320.75,325.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.75,325.34 320.86,325.42 320.91,325.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.42,327.83 320.74,327.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.75,331.03 331.56,330.99 331.41,330.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.41,328.54 331.56,328.42 331.75,328.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.56,328.54 331.41,328.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.41,330.87 333.56,330.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.69,328.38 331.75,328.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.69,328.38 333.82,328.42 333.9,328.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.56,328.54 333.7,328.59 333.78,328.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.78,328.71 333.89,329.71 333.78,330.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.78,330.7 333.7,330.82 333.56,330.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.75,331.03 333.69,331.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.9,328.53 334.06,329.71 333.9,330.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.9,330.88 333.82,330.99 333.69,331.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.41,328.54 331.41,330.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.36,331.03 317.55,330.99 317.7,330.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.7,328.54 317.55,328.42 317.36,328.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.54,328.54 317.7,328.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.7,330.87 315.54,330.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.42,328.38 317.36,328.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.42,328.38 315.29,328.42 315.21,328.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.54,328.54 315.41,328.59 315.33,328.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.33,328.71 315.22,329.71 315.33,330.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.33,330.7 315.41,330.82 315.54,330.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.36,331.03 315.42,331.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.21,328.53 315.05,329.71 315.21,330.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.21,330.88 315.29,330.99 315.42,331.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.7,328.54 317.7,330.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.75,331.69 331.56,331.74 331.41,331.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.41,334.18 331.56,334.3 331.75,334.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.56,334.18 331.41,334.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.41,331.86 333.56,331.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.69,334.35 331.75,334.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.69,334.35 333.82,334.3 333.9,334.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.56,334.18 333.7,334.14 333.78,334.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.78,334.02 333.89,333.02 333.78,332.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.78,332.02 333.7,331.9 333.56,331.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.75,331.69 333.69,331.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.9,334.19 334.06,333.02 333.9,331.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.9,331.85 333.82,331.74 333.69,331.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.41,334.18 331.41,331.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.75,337.66 331.56,337.62 331.41,337.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.41,335.18 331.56,335.05 331.75,335.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.56,335.18 331.41,335.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.41,337.5 333.56,337.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.69,335.01 331.75,335.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.69,335.01 333.82,335.05 333.9,335.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.56,335.18 333.7,335.22 333.78,335.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.78,335.34 333.89,336.34 333.78,337.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.78,337.34 333.7,337.45 333.56,337.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.75,337.66 333.69,337.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.9,335.16 334.06,336.34 333.9,337.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.9,337.51 333.82,337.62 333.69,337.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.41,335.18 331.41,337.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.36,331.69 317.55,331.74 317.7,331.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.7,334.18 317.55,334.3 317.36,334.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.54,334.18 317.7,334.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.7,331.86 315.54,331.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.42,334.35 317.36,334.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.42,334.35 315.29,334.3 315.21,334.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.54,334.18 315.41,334.14 315.33,334.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.33,334.02 315.22,333.02 315.33,332.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.33,332.02 315.41,331.9 315.54,331.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.36,331.69 315.42,331.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.21,334.19 315.05,333.02 315.21,331.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.21,331.85 315.29,331.74 315.42,331.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.7,334.18 317.7,331.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.36,337.66 317.55,337.62 317.7,337.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.7,335.18 317.55,335.05 317.36,335.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.54,335.18 317.7,335.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.7,337.5 315.54,337.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.42,335.01 317.36,335.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.42,335.01 315.29,335.05 315.21,335.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.54,335.18 315.41,335.22 315.33,335.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.33,335.34 315.22,336.34 315.33,337.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.33,337.34 315.41,337.45 315.54,337.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.36,337.66 315.42,337.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.21,335.16 315.05,336.34 315.21,337.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.21,337.51 315.29,337.62 315.42,337.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.7,335.18 317.7,337.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.36,344.29 317.55,344.25 317.7,344.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.7,341.81 317.55,341.68 317.36,341.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.54,341.81 317.7,341.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.7,344.13 315.54,344.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.42,341.64 317.36,341.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.42,341.64 315.29,341.68 315.21,341.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.54,341.81 315.41,341.85 315.33,341.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.33,341.97 315.22,342.97 315.33,343.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.33,343.97 315.41,344.08 315.54,344.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.36,344.29 315.42,344.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.21,341.79 315.05,342.97 315.21,344.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.21,344.14 315.29,344.25 315.42,344.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.7,341.81 317.7,344.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.36,338.33 317.55,338.37 317.7,338.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.7,340.81 317.55,340.93 317.36,340.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.54,340.81 317.7,340.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.7,338.49 315.54,338.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.42,340.98 317.36,340.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.42,340.98 315.29,340.94 315.21,340.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.54,340.81 315.41,340.77 315.33,340.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.33,340.65 315.22,339.65 315.33,338.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.33,338.65 315.41,338.54 315.54,338.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.36,338.33 315.42,338.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.21,340.83 315.05,339.65 315.21,338.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.21,338.48 315.29,338.37 315.42,338.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.7,340.81 317.7,338.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.18,344.62 331.18,337.99 327.87,337.99 327.87,344.62 331.18,344.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.75,338.33 331.56,338.37 331.41,338.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.41,340.81 331.56,340.93 331.75,340.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.56,340.81 331.41,340.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.41,338.49 333.56,338.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.69,340.98 331.75,340.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.69,340.98 333.82,340.94 333.9,340.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.56,340.81 333.7,340.77 333.78,340.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.78,340.65 333.89,339.65 333.78,338.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.78,338.65 333.7,338.54 333.56,338.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.75,338.33 333.69,338.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.9,340.83 334.06,339.65 333.9,338.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.9,338.48 333.82,338.37 333.69,338.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.41,340.81 331.41,338.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.75,344.29 331.56,344.25 331.41,344.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.41,341.81 331.56,341.68 331.75,341.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.56,341.81 331.41,341.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.41,344.13 333.56,344.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.69,341.64 331.75,341.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.69,341.64 333.82,341.68 333.9,341.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.56,341.81 333.7,341.85 333.78,341.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.78,341.97 333.89,342.97 333.78,343.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.78,343.97 333.7,344.08 333.56,344.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.75,344.29 333.69,344.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.9,341.79 334.06,342.97 333.9,344.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.9,344.14 333.82,344.25 333.69,344.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.41,341.81 331.41,344.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.87,341.31 321.24,341.31 321.24,344.62 327.87,344.62 327.87,341.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.22,345.19 324.18,345 324.06,344.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.74,344.85 321.61,345 321.57,345.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.74,347 321.74,344.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.06,344.85 324.06,347" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.57,347.13 321.57,345.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.57,347.13 321.61,347.26 321.72,347.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.74,347 321.78,347.14 321.9,347.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.9,347.22 322.9,347.33 323.9,347.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.9,347.22 324.01,347.14 324.06,347" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.22,345.19 324.22,347.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.72,347.34 322.9,347.5 324.07,347.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.07,347.34 324.18,347.26 324.22,347.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.74,344.85 324.06,344.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.89,345.19 324.93,345 325.05,344.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.37,344.85 327.49,345 327.54,345.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.37,347 327.37,344.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="325.05,344.85 325.05,347" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.54,347.13 327.54,345.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.54,347.13 327.5,347.26 327.39,347.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.37,347 327.33,347.14 327.21,347.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.21,347.22 326.21,347.33 325.21,347.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="325.21,347.22 325.1,347.14 325.05,347" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.89,345.19 324.89,347.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.39,347.34 326.21,347.5 325.04,347.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="325.04,347.34 324.93,347.26 324.89,347.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.37,344.85 325.05,344.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.85,345.19 330.81,345 330.69,344.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.37,344.85 328.24,345 328.2,345.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.37,347 328.37,344.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.69,344.85 330.69,347" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.2,347.13 328.2,345.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.2,347.13 328.24,347.26 328.35,347.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.37,347 328.41,347.14 328.53,347.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.53,347.22 329.53,347.33 330.53,347.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.53,347.22 330.64,347.14 330.69,347" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.85,345.19 330.85,347.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.35,347.34 329.53,347.5 330.7,347.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.7,347.34 330.81,347.26 330.85,347.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.37,344.85 330.69,344.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.25,345.19 318.3,345 318.42,344.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.74,344.85 320.86,345 320.91,345.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.74,347 320.74,344.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.42,344.85 318.42,347" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.91,347.13 320.91,345.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.91,347.13 320.86,347.26 320.75,347.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.74,347 320.7,347.14 320.58,347.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.58,347.22 319.58,347.33 318.58,347.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.58,347.22 318.47,347.14 318.42,347" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.25,345.19 318.25,347.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.75,347.34 319.58,347.5 318.41,347.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.41,347.34 318.3,347.26 318.25,347.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.74,344.85 318.42,344.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.53,281.38 295.17,281.38 295.17,281.05 290.53,281.05 290.53,281.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.2,359.04 319.24,359.23 319.37,359.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.69,359.38 321.81,359.23 321.85,359.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.69,357.23 321.69,359.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="319.37,359.38 319.37,357.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.85,357.1 321.85,359.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.85,357.1 321.81,356.97 321.7,356.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.69,357.23 321.64,357.09 321.53,357.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.53,357.01 320.53,356.9 319.53,357.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="319.53,357.01 319.41,357.09 319.37,357.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="319.2,359.04 319.2,357.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.7,356.89 320.53,356.73 319.35,356.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="319.35,356.89 319.24,356.97 319.2,357.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.69,359.38 319.37,359.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.33,364.22 325.94,364.22 325.94,363.89 315.33,363.89 315.33,364.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="286.13,372.71 285.84,373.4 285.85,374.14 286.15,374.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.29,374.25 286.4,374.55 286.69,374.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.29,374.25 286.29,373.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.69,372.84 286.4,372.99 286.29,373.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.27,372.81 286,373.43 286.01,374.11 286.29,374.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.27,372.81 286.13,372.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.29,374.72 286.15,374.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.88,374.84 288.14,374.78 288.33,374.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.33,374.58 288.5,373.77 288.33,372.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.88,374.84 286.69,374.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.33,372.95 288.14,372.75 287.88,372.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.69,372.84 287.88,372.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.37,345.65 365.01,345.65 365.01,348.96 360.37,348.96 360.37,345.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.04,346.2 360.37,346.2 360.37,348.41 359.04,348.41 359.04,346.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.01,346.12 363.44,346.12 363.44,348.33 361.01,348.33 361.01,346.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.56,347.08 361.53,347.02 361.47,346.95 361.41,346.92 361.28,346.92 361.22,346.95 361.15,347.02 361.12,347.08 361.09,347.17 361.09,347.33 361.12,347.43 361.15,347.49 361.22,347.55 361.28,347.59 361.41,347.59 361.47,347.55 361.53,347.49 361.56,347.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.91,347.14 361.85,347.17 361.78,347.24 361.75,347.33 361.75,347.4 361.78,347.49 361.85,347.55 361.91,347.59 362.01,347.59 362.07,347.55 362.13,347.49 362.16,347.4 362.16,347.33 362.13,347.24 362.07,347.17 362.01,347.14 361.91,347.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.35,347.14 362.35,347.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.35,347.24 362.42,347.17 362.48,347.14 362.57,347.14 362.64,347.17 362.7,347.24 362.73,347.33 362.73,347.4 362.7,347.49 362.64,347.55 362.57,347.59 362.48,347.59 362.42,347.55 362.35,347.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.98,347.14 363.17,347.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.36,347.14 363.17,347.59 363.08,347.77 363.05,347.81 362.95,347.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.01,346.2 366.34,346.2 366.34,348.41 365.01,348.41 365.01,346.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.84,321.78 308.01,321.78 308.01,322.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="309.39,323.04 309.35,323.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.32,323.04 309.27,323.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.24,323.04 309.19,323.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.16,323.04 309.11,323.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.09,323.04 309.03,323.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.01,323.04 308.96,323.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.93,323.04 308.88,323.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.85,323.04 308.8,323.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.77,323.04 308.73,323.04 308.73,323.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,323.1 308.73,323.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,323.17 308.73,323.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,323.25 308.73,323.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,323.33 308.73,323.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,323.41 308.73,323.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,323.49 308.73,323.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,323.57 308.73,323.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,323.64 308.73,323.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,323.72 308.73,323.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,323.8 308.73,323.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,323.88 308.73,323.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,323.96 308.73,324.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,324.04 308.73,324.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,324.11 308.73,324.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,324.19 308.73,324.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,324.27 308.73,324.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,324.35 308.73,324.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,324.43 308.73,324.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,324.51 308.73,324.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,324.58 308.73,324.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,324.66 308.73,324.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,324.74 308.73,324.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,324.82 308.73,324.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,324.9 308.73,324.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,324.98 308.73,325.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,325.05 308.73,325.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,325.13 308.73,325.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,325.21 308.73,325.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,325.29 308.73,325.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,325.37 308.73,325.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,325.45 308.73,325.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,325.52 308.73,325.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,325.6 308.73,325.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,325.68 308.73,325.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,325.76 308.73,325.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,325.84 308.73,325.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,325.92 308.73,325.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,325.99 308.73,326.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,326.07 308.73,326.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,326.15 308.73,326.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,326.23 308.73,326.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,326.31 308.73,326.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,326.39 308.73,326.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,326.46 308.73,326.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,326.54 308.73,326.57 308.77,326.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.8,326.57 308.85,326.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.88,326.57 308.93,326.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.96,326.57 309.01,326.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.03,326.57 309.09,326.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.11,326.57 309.16,326.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.19,326.57 309.24,326.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.27,326.57 309.32,326.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.35,326.57 309.39,326.57 309.39,326.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,326.52 309.39,326.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,326.44 309.39,326.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,326.36 309.39,326.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,326.28 309.39,326.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,326.2 309.39,326.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,326.12 309.39,326.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,326.05 309.39,325.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,325.97 309.39,325.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,325.89 309.39,325.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,325.81 309.39,325.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,325.73 309.39,325.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,325.65 309.39,325.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,325.58 309.39,325.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,325.5 309.39,325.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,325.42 309.39,325.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,325.34 309.39,325.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,325.26 309.39,325.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,325.18 309.39,325.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,325.11 309.39,325.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,325.03 309.39,324.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,324.95 309.39,324.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,324.87 309.39,324.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,324.79 309.39,324.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,324.71 309.39,324.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,324.64 309.39,324.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,324.56 309.39,324.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,324.48 309.39,324.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,324.4 309.39,324.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,324.32 309.39,324.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,324.24 309.39,324.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,324.17 309.39,324.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,324.09 309.39,324.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,324.01 309.39,323.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,323.93 309.39,323.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,323.85 309.39,323.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,323.77 309.39,323.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,323.7 309.39,323.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,323.62 309.39,323.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,323.54 309.39,323.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,323.46 309.39,323.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,323.38 309.39,323.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,323.3 309.39,323.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,323.23 309.39,323.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,323.15 309.39,323.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,323.07 309.39,323.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.46,331.14 309.46,322.25 308.73,322.25 308.73,331.14" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.01,330.73 308.48,330.73 308.48,330.95 308.01,330.95 308.01,330.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.01,322.68 308.48,322.68 308.48,322.9 308.01,322.9 308.01,322.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.1,322.9 304.1,323.01 308.01,323.01 308.01,322.9 304.1,322.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.1,330.62 304.1,330.73 308.01,330.73 308.01,330.62 304.1,330.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.1,322.9 304.29,324.11 304.85,325.2 305.71,326.07 306.8,326.62 308.01,326.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.01,326.82 306.8,327.01 305.71,327.56 304.85,328.43 304.29,329.52 304.1,330.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.39,330.11 309.35,330.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.32,330.11 309.27,330.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.24,330.11 309.19,330.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.16,330.11 309.11,330.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.09,330.11 309.03,330.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.01,330.11 308.96,330.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.93,330.11 308.88,330.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.85,330.11 308.8,330.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.77,330.11 308.73,330.11 308.73,330.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,330.05 308.73,330" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,329.97 308.73,329.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,329.89 308.73,329.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,329.82 308.73,329.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,329.74 308.73,329.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,329.66 308.73,329.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,329.58 308.73,329.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,329.5 308.73,329.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,329.42 308.73,329.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,329.35 308.73,329.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,329.27 308.73,329.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,329.19 308.73,329.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,329.11 308.73,329.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,329.03 308.73,328.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,328.95 308.73,328.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,328.88 308.73,328.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,328.8 308.73,328.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,328.72 308.73,328.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,328.64 308.73,328.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,328.56 308.73,328.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,328.48 308.73,328.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,328.41 308.73,328.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,328.33 308.73,328.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,328.25 308.73,328.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,328.17 308.73,328.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,328.09 308.73,328.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,328.01 308.73,327.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,327.94 308.73,327.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,327.86 308.73,327.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,327.78 308.73,327.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,327.7 308.73,327.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,327.62 308.73,327.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,327.54 308.73,327.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,327.47 308.73,327.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,327.39 308.73,327.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,327.31 308.73,327.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,327.23 308.73,327.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,327.15 308.73,327.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,327.07 308.73,327.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,327 308.73,326.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,326.92 308.73,326.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,326.84 308.73,326.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,326.76 308.73,326.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,326.68 308.73,326.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.73,326.6 308.73,326.57 308.77,326.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.8,326.57 308.85,326.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.88,326.57 308.93,326.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.96,326.57 309.01,326.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.03,326.57 309.09,326.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.11,326.57 309.16,326.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.19,326.57 309.24,326.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.27,326.57 309.32,326.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.35,326.57 309.39,326.57 309.39,326.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,326.63 309.39,326.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,326.71 309.39,326.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,326.79 309.39,326.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,326.87 309.39,326.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,326.94 309.39,327" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,327.02 309.39,327.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,327.1 309.39,327.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,327.18 309.39,327.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,327.26 309.39,327.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,327.34 309.39,327.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,327.41 309.39,327.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,327.49 309.39,327.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,327.57 309.39,327.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,327.65 309.39,327.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,327.73 309.39,327.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,327.81 309.39,327.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,327.88 309.39,327.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,327.96 309.39,328.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,328.04 309.39,328.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,328.12 309.39,328.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,328.2 309.39,328.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,328.28 309.39,328.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,328.35 309.39,328.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,328.43 309.39,328.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,328.51 309.39,328.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,328.59 309.39,328.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,328.67 309.39,328.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,328.75 309.39,328.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,328.82 309.39,328.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,328.9 309.39,328.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,328.98 309.39,329.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,329.06 309.39,329.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,329.14 309.39,329.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,329.22 309.39,329.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,329.29 309.39,329.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,329.37 309.39,329.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,329.45 309.39,329.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,329.53 309.39,329.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,329.61 309.39,329.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,329.69 309.39,329.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,329.76 309.39,329.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,329.84 309.39,329.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,329.92 309.39,329.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,330 309.39,330.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.39,330.08 309.39,330.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.8,307.21 305.8,306.77 305.64,306.77 305.64,307.21 305.8,307.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.65,302.93 309.65,306.77 309.49,306.77 309.49,302.93 309.65,302.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.81,306.77 309.81,307.21 309.65,307.21 309.65,306.77 309.81,306.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.64,306.77 305.8,306.77 305.8,307.21 305.64,307.21 305.64,306.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.49,302.93 308.34,303.15 307.31,303.72 306.5,304.56 305.98,305.61 305.8,306.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.41,300.97 299.62,300.97 299.62,301.48 299.41,301.48 299.41,300.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.27,300.97 295.49,300.97 295.49,301.48 295.27,301.48 295.27,300.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.3,297.05 299.41,297.05 299.41,300.97 299.3,300.97 299.3,297.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.41,297.05 298.2,297.24 297.1,297.8 296.24,298.67 295.68,299.76 295.49,300.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.12,352.02 333.63,352.02 333.63,352.23 333.12,352.23 333.12,352.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.46,352.34 333.12,352.34 333.12,352.23 330.46,352.23 330.46,352.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.12,357.54 333.63,357.54 333.63,357.76 333.12,357.76 333.12,357.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.46,357.54 333.12,357.54 333.12,357.43 330.46,357.43 330.46,357.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.46,352.23 330.59,353.06 330.97,353.8 331.56,354.38 332.3,354.76 333.12,354.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.12,354.89 332.3,355.02 331.56,355.4 330.97,355.98 330.59,356.72 330.46,357.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.07,351.31 335.07,354.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="335.07,355.85 335.07,359.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="321.32,284.36 321.32,284.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.27,284.36 320.27,284.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.32,284.36 320.27,284.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.32,284.59 320.27,284.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.32,290.11 321.32,290.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.27,290.11 320.27,290.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.32,290.11 320.27,290.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.32,290.33 320.27,290.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.11,290.11 320.11,287.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.27,290.11 320.27,287.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.11,290.11 320.27,290.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.11,284.59 320.11,287.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.27,284.59 320.27,287.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.11,287.35 320.27,287.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.11,284.59 320.27,284.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.4,290.83 319.4,283.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.4,283.87 312.44,283.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.44,283.87 312.44,290.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.44,290.83 319.4,290.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.41,295.94 312.41,302.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.41,302.91 319.37,302.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.37,302.91 319.37,295.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.37,295.94 312.41,295.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,302.55 310.05,302.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.54,302.55 311.54,302.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,302.55 311.54,302.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,302.32 311.54,302.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,296.8 310.05,296.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.54,296.8 311.54,296.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,296.8 311.54,296.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,296.58 311.54,296.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.71,299.56 311.71,296.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.54,296.8 311.54,299.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.71,296.8 311.54,296.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.71,299.56 311.71,302.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.54,302.32 311.54,299.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.71,299.56 311.54,299.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.71,302.32 311.54,302.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.58,416.44 330.29,416.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.56,432.23 312.61,432.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.61,432.34 312.67,432.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.56,431.2 312.55,431.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.57,432.4 313.67,432.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.67,432.18 313.74,431.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.76,431.72 313.74,431.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.31,431.05 313.22,430.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.74,431.48 313.67,431.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.51,431.51 313.46,431.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.49,430.92 313.39,430.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.46,431.32 313.37,431.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.22,430.99 313.12,430.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.12,430.95 313.01,430.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.39,430.84 313.28,430.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.28,430.77 313.15,430.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.49,432.51 313.57,432.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.44,431.61 312.48,431.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.39,431.56 312.44,431.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.48,431.55 312.74,431.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.44,431.39 312.48,431.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.44,431.39 312.44,431.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.35,431.96 312.35,431.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.39,432 312.44,432" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.44,431.46 312.42,431.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.06,423.69 313.85,423.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.87,423.67 312.87,424.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.95,424.13 313.97,424.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.89,424.09 313.87,424.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.49,423.67 315.49,424.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.55,432.11 312.55,432.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.85,430.93 313.01,430.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.23,430.72 313.01,430.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.23,430.72 312.23,432.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.55,431.32 312.55,432.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.55,432.11 312.56,432.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.85,430.93 312.76,430.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.76,430.95 312.67,431.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.67,431.01 312.61,431.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.61,431.09 312.56,431.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.74,431.95 313.76,431.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.67,431.25 313.57,431.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.37,432.3 313.46,432.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.46,432.11 313.51,431.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.51,431.92 313.53,431.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.53,431.72 313.51,431.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.37,431.14 313.31,431.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.57,431.03 313.49,430.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.15,430.73 313.01,430.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.22,432.44 313.31,432.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.31,432.38 313.37,432.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.86,431.72 312.88,431.66 312.94,431.64 312.99,431.66 313.01,431.72 312.99,431.77 312.94,431.79 312.88,431.77 312.86,431.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.35,431.52 312.35,431.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.35,431.48 312.35,431.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.39,431.43 312.44,431.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.48,431.44 312.74,431.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.44,431.54 312.44,431.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.48,431.39 312.48,431.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.48,431.54 312.48,431.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.57,431.48 312.57,431.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.35,431.48 312.35,431.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.57,431.52 312.5,431.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.42,431.52 312.35,431.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.57,431.48 312.5,431.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.42,431.48 312.35,431.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.35,431.91 312.35,431.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.48,431.99 312.74,431.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.39,431.87 312.44,431.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.48,431.88 312.74,431.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.44,431.82 312.48,431.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.44,432.04 312.48,432.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.44,431.82 312.44,431.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.44,431.97 312.44,432.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.48,431.82 312.48,431.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.48,431.97 312.48,432.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.57,431.91 312.57,431.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.35,431.91 312.35,431.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.57,431.96 312.5,431.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.42,431.96 312.35,431.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.57,431.91 312.5,431.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.42,431.91 312.35,431.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.74,431.55 312.77,431.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.77,431.54 312.78,431.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.78,431.5 312.77,431.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.77,431.46 312.74,431.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.42,431.52 312.44,431.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.5,431.48 312.48,431.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.48,431.54 312.5,431.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.39,431.43 312.37,431.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.37,431.45 312.35,431.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.35,431.52 312.37,431.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.37,431.55 312.39,431.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.74,431.99 312.77,431.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.77,431.97 312.78,431.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.78,431.93 312.77,431.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.77,431.9 312.74,431.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.42,431.96 312.44,431.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.44,431.9 312.42,431.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.5,431.91 312.48,431.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.48,431.97 312.5,431.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.39,431.87 312.37,431.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.37,431.88 312.35,431.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.35,431.96 312.37,431.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.37,431.99 312.39,432" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.56,429.07 312.56,429.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.87,429.46 313.02,429.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.25,429.68 313.02,429.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.87,427.89 313.02,427.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.25,427.68 313.02,427.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.25,427.68 312.25,429.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.56,428.28 312.56,429.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.56,429.07 312.58,429.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.58,429.19 312.62,429.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.62,429.3 312.69,429.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.69,429.39 312.77,429.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.77,429.44 312.87,429.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.87,427.89 312.77,427.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.77,427.91 312.69,427.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.69,427.97 312.62,428.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.62,428.05 312.58,428.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.58,428.16 312.56,428.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.59,429.36 313.69,429.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.69,429.14 313.75,428.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.75,428.91 313.77,428.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.77,428.68 313.75,428.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.75,428.44 313.69,428.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.69,428.21 313.59,427.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.38,429.26 313.47,429.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.47,429.07 313.52,428.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.52,428.88 313.54,428.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.54,428.68 313.52,428.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.52,428.48 313.47,428.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.47,428.28 313.38,428.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.38,428.1 313.32,428.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.32,428.01 313.23,427.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.23,427.95 313.13,427.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.13,427.91 313.02,427.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.59,427.99 313.51,427.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.51,427.89 313.41,427.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.41,427.8 313.29,427.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.29,427.73 313.16,427.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.16,427.69 313.02,427.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.02,429.46 313.13,429.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.13,429.45 313.23,429.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.23,429.41 313.32,429.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.32,429.34 313.38,429.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.02,429.68 313.16,429.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.16,429.66 313.29,429.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.29,429.62 313.41,429.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.41,429.56 313.51,429.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.51,429.47 313.59,429.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.87,428.68 312.89,428.62 312.95,428.6 313,428.62 313.02,428.68 313,428.73 312.95,428.75 312.89,428.73 312.87,428.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.37,428.48 312.37,428.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.37,428.44 312.37,428.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.41,428.52 312.45,428.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.49,428.51 312.76,428.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.41,428.39 312.45,428.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.49,428.4 312.76,428.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.45,428.35 312.49,428.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.45,428.57 312.49,428.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.45,428.35 312.45,428.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.45,428.5 312.45,428.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.49,428.35 312.49,428.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.49,428.5 312.49,428.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.58,428.44 312.58,428.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.36,428.44 312.36,428.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.58,428.48 312.51,428.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.44,428.48 312.36,428.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.58,428.44 312.51,428.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.44,428.44 312.36,428.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.37,428.92 312.37,428.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.37,428.87 312.37,428.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.41,428.96 312.45,428.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.49,428.95 312.76,428.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.41,428.83 312.45,428.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.49,428.84 312.76,428.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.45,428.79 312.49,428.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.45,429 312.49,429" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.45,428.79 312.45,428.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.45,428.93 312.45,429" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.49,428.79 312.49,428.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.49,428.93 312.49,429" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.58,428.87 312.58,428.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.36,428.87 312.36,428.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.58,428.92 312.51,428.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.44,428.92 312.36,428.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.58,428.87 312.51,428.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.44,428.87 312.36,428.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.76,428.51 312.78,428.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.78,428.5 312.8,428.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.8,428.46 312.78,428.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.78,428.42 312.76,428.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.44,428.48 312.45,428.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.45,428.42 312.44,428.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.51,428.44 312.49,428.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.49,428.5 312.51,428.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.41,428.39 312.38,428.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.38,428.41 312.37,428.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.37,428.48 312.38,428.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.38,428.51 312.41,428.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.76,428.95 312.78,428.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.78,428.93 312.8,428.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.8,428.89 312.78,428.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.78,428.86 312.76,428.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.44,428.92 312.45,428.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.45,428.86 312.44,428.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.51,428.87 312.49,428.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.49,428.93 312.51,428.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.41,428.83 312.38,428.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.38,428.84 312.37,428.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.37,428.92 312.38,428.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.38,428.95 312.41,428.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.04,423.67 312.87,423.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.06,423.67 314.06,423.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.04,424.54 312.87,424.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.04,423.67 315.04,424.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.85,423.67 313.85,423.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.89,423.69 313.89,424" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.92,424.12 313.89,424.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.02,423.69 314.02,424" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.11,424.12 313.96,424.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.95,424.13 313.92,424.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.11,424 313.87,424" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.87,424.05 313.87,424" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.11,424 314.11,424.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.69,424.54 313.86,424.65 314.05,424.65 314.22,424.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.47,424.54 313.76,424.8 314.15,424.8 314.44,424.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.66,423.67 315.49,423.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.89,423.8 313.85,423.86 313.85,423.92 313.89,423.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.02,423.97 314.06,423.92 314.06,423.86 314.02,423.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.66,424.54 315.49,424.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.66,423.67 317.66,424.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.68,423.67 316.68,423.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.68,423.69 316.47,423.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.47,423.67 316.47,423.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.64,423.69 316.64,424" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.51,423.69 316.51,424" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.57,424.13 316.59,424.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.57,424.13 316.54,424.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.54,424.12 316.51,424.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.51,424.09 316.49,424.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.49,424.05 316.49,424" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.73,424 316.49,424" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.73,424.12 316.58,424.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.73,424 316.73,424.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.09,424.54 316.38,424.8 316.77,424.8 317.06,424.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.31,424.54 316.48,424.65 316.67,424.65 316.84,424.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.51,423.8 316.47,423.86 316.47,423.92 316.51,423.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.64,423.97 316.68,423.92 316.68,423.86 316.64,423.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.38,423.67 318.2,423.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.38,424.54 318.2,424.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.2,423.67 318.2,424.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.38,423.67 320.38,424.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.4,423.69 319.18,423.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.4,423.67 319.4,423.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.18,423.67 319.18,423.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.36,423.69 319.36,424" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.23,423.69 319.23,424" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.29,424.13 319.3,424.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.29,424.13 319.26,424.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.26,424.12 319.23,424.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.23,424.09 319.21,424.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.21,424.05 319.2,424" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.44,424 319.2,424" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.44,424.12 319.3,424.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.44,424 319.44,424.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.8,424.54 319.09,424.8 319.49,424.8 319.78,424.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.03,424.54 319.19,424.65 319.39,424.65 319.55,424.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.23,423.8 319.19,423.86 319.19,423.92 319.23,423.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.36,423.97 319.39,423.92 319.39,423.86 319.36,423.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.45,422 323.45,422.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.45,422.02 323.66,422.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.66,422.02 323.66,422" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.49,422.02 323.49,422.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.61,422.02 323.61,422.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.47,422.32 323.64,422.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.07,422.68 323.04,422.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.94,422 324.17,422" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.8,423.43 322.94,422" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.31,423.43 324.17,422" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.49,422.13 323.45,422.19 323.45,422.25 323.49,422.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.62,422.31 323.66,422.25 323.66,422.19 323.62,422.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.47,422.32 323.49,422.38 323.55,422.41 323.62,422.38 323.64,422.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.55,424.61 323.71,424.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.71,424.59 323.86,424.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.86,424.53 323.99,424.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.99,424.44 324.1,424.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.1,424.32 324.18,424.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.18,424.18 324.25,424" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.25,424 324.3,423.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.3,423.81 324.31,423.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.31,423.62 324.31,423.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.8,423.43 322.79,423.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.79,423.62 322.81,423.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.81,423.81 322.86,424" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.86,424 322.92,424.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.92,424.18 323.01,424.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.01,424.32 323.12,424.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.12,424.44 323.25,424.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.25,424.53 323.4,424.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.4,424.59 323.55,424.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.55,424.61 323.71,424.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.71,424.59 323.86,424.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.86,424.53 323.99,424.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.99,424.44 324.1,424.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.1,424.32 324.18,424.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.31,423.43 324.26,423.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.26,423.16 324.18,422.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.18,422.91 324.07,422.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.95,424.17 323.03,424.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.03,424.3 323.14,424.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.14,424.41 323.27,424.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.27,424.5 323.41,424.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.41,424.55 323.55,424.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.83,423.43 322.83,423.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.83,423.62 322.85,423.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.85,423.81 322.89,423.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.89,423.99 322.95,424.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.08,422.68 322.96,422.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.96,422.91 322.88,423.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.88,423.17 322.83,423.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.15,424.17 324.22,423.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.22,423.99 324.26,423.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.26,423.81 324.28,423.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.28,423.62 324.27,423.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.27,423.43 324.23,423.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.23,423.17 324.15,422.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.15,422.91 324.03,422.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.04,422.68 322.92,422.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.92,422.91 322.84,423.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.84,423.16 322.8,423.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.55,424.57 323.7,424.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.7,424.55 323.84,424.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.84,424.5 323.97,424.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.97,424.41 324.07,424.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.07,424.3 324.15,424.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.42,422 327.42,422.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.42,422.02 327.64,422.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.64,422.02 327.64,422" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.47,422.02 327.47,422.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.59,422.02 327.59,422.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.45,422.32 327.62,422.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.05,422.68 327.02,422.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.92,422 328.15,422" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.78,423.43 326.92,422" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.29,423.43 328.15,422" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.47,422.13 327.43,422.19 327.43,422.25 327.47,422.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.6,422.31 327.64,422.25 327.64,422.19 327.6,422.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.45,422.32 327.47,422.38 327.53,422.41 327.59,422.38 327.62,422.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.53,424.61 327.69,424.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.69,424.59 327.83,424.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.83,424.53 327.97,424.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.97,424.44 328.08,424.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.08,424.32 328.16,424.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.16,424.18 328.23,424" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.23,424 328.27,423.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.27,423.81 328.29,423.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.29,423.62 328.29,423.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.78,423.43 326.77,423.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.77,423.62 326.79,423.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.79,423.81 326.83,424" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.83,424 326.9,424.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.9,424.18 326.99,424.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.99,424.32 327.1,424.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.1,424.44 327.23,424.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.23,424.53 327.38,424.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.38,424.59 327.53,424.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.53,424.61 327.69,424.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.69,424.59 327.83,424.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.83,424.53 327.97,424.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.97,424.44 328.08,424.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.08,424.32 328.16,424.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.29,423.43 328.24,423.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.24,423.16 328.16,422.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.16,422.91 328.05,422.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.93,424.17 327.01,424.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.01,424.3 327.12,424.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.12,424.41 327.25,424.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.25,424.5 327.39,424.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.39,424.55 327.53,424.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.81,423.43 326.81,423.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.81,423.62 326.82,423.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.82,423.81 326.87,423.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.87,423.99 326.93,424.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.06,422.68 326.94,422.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.94,422.91 326.86,423.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.86,423.17 326.81,423.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.13,424.17 328.2,423.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.2,423.99 328.24,423.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.24,423.81 328.26,423.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.26,423.62 328.25,423.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.25,423.43 328.21,423.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.21,423.17 328.12,422.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.12,422.91 328.01,422.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.02,422.68 326.9,422.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.9,422.91 326.82,423.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.82,423.16 326.78,423.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.53,424.57 327.68,424.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.68,424.55 327.82,424.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.82,424.5 327.95,424.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.95,424.41 328.05,424.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.05,424.3 328.13,424.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.85,432.5 313.01,432.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.23,432.72 313.01,432.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.67,432.43 312.76,432.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.76,432.48 312.85,432.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.01,432.5 313.12,432.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.12,432.49 313.22,432.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.01,432.72 313.15,432.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.15,432.7 313.28,432.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.28,432.66 313.39,432.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.39,432.6 313.49,432.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="469.52,428.62 469.52,422.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469.46,428.62 469.52,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469.52,428.62 469.52,422.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469.46,422.04 469.46,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.58,428.62 473.64,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.64,428.62 473.64,422.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.58,422.04 473.58,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.28,428.62 477.28,422.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.23,422.04 477.23,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.23,428.62 477.28,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.28,428.62 477.28,422.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.23,422.04 477.23,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.46,428.67 470.46,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.46,428.62 469.52,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469.46,428.67 470.46,428.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.46,428.67 470.46,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.46,428.62 469.46,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469.46,428.62 469.46,428.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.46,428.67 470.46,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.46,428.62 469.52,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.46,428.67 470.46,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.46,428.62 469.52,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.11,428.67 474.11,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.11,428.62 473.64,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.58,428.62 473.11,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.11,428.62 473.11,428.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.11,428.67 474.11,428.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.11,428.67 474.11,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.11,428.62 473.11,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.11,428.62 473.11,428.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.11,428.67 474.11,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.11,428.62 473.64,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.58,428.62 473.11,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.11,428.62 473.11,428.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.11,428.67 474.11,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.11,428.62 473.64,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.58,428.62 473.11,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.11,428.62 473.11,428.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.75,428.67 477.75,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.75,428.62 477.28,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.23,428.62 476.76,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="476.76,428.62 476.76,428.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="476.76,428.67 477.75,428.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.75,428.67 477.75,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.75,428.62 476.76,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="476.76,428.62 476.76,428.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.75,428.67 477.75,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.75,428.62 477.28,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.23,428.62 476.76,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="476.76,428.62 476.76,428.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.75,428.67 477.75,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.75,428.62 477.28,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.23,428.62 476.76,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="476.76,428.62 476.76,428.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="481.4,428.62 480.41,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="480.41,428.62 480.41,428.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="480.41,428.67 481.4,428.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="481.4,428.62 480.41,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="480.41,428.62 480.41,428.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="481.4,428.62 480.41,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="480.41,428.62 480.41,428.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="481.4,428.62 480.41,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="480.41,428.62 480.41,428.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.46,425.98 470.46,428.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.51,428.6 470.51,425.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.51,425.98 470.46,425.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.46,425.98 470.46,428.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.46,428.6 470.51,428.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.63,426.24 470.63,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.57,426.19 470.57,426.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.57,426.24 470.63,426.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.63,426.24 470.63,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.63,426.19 470.57,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.57,426.24 470.57,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.57,426.19 470.51,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.51,426.24 470.57,426.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.11,425.98 474.11,428.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.11,428.6 474.16,428.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.16,428.6 474.16,425.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.16,425.98 474.11,425.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.11,425.98 474.11,428.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.11,428.6 474.16,428.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.22,426.24 474.27,426.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.27,426.24 474.27,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.27,426.19 474.22,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.22,426.19 474.22,426.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.22,426.24 474.27,426.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.27,426.24 474.27,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.27,426.19 474.22,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.22,426.19 474.16,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.16,426.24 474.22,426.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.22,426.24 474.22,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.22,426.19 474.16,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.16,426.24 474.22,426.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.22,426.19 474.16,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.16,426.24 474.22,426.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.22,426.19 474.16,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.16,426.24 474.22,426.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.75,425.98 477.75,428.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.81,428.6 477.81,425.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.81,425.98 477.75,425.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.75,425.98 477.75,428.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.75,428.6 477.81,428.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.86,426.24 477.92,426.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.92,426.24 477.92,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.92,426.19 477.86,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.86,426.19 477.86,426.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.86,426.24 477.92,426.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.92,426.24 477.92,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.92,426.19 477.86,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.86,426.19 477.81,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.81,426.24 477.86,426.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.86,426.24 477.86,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.86,426.19 477.81,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.81,426.24 477.86,426.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.86,426.19 477.81,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.81,426.24 477.86,426.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.86,426.19 477.81,426.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.81,426.24 477.86,426.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="463.83,423.27 463.83,423.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.52,423.88 464.29,423.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.14,422.09 464.29,422.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.52,421.87 464.29,421.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.83,422.48 463.83,423.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.84,423.39 463.89,423.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.89,423.5 463.95,423.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.95,423.58 464.04,423.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.04,423.64 464.14,423.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.04,422.11 463.95,422.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.95,422.17 463.89,422.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.85,423.56 464.96,423.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.89,422.25 463.84,422.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.84,422.36 463.83,422.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.96,423.34 465.02,423.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.02,423.11 465.04,422.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.02,422.64 464.96,422.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.96,422.41 464.85,422.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.74,423.27 464.79,423.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.81,422.88 464.79,422.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.79,422.67 464.74,422.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.4,422.11 464.29,422.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.59,422.21 464.5,422.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.78,422.08 464.68,422" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.85,422.19 464.78,422.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.68,422 464.56,421.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.56,421.93 464.43,421.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.43,421.89 464.29,421.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.4,423.64 464.5,423.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.5,423.6 464.59,423.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.59,423.54 464.65,423.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.29,423.88 464.43,423.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.43,423.86 464.56,423.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.68,423.76 464.78,423.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.14,422.88 464.16,422.82 464.22,422.8 464.27,422.82 464.29,422.88 464.27,422.93 464.22,422.95 464.16,422.93 464.14,422.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.63,422.68 463.63,422.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,422.71 464.02,422.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.68,422.72 463.72,422.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.68,422.59 463.72,422.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.72,422.55 463.72,422.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.72,422.7 463.72,422.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,422.55 463.76,422.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.85,422.64 463.85,422.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.63,422.64 463.63,422.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.7,422.64 463.63,422.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.63,423.07 463.63,423.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.63,423.12 463.63,423.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.68,423.03 463.72,423.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,423.04 464.02,423.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.72,422.98 463.76,422.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,422.98 463.76,423.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.85,423.07 463.85,423.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.63,423.07 463.63,423.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.85,423.11 463.78,423.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.7,423.11 463.63,423.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.7,423.07 463.63,423.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.06,422.66 464.05,422.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.7,422.68 463.72,422.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.72,422.62 463.7,422.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.78,422.64 463.76,422.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.65,422.6 463.63,422.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.63,422.68 463.65,422.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.65,422.71 463.68,422.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.02,423.15 464.05,423.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.7,423.11 463.72,423.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.72,423.06 463.7,423.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.63,423.11 463.65,423.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.82,426.35 463.82,426.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.13,426.74 464.28,426.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.51,426.96 464.28,426.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.82,426.35 463.84,426.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.51,424.96 463.51,426.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.84,426.47 463.88,426.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.13,425.17 464.03,425.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.03,425.19 463.95,425.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.88,425.33 463.84,425.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.85,426.64 464.95,426.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.95,426.42 465.01,426.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.01,425.72 464.95,425.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.95,425.49 464.85,425.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.65,425.38 464.58,425.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.85,425.27 464.77,425.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.67,425.08 464.55,425.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.55,425.01 464.42,424.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.49,426.69 464.58,426.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.58,426.62 464.65,426.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.42,426.94 464.55,426.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.55,426.9 464.67,426.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.67,426.84 464.77,426.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.63,425.72 463.63,425.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,425.8 464.02,425.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,425.68 464.02,425.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.67,425.67 463.71,425.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.71,425.63 463.76,425.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.71,425.85 463.76,425.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,425.78 463.76,425.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.63,425.72 463.63,425.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.7,425.76 463.63,425.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.28,426.74 464.39,426.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.63,426.2 463.63,426.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.67,426.24 463.71,426.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.67,426.11 463.71,426.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,426.12 464.02,426.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,426.21 463.76,426.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.84,426.15 463.84,426.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.63,426.15 463.63,426.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.7,426.2 463.63,426.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.05,425.78 464.06,425.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.7,426.15 463.63,426.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.02,425.79 464.05,425.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.06,425.74 464.05,425.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.84,425.72 463.84,425.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.71,425.7 463.7,425.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,426.23 464.02,426.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.67,425.67 463.64,425.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.64,425.69 463.63,425.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.63,425.76 463.64,425.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.71,426.07 463.76,426.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.7,426.2 463.71,426.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,426.21 463.77,426.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.05,426.21 464.06,426.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.38,422.41 475.56,422.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.72,423.51 474.86,422.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.9,424.53 476.02,424.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.17,424.08 476.21,423.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.71,423.7 474.73,423.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.31,424.67 475.47,424.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.86,422.08 476.08,422.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.22,423.51 476.18,423.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.02,424.41 476.1,424.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.38,422.41 475.41,422.47 475.47,422.49 475.53,422.47 475.56,422.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.53,422.39 475.57,422.33 475.57,422.27 475.53,422.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.4,422.21 475.37,422.27 475.37,422.33 475.4,422.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.22,423.51 476.08,422.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.06,424.5 475.18,424.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.98,422.76 474.96,422.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.47,424.69 475.62,424.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.75,423.51 474.74,423.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.23,423.7 476.22,423.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.77,424.62 475.9,424.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.62,424.67 475.77,424.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475,422.76 474.88,423" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.1,424.26 476.17,424.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.07,424.25 476.14,424.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.02,424.41 476.1,424.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.21,423.9 476.23,423.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.84,424.26 474.92,424.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.72,423.51 474.71,423.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.06,423 475.94,422.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.03,424.53 475.17,424.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.84,423 474.76,423.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.47,424.69 475.62,424.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.92,424.41 475.03,424.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.17,424.62 475.31,424.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.34,422.08 479.34,422.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.62,424.67 475.77,424.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.1,423 475.98,422.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.34,422.1 479.56,422.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.77,424.62 475.9,424.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.51,422.1 479.51,422.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.9,424.53 476.02,424.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.36,422.41 479.53,422.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.95,424.38 475.06,424.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.87,424.25 474.95,424.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.18,424.58 475.32,424.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.38,422.21 479.34,422.27 479.34,422.33 479.38,422.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.88,423 474.79,423.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.79,423.25 474.75,423.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.8,424.07 474.87,424.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.76,423.89 474.8,424.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.14,424.07 476.18,423.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.88,424.53 479.99,424.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.08,424.26 480.15,424.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.19,423.51 476.14,423.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.18,423.89 476.2,423.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.14,423.25 476.06,423" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.69,423.51 478.69,423.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.2,423.7 476.19,423.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.76,424.58 475.88,424.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.76,423.25 474.72,423.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.01,424.53 479.15,424.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.47,424.65 475.62,424.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.96,422.76 474.84,423" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.15,424.62 479.29,424.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.6,424.67 479.75,424.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.88,424.5 475.99,424.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.39,422.1 479.39,422.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.96,422.76 478.93,422.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.56,422.1 479.56,422.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.2,423.51 480.06,422.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.16,423.25 480.08,423" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.83,422.08 480.06,422.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.51,422.39 479.55,422.33 479.55,422.27 479.51,422.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.45,424.69 479.6,424.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.69,423.51 478.83,422.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.16,424.58 479.3,424.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.75,424.62 479.88,424.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.36,422.41 479.39,422.47 479.45,422.49 479.51,422.47 479.53,422.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.72,423.7 478.74,423.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.6,424.67 479.75,424.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.69,423.7 478.71,423.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.99,424.41 480.08,424.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.15,424.08 480.19,423.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.71,423.9 478.75,424.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.05,424.25 480.11,424.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.19,423.9 480.21,423.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.17,423.7 480.17,423.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.21,423.7 480.2,423.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.82,424.26 478.9,424.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.04,423 479.92,422.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.93,422.76 478.82,423" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.88,424.53 479.99,424.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.29,424.67 479.45,424.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.45,424.69 479.6,424.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.75,424.62 479.88,424.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.99,424.41 480.08,424.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.85,424.25 478.93,424.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.03,424.5 479.16,424.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.2,423.51 480.16,423.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.08,423 479.96,422.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.73,423.51 478.72,423.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.93,424.38 479.03,424.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.3,424.63 479.45,424.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.86,423 478.77,423.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.97,422.76 478.86,423" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.77,423.25 478.73,423.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.16,423.89 480.17,423.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.11,424.07 480.16,423.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.45,424.65 479.6,424.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.74,423.25 478.69,423.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.17,423.51 480.12,423.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.12,423.25 480.04,423" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.82,423 478.74,423.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.74,424.58 479.86,424.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.86,424.5 479.97,424.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.14,423.66 464.29,423.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.52,421.87 463.52,423.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.14,422.09 464.04,422.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.83,423.27 463.84,423.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.65,423.46 464.74,423.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.04,422.88 465.02,422.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.74,422.48 464.65,422.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.79,423.08 464.81,422.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.65,422.29 464.59,422.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.29,423.66 464.4,423.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.5,422.15 464.4,422.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.56,423.82 464.68,423.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.78,423.67 464.85,423.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.72,422.77 463.76,422.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,422.6 464.02,422.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.72,422.55 463.76,422.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.63,422.64 463.63,422.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,422.7 463.76,422.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.85,422.64 463.78,422.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.85,422.68 463.78,422.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.7,422.68 463.63,422.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.72,422.98 463.72,423.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.68,423.16 463.72,423.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,423.15 464.02,423.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,423.13 463.76,423.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.72,423.2 463.76,423.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.72,423.13 463.72,423.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.02,422.71 464.05,422.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.05,422.7 464.06,422.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.85,423.07 463.78,423.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.05,422.62 464.02,422.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.68,422.59 463.65,422.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.05,423.13 464.06,423.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,422.7 463.78,422.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.05,423.06 464.02,423.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.06,423.09 464.05,423.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.78,423.07 463.76,423.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.68,423.03 463.65,423.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.65,423.15 463.68,423.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,423.13 463.78,423.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.65,423.04 463.63,423.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.13,425.17 464.28,425.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.51,424.96 464.28,424.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.82,425.56 463.82,426.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.88,426.58 463.95,426.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.03,425.96 465.01,425.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.95,426.67 464.03,426.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.95,425.25 463.88,425.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.03,426.72 464.13,426.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.01,426.19 465.03,425.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.73,426.35 464.78,426.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.84,425.44 463.82,425.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.78,425.76 464.73,425.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.8,425.96 464.78,425.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.78,426.16 464.8,425.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.73,425.56 464.65,425.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.65,426.54 464.73,426.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.58,425.29 464.49,425.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.39,425.19 464.28,425.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.49,425.23 464.39,425.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.28,426.96 464.42,426.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.42,424.97 464.28,424.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.77,425.17 464.67,425.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.39,426.73 464.49,426.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.77,426.75 464.85,426.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.13,425.96 464.16,425.9 464.21,425.88 464.26,425.9 464.29,425.96 464.26,426.01 464.21,426.03 464.16,426.01 464.13,425.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.63,425.76 463.63,425.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.67,425.8 463.71,425.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,425.63 463.76,425.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.71,425.78 463.71,425.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.71,425.63 463.71,425.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.7,425.72 463.63,425.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.84,425.76 463.77,425.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.84,425.72 463.77,425.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.63,426.15 463.63,426.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.71,426.28 463.76,426.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,426.07 463.76,426.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.71,426.07 463.71,426.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.71,426.21 463.71,426.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.84,426.2 463.77,426.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.84,426.15 463.77,426.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.7,425.76 463.71,425.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.77,425.72 463.76,425.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.76,425.78 463.77,425.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.05,425.7 464.02,425.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.64,425.79 463.67,425.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.06,426.17 464.05,426.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.02,426.23 464.05,426.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.05,426.14 464.02,426.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.71,426.14 463.7,426.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.67,426.11 463.64,426.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.77,426.15 463.76,426.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.64,426.12 463.63,426.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.63,426.2 463.64,426.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.64,426.23 463.67,426.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.38,422.08 471.38,422.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.38,422.1 471.6,422.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.6,422.1 471.6,422.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.43,422.1 471.43,422.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.55,422.1 471.55,422.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.4,422.41 471.58,422.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.01,422.76 470.98,422.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.88,422.08 472.1,422.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.74,423.51 470.88,422.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.24,423.51 472.1,422.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.43,422.21 471.39,422.27 471.39,422.33 471.43,422.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.56,422.39 471.59,422.33 471.59,422.27 471.56,422.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.4,422.41 471.43,422.47 471.49,422.49 471.55,422.47 471.58,422.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.49,424.69 471.65,424.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.65,424.67 471.79,424.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.79,424.62 471.93,424.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.93,424.53 472.04,424.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.04,424.41 472.12,424.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.12,424.26 472.19,424.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.19,424.08 472.23,423.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.23,423.9 472.25,423.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.25,423.7 472.24,423.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.74,423.51 470.73,423.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.73,423.7 470.75,423.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.75,423.9 470.79,424.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.79,424.08 470.86,424.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.86,424.26 470.95,424.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.95,424.41 471.06,424.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.06,424.53 471.19,424.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.19,424.62 471.34,424.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.34,424.67 471.49,424.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.49,424.69 471.65,424.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.65,424.67 471.79,424.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.79,424.62 471.93,424.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.93,424.53 472.04,424.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.04,424.41 472.12,424.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.24,423.51 472.2,423.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.2,423.25 472.12,423" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.12,423 472.01,422.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.89,424.25 470.97,424.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.97,424.38 471.08,424.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.08,424.5 471.2,424.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.2,424.58 471.34,424.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.34,424.63 471.49,424.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.77,423.51 470.76,423.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.76,423.7 470.78,423.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.78,423.89 470.83,424.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.83,424.07 470.89,424.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.02,422.76 470.9,423" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.9,423 470.82,423.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.82,423.25 470.77,423.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.09,424.25 472.16,424.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.16,424.07 472.2,423.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.2,423.89 472.22,423.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.22,423.7 472.21,423.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.21,423.51 472.17,423.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.17,423.25 472.08,423" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.08,423 471.96,422.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.98,422.76 470.86,423" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.86,423 470.78,423.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.78,423.25 470.74,423.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.49,424.65 471.64,424.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.64,424.63 471.78,424.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.78,424.58 471.9,424.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.9,424.5 472.01,424.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.01,424.38 472.09,424.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.36,422.08 475.36,422.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.36,422.1 475.58,422.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.58,422.1 475.58,422.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.41,422.1 475.41,422.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.53,422.1 475.53,422.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.77,424.08 474.84,424.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.62,424.63 475.76,424.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.73,423.9 474.77,424.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.32,424.63 475.47,424.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.74,423.89 478.78,424.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.74,423.7 474.76,423.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.18,423.25 476.1,423" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.99,424.38 476.07,424.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.6,424.63 479.74,424.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.78,424.07 478.85,424.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.9,424.41 479.01,424.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.97,424.38 480.05,424.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.75,424.08 478.82,424.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.11,428.62 472.99,427.79 472.61,427.05 472.02,426.46 471.28,426.08 470.46,425.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="476.76,428.62 476.63,427.79 476.26,427.05 475.67,426.46 474.93,426.08 474.11,425.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="480.41,428.62 480.28,427.79 479.9,427.05 479.32,426.46 478.58,426.08 477.75,425.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="352.83,423.96 353.05,423.96 353.05,423.44 352.83,423.44 352.83,423.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.69,423.96 348.91,423.96 348.91,423.44 348.69,423.44 348.69,423.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.72,427.87 352.83,427.87 352.83,423.96 352.72,423.96 352.72,427.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.91,423.96 349.1,425.17 349.66,426.26 350.53,427.13 351.62,427.68 352.83,427.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.61,436.02 346.33,436.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.03,433.59 346.02,433.59 346.02,435.58 344.03,435.58 344.03,433.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.55,416.39 320.55,416.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.24,416 320.09,416" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.86,415.78 320.09,415.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.24,417.56 320.09,417.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.86,417.78 320.09,417.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.86,417.78 320.86,415.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.55,417.18 320.55,416.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.55,416.39 320.53,416.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.53,416.27 320.49,416.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.49,416.16 320.42,416.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.42,416.07 320.34,416.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.34,416.02 320.24,416" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.24,417.56 320.34,417.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.34,417.55 320.42,417.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.42,417.49 320.49,417.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.49,417.41 320.53,417.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.53,417.3 320.55,417.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.52,416.1 319.42,416.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.42,416.31 319.36,416.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.36,416.54 319.34,416.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.34,416.78 319.36,417.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.36,417.02 319.42,417.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.42,417.25 319.52,417.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.73,416.2 319.64,416.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.64,416.39 319.59,416.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.59,416.58 319.57,416.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.57,416.78 319.59,416.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.59,416.98 319.64,417.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.64,417.18 319.73,417.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.73,417.36 319.79,417.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.79,417.45 319.88,417.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.88,417.51 319.98,417.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.98,417.55 320.09,417.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.52,417.47 319.6,417.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.6,417.57 319.7,417.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.7,417.66 319.82,417.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.82,417.73 319.95,417.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.95,417.77 320.09,417.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.09,416 319.98,416.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.98,416.01 319.88,416.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.88,416.05 319.79,416.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.79,416.12 319.73,416.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.09,415.78 319.95,415.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.95,415.79 319.82,415.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.82,415.84 319.7,415.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.7,415.9 319.6,415.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.6,415.99 319.52,416.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.08,416.78 320.11,416.73 320.16,416.71 320.21,416.73 320.24,416.78 320.21,416.84 320.16,416.86 320.11,416.84 320.08,416.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.74,416.98 320.74,416.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.74,417.02 320.74,417.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.7,416.93 320.66,416.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.61,416.94 320.35,416.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.7,417.06 320.66,417.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.61,417.05 320.35,417.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.66,417.11 320.61,417.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.66,416.89 320.61,416.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.66,417.11 320.66,417.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.66,416.96 320.66,416.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.61,417.11 320.61,417.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.61,416.96 320.61,416.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.53,417.02 320.53,416.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.75,417.02 320.75,416.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.53,416.98 320.6,416.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.67,416.98 320.75,416.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.53,417.02 320.6,417.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.67,417.02 320.75,417.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.74,416.54 320.74,416.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.74,416.59 320.74,416.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.7,416.5 320.66,416.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.61,416.51 320.35,416.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.7,416.63 320.66,416.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.61,416.62 320.35,416.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.66,416.67 320.61,416.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.66,416.46 320.61,416.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.66,416.67 320.66,416.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.66,416.53 320.66,416.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.61,416.67 320.61,416.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.61,416.53 320.61,416.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.53,416.59 320.53,416.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.75,416.59 320.75,416.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.53,416.54 320.6,416.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.67,416.54 320.75,416.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.53,416.59 320.6,416.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.67,416.59 320.75,416.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.35,416.95 320.33,416.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.33,416.96 320.31,417" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.31,417 320.33,417.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.33,417.04 320.35,417.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.67,416.98 320.66,416.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.66,417.04 320.67,417.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.6,417.02 320.61,417.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.61,416.96 320.6,416.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.7,417.06 320.73,417.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.73,417.05 320.74,417.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.74,416.98 320.73,416.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.73,416.95 320.7,416.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.35,416.51 320.33,416.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.33,416.53 320.31,416.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.31,416.56 320.33,416.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.33,416.6 320.35,416.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.67,416.54 320.66,416.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.66,416.6 320.67,416.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.6,416.59 320.61,416.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.61,416.53 320.6,416.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.7,416.63 320.73,416.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.73,416.62 320.74,416.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.74,416.54 320.73,416.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.73,416.51 320.7,416.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.91,420.81 320.89,420.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.89,420.81 320.89,421.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.89,421.02 320.91,421.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.89,420.85 320.58,420.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.89,420.98 320.58,420.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.58,420.83 320.58,421" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.22,421.43 320.22,420.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.91,420.3 320.91,421.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.48,420.16 320.91,420.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.48,421.67 320.91,421.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.77,420.85 320.72,420.81 320.65,420.81 320.6,420.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.6,420.98 320.65,421.02 320.72,421.02 320.77,420.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.58,420.83 320.52,420.85 320.49,420.92 320.52,420.98 320.58,421" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.3,420.92 318.32,421.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.32,421.07 318.37,421.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.37,421.22 318.46,421.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.46,421.35 318.58,421.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.58,421.46 318.72,421.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.72,421.55 318.9,421.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.9,421.61 319.09,421.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.09,421.66 319.28,421.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.28,421.68 319.48,421.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.48,420.16 319.28,420.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.28,420.15 319.09,420.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.09,420.17 318.9,420.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.9,420.22 318.72,420.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.72,420.29 318.58,420.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.58,420.37 318.46,420.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.46,420.48 318.37,420.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.37,420.61 318.32,420.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.32,420.76 318.3,420.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.3,420.92 318.32,421.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.32,421.07 318.37,421.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.37,421.22 318.46,421.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.46,421.35 318.58,421.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.58,421.46 318.72,421.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.48,421.67 319.74,421.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.74,421.62 319.99,421.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.99,421.54 320.22,421.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.74,420.32 318.6,420.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.6,420.4 318.49,420.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.49,420.5 318.4,420.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.4,420.63 318.35,420.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.35,420.77 318.33,420.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.47,420.19 319.28,420.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.28,420.19 319.1,420.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.1,420.21 318.91,420.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.91,420.25 318.74,420.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.22,420.44 319.99,420.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.99,420.32 319.74,420.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.74,420.24 319.47,420.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.74,421.51 318.91,421.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.91,421.58 319.1,421.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.1,421.62 319.28,421.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.28,421.64 319.47,421.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.47,421.64 319.74,421.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.74,421.59 319.99,421.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.99,421.51 320.22,421.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.22,420.4 319.99,420.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.99,420.29 319.74,420.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.74,420.21 319.48,420.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.33,420.92 318.35,421.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.35,421.06 318.4,421.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.4,421.2 318.49,421.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.49,421.33 318.6,421.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.6,421.43 318.74,421.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="412.32,377.52 412.32,377.3 411.81,377.3 411.81,377.52 412.32,377.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.32,381.66 412.32,381.44 411.81,381.44 411.81,381.66 412.32,381.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.24,377.63 416.24,377.52 412.32,377.52 412.32,377.63 416.24,377.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.32,381.44 413.53,381.25 414.62,380.69 415.49,379.82 416.04,378.73 416.24,377.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.94,241.07 326.38,241.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.91,246.13 345.91,246.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.91,246.35 345.47,246.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.47,246.35 345.47,246.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.47,246.13 345.91,246.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.91,246.13 349.89,246.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.91,242.16 346.96,242.3 347.94,242.71 348.77,243.36 349.4,244.21 349.78,245.2 349.89,246.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.91,246.01 349.89,246.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.91,246.01 345.91,246.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.91,246.13 345.91,246.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.91,241.93 345.91,242.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.91,242.16 345.47,242.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.47,242.16 345.47,241.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.47,241.93 345.91,241.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.56,428.73 354.56,422.1 357.87,422.1 357.87,428.73 354.56,428.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.06,426.07 357.98,425.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.97,424.89 358.04,424.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.31,425.56 360.31,425.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.11,425.56 360.11,425.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.93,424.44 359.96,424.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.98,424.63 358.66,424.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.96,424.45 359.98,424.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.98,424.48 360.01,424.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.01,424.5 360.02,424.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.31,425.41 360.31,425.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.11,425.41 360.11,425.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.09,424.52 360.11,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.11,424.52 360.12,424.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.12,424.53 360.14,424.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.14,424.53 360.15,424.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.15,424.54 360.17,424.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.17,424.55 360.18,424.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.21,424.63 360.18,424.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.24,424.72 360.21,424.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.26,424.83 360.24,424.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.31,425.25 360.3,425.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.3,425.1 360.28,424.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.28,424.96 360.26,424.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.04,424.77 360.01,424.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.98,424.63 359.99,424.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.99,424.61 359.99,424.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.99,424.59 360,424.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360,424.57 360.01,424.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.01,424.56 360.02,424.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.02,424.55 360.04,424.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.04,424.54 360.05,424.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.05,424.53 360.07,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.07,424.52 360.09,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.01,424.69 359.98,424.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.11,425.27 360.1,425.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.07,424.88 360.04,424.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.1,425.13 360.08,424.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.08,424.99 360.07,424.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.04,424.77 358.12,424.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.12,424.67 358.22,424.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.22,424.59 358.33,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.33,424.52 358.45,424.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.45,424.42 358.45,424.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.56,424.52 358.66,424.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.45,424.31 358.45,424.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.45,424.29 358.46,424.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.46,424.27 358.46,424.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.46,424.26 358.47,424.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.47,424.24 358.49,424.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.49,424.23 358.5,424.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.5,424.22 358.52,424.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.52,424.21 358.54,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.54,424.2 358.56,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.45,424.42 358.46,424.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.46,424.45 358.47,424.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.47,424.48 358.5,424.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.5,424.51 358.54,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.54,424.52 358.56,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.84,424.31 359.83,424.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.83,424.27 359.81,424.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.81,424.24 359.78,424.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.78,424.22 359.75,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.75,424.2 359.73,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.84,424.42 359.84,424.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.84,424.42 359.83,424.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.83,424.43 359.83,424.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.83,424.45 359.82,424.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.82,424.47 359.81,424.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.81,424.48 359.8,424.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.8,424.5 359.78,424.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.78,424.51 359.77,424.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.77,424.51 359.75,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.75,424.52 359.73,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.84,424.42 359.87,424.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.87,424.42 359.9,424.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.9,424.43 359.93,424.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.73,424.52 358.56,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.73,424.2 358.56,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.97,426.36 359.94,426.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.73,426.2 359.98,426.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.03,426.28 360.02,426.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.02,426.31 360,426.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360,426.34 359.97,426.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.18,426.25 360.17,426.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.17,426.27 360.16,426.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.16,426.28 360.14,426.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.14,426.29 360.13,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.13,426.3 360.11,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.11,426.3 360.09,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.21,426.19 360.24,426.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.18,426.25 360.21,426.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.28,425.86 360.3,425.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.24,426.1 360.26,425.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.26,425.98 360.28,425.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.01,426.13 360.04,426.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.98,426.2 360.01,426.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.08,425.83 360.1,425.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.04,426.05 360.07,425.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.07,425.95 360.08,425.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.09,426.3 360.07,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.07,426.3 360.05,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.05,426.3 360.04,426.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.04,426.29 360.02,426.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.02,426.28 360.01,426.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.01,426.26 360,426.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360,426.25 359.99,426.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.99,426.23 359.99,426.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.99,426.22 359.98,426.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.3,425.72 360.31,425.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.1,425.7 360.11,425.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.63,426.3 358.73,426.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.51,426.38 358.38,426.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.38,426.33 358.26,426.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.26,426.26 358.15,426.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.15,426.18 358.06,426.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.63,426.62 358.61,426.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.61,426.62 358.59,426.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.59,426.61 358.57,426.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.57,426.61 358.56,426.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.56,426.6 358.55,426.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.55,426.58 358.54,426.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.54,426.57 358.53,426.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.53,426.55 358.52,426.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.52,426.53 358.52,426.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.52,426.41 358.52,426.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.63,426.3 358.59,426.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.59,426.31 358.56,426.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.56,426.33 358.54,426.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.54,426.36 358.52,426.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.52,426.39 358.52,426.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.84,426.41 359.84,426.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.73,426.62 359.77,426.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.77,426.61 359.8,426.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.8,426.6 359.82,426.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.82,426.57 359.83,426.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.83,426.53 359.84,426.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.94,426.38 359.91,426.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.91,426.4 359.87,426.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.87,426.41 359.84,426.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.73,426.3 359.75,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.75,426.3 359.77,426.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.77,426.31 359.78,426.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.78,426.32 359.8,426.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.8,426.33 359.81,426.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.81,426.34 359.82,426.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.82,426.36 359.83,426.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.83,426.37 359.83,426.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.83,426.39 359.84,426.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.73,426.62 358.63,426.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.73,426.3 358.63,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.89,425.56 357.89,425.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.89,425.26 357.9,425.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.9,425.13 357.92,425.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.92,425.01 357.97,424.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.93,425.83 357.9,425.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.98,425.96 357.93,425.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.9,425.7 357.89,425.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.56,435.36 354.56,428.73 357.87,428.73 357.87,435.36 354.56,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.06,432.71 357.98,432.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.97,431.52 358.04,431.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.31,432.19 360.31,432.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.11,432.19 360.11,432.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.93,431.07 359.96,431.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.98,431.26 358.66,431.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.96,431.09 359.98,431.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.98,431.11 360.01,431.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.01,431.13 360.02,431.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.31,432.04 360.31,431.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.11,432.04 360.11,431.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.09,431.15 360.11,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.11,431.15 360.12,431.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.12,431.16 360.14,431.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.14,431.16 360.15,431.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.15,431.17 360.17,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.17,431.18 360.18,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.21,431.26 360.18,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.24,431.35 360.21,431.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.26,431.46 360.24,431.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.31,431.88 360.3,431.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.3,431.73 360.28,431.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.28,431.59 360.26,431.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.04,431.4 360.01,431.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.98,431.26 359.99,431.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.99,431.24 359.99,431.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.99,431.22 360,431.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360,431.21 360.01,431.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.01,431.19 360.02,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.02,431.18 360.04,431.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.04,431.17 360.05,431.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.05,431.16 360.07,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.07,431.15 360.09,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.01,431.32 359.98,431.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.11,431.9 360.1,431.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.07,431.51 360.04,431.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.1,431.76 360.08,431.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.08,431.63 360.07,431.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.04,431.41 358.12,431.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.12,431.31 358.22,431.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.22,431.22 358.33,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.33,431.15 358.45,431.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.45,431.05 358.45,430.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.56,431.15 358.66,431.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.45,430.94 358.45,430.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.45,430.92 358.46,430.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.46,430.9 358.46,430.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.46,430.89 358.47,430.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.47,430.87 358.49,430.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.49,430.86 358.5,430.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.5,430.85 358.52,430.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.52,430.84 358.54,430.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.54,430.84 358.56,430.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.45,431.05 358.46,431.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.46,431.08 358.47,431.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.47,431.11 358.5,431.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.5,431.14 358.54,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.54,431.15 358.56,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.84,430.94 359.83,430.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.83,430.9 359.81,430.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.81,430.87 359.78,430.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.78,430.85 359.75,430.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.75,430.84 359.73,430.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.84,431.05 359.84,430.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.84,431.05 359.83,431.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.83,431.06 359.83,431.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.83,431.08 359.82,431.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.82,431.1 359.81,431.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.81,431.11 359.8,431.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.8,431.13 359.78,431.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.78,431.14 359.77,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.77,431.15 359.75,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.75,431.15 359.73,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.84,431.05 359.87,431.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.87,431.05 359.9,431.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.9,431.06 359.93,431.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.73,431.15 358.56,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.73,430.83 358.56,430.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.97,432.99 359.94,433.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.73,432.83 359.98,432.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.03,432.91 360.02,432.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.02,432.94 360,432.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360,432.97 359.97,432.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.18,432.88 360.17,432.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.17,432.9 360.16,432.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.16,432.91 360.14,432.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.14,432.92 360.13,432.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.13,432.93 360.11,432.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.11,432.93 360.09,432.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.21,432.82 360.24,432.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.18,432.88 360.21,432.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.28,432.49 360.3,432.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.24,432.73 360.26,432.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.26,432.62 360.28,432.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.01,432.77 360.04,432.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.98,432.83 360.01,432.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.08,432.46 360.1,432.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.04,432.68 360.07,432.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.07,432.58 360.08,432.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.09,432.93 360.07,432.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.07,432.93 360.05,432.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.05,432.93 360.04,432.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.04,432.92 360.02,432.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.02,432.91 360.01,432.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.01,432.9 360,432.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360,432.88 359.99,432.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.99,432.86 359.99,432.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.99,432.85 359.98,432.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.3,432.35 360.31,432.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.1,432.33 360.11,432.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.63,432.93 358.73,432.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.51,433.01 358.38,432.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.38,432.96 358.26,432.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.26,432.89 358.15,432.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.15,432.81 358.06,432.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.63,433.25 358.61,433.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.61,433.25 358.59,433.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.59,433.25 358.57,433.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.57,433.24 358.56,433.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.56,433.23 358.55,433.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.55,433.21 358.54,433.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.54,433.2 358.53,433.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.53,433.18 358.52,433.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.52,433.16 358.52,433.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.52,433.04 358.52,433.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.63,432.93 358.59,432.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.59,432.94 358.56,432.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.56,432.96 358.54,432.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.54,432.99 358.52,433.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.52,433.02 358.52,433.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.84,433.04 359.84,433.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.73,433.25 359.77,433.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.77,433.25 359.8,433.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.8,433.23 359.82,433.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.82,433.2 359.83,433.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.83,433.16 359.84,433.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.94,433.01 359.91,433.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.91,433.03 359.87,433.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.87,433.04 359.84,433.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.73,432.93 359.75,432.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.75,432.94 359.77,432.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.77,432.94 359.78,432.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.78,432.95 359.8,432.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.8,432.96 359.81,432.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.81,432.97 359.82,432.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.82,432.99 359.83,433" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.83,433 359.83,433.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.83,433.02 359.84,433.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.73,433.25 358.63,433.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.73,432.93 358.63,432.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.89,432.19 357.89,431.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.89,431.89 357.9,431.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.9,431.77 357.92,431.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.92,431.64 357.97,431.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.93,432.46 357.9,432.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.98,432.59 357.93,432.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.9,432.33 357.89,432.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.8,428.73 371.8,422.1 368.48,422.1 368.48,428.73 371.8,428.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.29,426.07 368.37,425.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.38,424.89 368.31,424.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.05,425.56 366.04,425.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.25,425.56 366.24,425.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.42,424.44 366.39,424.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.37,424.63 367.69,424.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.39,424.45 366.37,424.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.37,424.48 366.35,424.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.35,424.5 366.33,424.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.04,425.41 366.05,425.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.24,425.41 366.25,425.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.26,424.52 366.25,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.25,424.52 366.23,424.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.23,424.53 366.22,424.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.22,424.53 366.2,424.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.2,424.54 366.19,424.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.19,424.55 366.18,424.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.15,424.63 366.18,424.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.12,424.72 366.15,424.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.09,424.83 366.12,424.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.05,425.25 366.06,425.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.06,425.1 366.07,424.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.07,424.96 366.09,424.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.31,424.77 366.34,424.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.37,424.63 366.37,424.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.37,424.61 366.36,424.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.36,424.59 366.35,424.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.35,424.57 366.34,424.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.34,424.56 366.33,424.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.33,424.55 366.32,424.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.32,424.54 366.3,424.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.3,424.53 366.28,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.28,424.52 366.26,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.34,424.69 366.37,424.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.25,425.27 366.26,425.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.29,424.88 366.31,424.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.26,425.13 366.27,424.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.27,424.99 366.29,424.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.31,424.77 368.23,424.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.23,424.67 368.13,424.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.13,424.59 368.02,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.02,424.52 367.9,424.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.9,424.42 367.9,424.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.8,424.52 367.69,424.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.9,424.31 367.9,424.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.9,424.29 367.9,424.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.9,424.27 367.89,424.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.89,424.26 367.88,424.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.88,424.24 367.87,424.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.87,424.23 367.85,424.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.85,424.22 367.83,424.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.83,424.21 367.82,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.82,424.2 367.8,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.9,424.42 367.9,424.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.9,424.45 367.88,424.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.88,424.48 367.85,424.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.85,424.51 367.82,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.82,424.52 367.8,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.52,424.31 366.52,424.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.52,424.27 366.54,424.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.54,424.24 366.57,424.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.57,424.22 366.6,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.6,424.2 366.62,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.52,424.42 366.52,424.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.52,424.42 366.52,424.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.52,424.43 366.52,424.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.52,424.45 366.53,424.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.53,424.47 366.54,424.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.54,424.48 366.56,424.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.56,424.5 366.57,424.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.57,424.51 366.59,424.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.59,424.51 366.61,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.61,424.52 366.62,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.52,424.42 366.48,424.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.48,424.42 366.45,424.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.45,424.43 366.42,424.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.62,424.52 367.8,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.62,424.2 367.8,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.38,426.36 366.41,426.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.62,426.2 366.37,426.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.32,426.28 366.34,426.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.34,426.31 366.36,426.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.36,426.34 366.38,426.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.17,426.25 366.18,426.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.18,426.27 366.2,426.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.2,426.28 366.21,426.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.21,426.29 366.23,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.23,426.3 366.25,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.25,426.3 366.26,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.15,426.19 366.12,426.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.18,426.25 366.15,426.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.07,425.86 366.06,425.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.12,426.1 366.09,425.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.09,425.98 366.07,425.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.34,426.13 366.31,426.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.37,426.2 366.34,426.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.27,425.83 366.26,425.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.31,426.05 366.29,425.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.29,425.95 366.27,425.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.26,426.3 366.28,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.28,426.3 366.3,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.3,426.3 366.32,426.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.32,426.29 366.33,426.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.33,426.28 366.34,426.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.34,426.26 366.36,426.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.36,426.25 366.36,426.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.36,426.23 366.37,426.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.37,426.21 366.37,426.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.06,425.72 366.05,425.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.26,425.7 366.25,425.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.73,426.3 367.62,426.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.84,426.38 367.97,426.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.97,426.33 368.09,426.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.09,426.26 368.2,426.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.2,426.18 368.29,426.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.73,426.62 367.74,426.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.74,426.62 367.76,426.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.76,426.61 367.78,426.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.78,426.61 367.79,426.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.79,426.6 367.81,426.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.81,426.58 367.82,426.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.82,426.57 367.83,426.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.83,426.55 367.83,426.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.83,426.53 367.83,426.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.83,426.41 367.83,426.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.73,426.3 367.76,426.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.76,426.31 367.79,426.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.79,426.33 367.82,426.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.82,426.36 367.83,426.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.83,426.39 367.83,426.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.52,426.41 366.52,426.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.62,426.62 366.59,426.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.59,426.61 366.56,426.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.56,426.6 366.53,426.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.53,426.57 366.52,426.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.52,426.53 366.52,426.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.41,426.38 366.45,426.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.45,426.4 366.48,426.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.48,426.41 366.52,426.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.62,426.3 366.61,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.61,426.3 366.59,426.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.59,426.31 366.57,426.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.57,426.32 366.56,426.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.56,426.33 366.54,426.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.54,426.34 366.53,426.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.53,426.36 366.52,426.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.52,426.37 366.52,426.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.52,426.39 366.52,426.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.62,426.62 367.73,426.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.62,426.3 367.73,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.47,425.56 368.47,425.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.47,425.26 368.46,425.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.46,425.13 368.43,425.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.43,425.01 368.38,424.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.42,425.83 368.46,425.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.37,425.96 368.42,425.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.46,425.7 368.47,425.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.8,435.36 371.8,428.73 368.48,428.73 368.48,435.36 371.8,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.93,431.87 368.01,431.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.02,430.68 367.95,430.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.69,431.36 365.68,431.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.88,431.35 365.88,431.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.06,430.24 366.03,430.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.01,430.42 367.33,430.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.03,430.25 366.01,430.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.01,430.27 365.99,430.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.99,430.3 365.97,430.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.68,431.21 365.69,431.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.88,431.21 365.88,431.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.9,430.32 365.88,430.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.88,430.32 365.87,430.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.87,430.32 365.85,430.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.85,430.33 365.84,430.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.84,430.34 365.83,430.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.83,430.35 365.81,430.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.78,430.43 365.82,430.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.75,430.52 365.78,430.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.73,430.63 365.75,430.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.69,431.05 365.69,430.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.69,430.9 365.71,430.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.71,430.76 365.73,430.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.95,430.57 365.98,430.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.01,430.42 366,430.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366,430.41 366,430.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366,430.39 365.99,430.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.99,430.37 365.98,430.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.98,430.36 365.97,430.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.97,430.34 365.95,430.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.95,430.33 365.94,430.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.94,430.33 365.92,430.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.92,430.32 365.9,430.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.98,430.49 366.01,430.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.88,431.06 365.89,430.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.93,430.67 365.95,430.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.89,430.92 365.91,430.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.91,430.79 365.93,430.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.95,430.57 367.87,430.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.87,430.47 367.77,430.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.77,430.39 367.66,430.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.66,430.32 367.54,430.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.54,430.21 367.54,430.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.44,430.32 367.33,430.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.54,430.11 367.54,430.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.54,430.09 367.54,430.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.54,430.07 367.53,430.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.53,430.05 367.52,430.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.52,430.04 367.5,430.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.5,430.03 367.49,430.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.49,430.01 367.47,430.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.47,430.01 367.45,430" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.45,430 367.44,430" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.54,430.21 367.54,430.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.54,430.25 367.52,430.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.52,430.28 367.49,430.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.49,430.3 367.45,430.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.45,430.32 367.44,430.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.16,430.11 366.16,430.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.16,430.07 366.18,430.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.18,430.04 366.21,430.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.21,430.01 366.24,430" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.24,430 366.26,430" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.16,430.21 366.16,430.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.16,430.21 366.16,430.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.16,430.23 366.16,430.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.16,430.25 366.17,430.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.17,430.27 366.18,430.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.18,430.28 366.19,430.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.19,430.29 366.21,430.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.21,430.3 366.23,430.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.23,430.31 366.24,430.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.24,430.32 366.26,430.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.16,430.21 366.12,430.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.12,430.22 366.09,430.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.09,430.22 366.06,430.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.26,430.32 367.44,430.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.26,430 367.44,430" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.02,432.16 366.05,432.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.26,431.99 366.01,431.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.96,432.07 365.97,432.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.97,432.1 366,432.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366,432.13 366.02,432.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.81,432.05 365.82,432.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.82,432.06 365.83,432.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.83,432.08 365.85,432.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.85,432.09 365.86,432.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.86,432.09 365.88,432.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.88,432.1 365.9,432.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.78,431.98 365.75,431.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.82,432.05 365.78,431.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.71,431.65 365.69,431.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.75,431.89 365.73,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.73,431.78 365.71,431.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.98,431.93 365.95,431.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.01,431.99 365.98,431.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.91,431.63 365.89,431.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.95,431.85 365.93,431.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.93,431.75 365.91,431.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.9,432.1 365.92,432.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.92,432.1 365.94,432.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.94,432.09 365.95,432.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.95,432.09 365.97,432.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.97,432.08 365.98,432.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.98,432.06 365.99,432.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.99,432.05 366,432.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366,432.03 366.01,432.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.01,432.01 366.01,431.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.69,431.51 365.69,431.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.89,431.5 365.88,431.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.36,432.1 367.26,431.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.48,432.18 367.61,432.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.61,432.13 367.73,432.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.73,432.06 367.84,431.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.84,431.98 367.93,431.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.36,432.42 367.38,432.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.38,432.42 367.4,432.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.4,432.41 367.42,432.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.42,432.4 367.43,432.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.43,432.39 367.45,432.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.45,432.38 367.46,432.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.46,432.36 367.46,432.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.46,432.35 367.47,432.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.47,432.33 367.47,432.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.47,432.21 367.47,432.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.36,432.1 367.4,432.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.4,432.11 367.43,432.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.43,432.12 367.46,432.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.46,432.15 367.47,432.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.47,432.19 367.47,432.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.16,432.21 366.16,432.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.26,432.42 366.22,432.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.22,432.41 366.19,432.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.19,432.39 366.17,432.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.17,432.36 366.16,432.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.16,432.33 366.16,432.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.05,432.18 366.08,432.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.08,432.19 366.12,432.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.12,432.2 366.16,432.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.26,432.1 366.24,432.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.24,432.1 366.23,432.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.23,432.11 366.21,432.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.21,432.11 366.19,432.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.19,432.13 366.18,432.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.18,432.14 366.17,432.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.17,432.15 366.16,432.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.16,432.17 366.16,432.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.16,432.19 366.16,432.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.26,432.42 367.36,432.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.26,432.1 367.36,432.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.11,431.36 368.11,431.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.11,431.06 368.1,430.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.1,430.93 368.07,430.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.07,430.8 368.02,430.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.06,431.63 368.09,431.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.01,431.76 368.06,431.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.09,431.5 368.11,431.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="344.62,392.79 345.94,392.79 345.94,388.81 344.62,388.81 344.62,392.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="344.62,388.81 345.94,388.81 345.94,384.84 344.62,384.84 344.62,388.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="343.93,410.16 343.93,414.14 345.92,414.14 345.92,410.16 343.93,410.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="343.93,410.16 343.93,414.14 345.92,414.14 345.92,410.16 343.93,410.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="344.62,407.43 345.94,407.43 345.94,403.45 344.62,403.45 344.62,407.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="344.62,403.45 345.94,403.45 345.94,399.47 344.62,399.47 344.62,403.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="345.94,397.9 345.94,413.82 346.22,413.82 346.22,397.9 345.94,397.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.22,384.41 388.55,384.41 388.55,384.69 346.22,384.69 346.22,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.66,414.09 346.22,414.09 346.22,413.82 388.66,413.82 388.66,414.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.72,384.41 411.63,384.41 411.63,384.69 395.72,384.69 395.72,384.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.72,396.9 411.63,396.9 411.63,396.62 395.72,396.62 395.72,396.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.88,388 403.84,388 403.84,384.69 395.88,384.69 395.88,388" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.11,388.64 402,388.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.92,388.56 400.81,388.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.6,390.89 401.45,390.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.59,390.69 401.45,390.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.48,390.52 400.49,390.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.66,390.57 400.66,389.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.49,390.54 400.51,390.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.51,390.57 400.54,390.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.54,390.59 400.57,390.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.45,390.89 401.29,390.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.45,390.7 401.3,390.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.56,390.68 400.56,390.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.56,390.69 400.56,390.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.56,390.71 400.57,390.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.57,390.72 400.58,390.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.58,390.74 400.59,390.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.59,390.75 400.6,390.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.67,390.79 400.6,390.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.76,390.82 400.67,390.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.87,390.85 400.76,390.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.29,390.89 401.14,390.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.14,390.88 401,390.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401,390.87 400.87,390.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.81,390.63 400.73,390.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.66,390.57 400.65,390.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.65,390.57 400.63,390.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.63,390.58 400.61,390.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.61,390.58 400.6,390.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.6,390.59 400.58,390.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.58,390.61 400.57,390.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.57,390.62 400.57,390.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.57,390.64 400.56,390.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.56,390.66 400.56,390.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.73,390.6 400.66,390.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.3,390.69 401.16,390.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.91,390.65 400.81,390.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.16,390.68 401.03,390.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.03,390.67 400.91,390.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.81,388.63 400.71,388.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.71,388.71 400.63,388.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.63,388.81 400.56,388.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.56,388.92 400.5,389.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.45,389.03 400.35,389.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.56,389.14 400.66,389.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.35,389.03 400.33,389.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.33,389.04 400.31,389.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.31,389.04 400.29,389.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.29,389.05 400.28,389.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.28,389.06 400.27,389.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.27,389.07 400.25,389.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.25,389.09 400.25,389.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.25,389.1 400.24,389.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.24,389.12 400.24,389.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.45,389.03 400.49,389.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.49,389.04 400.52,389.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.52,389.06 400.54,389.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.54,389.09 400.56,389.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.56,389.12 400.56,389.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.35,390.42 400.31,390.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.31,390.41 400.28,390.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.28,390.4 400.25,390.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.25,390.37 400.24,390.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.24,390.33 400.24,390.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.45,390.42 400.35,390.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.45,390.42 400.47,390.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.47,390.42 400.49,390.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.49,390.41 400.51,390.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.51,390.41 400.52,390.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.52,390.4 400.53,390.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.53,390.38 400.54,390.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.54,390.37 400.55,390.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.55,390.35 400.56,390.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.56,390.33 400.56,390.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.45,390.42 400.46,390.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.46,390.45 400.46,390.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.46,390.49 400.48,390.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.56,390.32 400.56,389.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.24,390.32 400.24,389.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.4,390.55 402.42,390.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.23,389.32 402.23,390.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.31,390.62 402.34,390.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.34,390.6 402.37,390.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.37,390.58 402.4,390.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.29,390.77 402.3,390.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.3,390.76 402.32,390.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.32,390.74 402.33,390.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.33,390.73 402.33,390.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.33,390.71 402.34,390.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.34,390.69 402.34,390.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.22,390.79 402.13,390.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.29,390.76 402.22,390.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.89,390.87 401.75,390.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.13,390.82 402.02,390.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.02,390.85 401.89,390.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.17,390.6 402.09,390.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.23,390.57 402.17,390.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.87,390.67 401.74,390.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.09,390.63 401.99,390.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.99,390.65 401.87,390.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.34,390.68 402.34,390.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.34,390.66 402.33,390.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.33,390.64 402.33,390.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.33,390.62 402.32,390.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.32,390.61 402.3,390.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.3,390.59 402.29,390.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.29,390.58 402.27,390.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.27,390.58 402.25,390.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.25,390.57 402.23,390.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.75,390.88 401.6,390.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.74,390.68 401.59,390.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.34,389.21 402.23,389.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.42,389.09 402.37,388.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.37,388.96 402.3,388.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.3,388.84 402.22,388.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.22,388.74 402.11,388.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.66,389.21 402.66,389.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.66,389.19 402.65,389.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.65,389.18 402.64,389.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.64,389.16 402.63,389.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.63,389.14 402.62,389.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.62,389.13 402.6,389.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.6,389.12 402.59,389.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.59,389.11 402.57,389.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.57,389.11 402.55,389.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.45,389.11 402.55,389.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.34,389.21 402.35,389.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.35,389.18 402.36,389.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.36,389.14 402.39,389.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.39,389.12 402.43,389.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.43,389.11 402.45,389.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.45,390.42 402.55,390.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.66,390.32 402.65,390.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.65,390.35 402.63,390.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.63,390.38 402.6,390.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.6,390.41 402.57,390.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.57,390.42 402.55,390.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.42,390.52 402.43,390.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.43,390.49 402.44,390.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.44,390.46 402.45,390.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.34,390.32 402.34,390.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.34,390.33 402.35,390.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.35,390.35 402.35,390.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.35,390.37 402.37,390.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.37,390.38 402.38,390.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.38,390.4 402.39,390.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.39,390.41 402.41,390.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.41,390.41 402.43,390.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.43,390.42 402.45,390.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.66,390.32 402.66,389.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.34,390.32 402.34,389.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.6,388.47 401.3,388.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.3,388.47 401.17,388.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.17,388.48 401.04,388.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.04,388.51 400.92,388.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.87,388.52 401.74,388.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402,388.57 401.87,388.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.74,388.48 401.6,388.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.93,405.86 388.93,413.82 388.66,413.82 388.66,405.86 388.93,405.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.72,396.9 395.72,400.22 395.44,400.22 395.44,396.9 395.72,396.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.72,384.69 395.72,392.64 395.44,392.64 395.44,384.69 395.72,384.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.82,384.69 388.82,392.64 388.55,392.64 388.55,384.69 388.82,384.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.14,396.62 409.14,393.97 411.79,393.97 411.79,396.62 409.14,396.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.14,393.97 409.61,393.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.8,393.97 410.98,392.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.84,413.82 411.75,413.82 411.75,414.09 395.84,414.09 395.84,413.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.84,413.82 395.84,410.5 395.56,410.5 395.56,413.82 395.84,413.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="364.26,410.5 364.26,402.55 367.58,402.55 367.58,410.5 364.26,410.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.19,413.82 352.19,411.17 354.84,411.17 354.84,413.82 352.19,413.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.19,411.17 352.66,410.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.85,411.17 354.02,409.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.19,413.82 352.19,411.17 349.53,411.17 349.53,413.82 352.19,413.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.58,410.5 359.62,410.5 359.62,413.82 367.58,413.82 367.58,410.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.35,409.98 361.47,410.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.54,410.06 362.65,410" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.86,407.73 362.02,407.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.87,407.93 362.02,407.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.99,408.11 362.97,408.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.8,408.05 362.8,409.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.97,408.08 362.95,408.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.95,408.05 362.93,408.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.93,408.03 362.9,408.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.02,407.73 362.18,407.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.02,407.93 362.16,407.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.91,407.95 362.9,407.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.9,407.93 362.9,407.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.9,407.92 362.89,407.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.89,407.9 362.89,407.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.89,407.89 362.88,407.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.88,407.87 362.86,407.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.8,407.83 362.86,407.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.71,407.8 362.8,407.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.6,407.78 362.71,407.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.18,407.73 362.33,407.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.33,407.74 362.47,407.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.47,407.76 362.6,407.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.66,408 362.74,408.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.8,408.05 362.82,408.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.82,408.05 362.84,408.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.84,408.05 362.85,408.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.85,408.04 362.87,408.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.87,408.03 362.88,408.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.88,408.02 362.89,408" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.89,408 362.9,407.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.9,407.98 362.9,407.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.9,407.97 362.91,407.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.74,408.02 362.8,408.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.16,407.93 362.3,407.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.55,407.97 362.66,408" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.3,407.94 362.43,407.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.43,407.95 362.55,407.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.65,410 362.75,409.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.75,409.92 362.84,409.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.84,409.82 362.91,409.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.91,409.71 362.96,409.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.01,409.59 363.12,409.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.91,409.48 362.8,409.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.12,409.59 363.14,409.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.14,409.59 363.15,409.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.15,409.58 363.17,409.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.17,409.58 363.19,409.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.19,409.56 363.2,409.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.2,409.55 363.21,409.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.21,409.54 363.22,409.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.22,409.52 363.22,409.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.22,409.5 363.22,409.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.01,409.59 362.98,409.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.98,409.58 362.94,409.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.94,409.56 362.92,409.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.92,409.54 362.91,409.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.91,409.5 362.91,409.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.12,408.2 363.15,408.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.15,408.21 363.19,408.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.19,408.23 363.21,408.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.21,408.26 363.22,408.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.22,408.29 363.22,408.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.01,408.2 363.12,408.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.01,408.2 362.99,408.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.99,408.2 362.98,408.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.98,408.21 362.96,408.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.96,408.22 362.94,408.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.94,408.23 362.93,408.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.93,408.24 362.92,408.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.92,408.26 362.91,408.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.91,408.27 362.91,408.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.91,408.29 362.91,408.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.01,408.2 363.01,408.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.01,408.17 363,408.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363,408.14 362.99,408.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.91,408.31 362.91,409.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.22,408.31 363.22,409.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.07,408.07 361.05,408.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.23,409.31 361.23,408.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.15,408.01 361.12,408.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.12,408.02 361.09,408.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.09,408.04 361.07,408.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.18,407.86 361.16,407.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.16,407.87 361.15,407.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.15,407.88 361.14,407.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.14,407.9 361.13,407.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.13,407.91 361.13,407.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.13,407.93 361.12,407.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.24,407.83 361.33,407.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.18,407.86 361.24,407.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.57,407.76 361.71,407.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.33,407.8 361.44,407.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.44,407.78 361.57,407.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.29,408.02 361.38,408" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.23,408.05 361.29,408.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.6,407.95 361.73,407.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.38,408 361.48,407.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.48,407.97 361.6,407.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.12,407.95 361.13,407.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.13,407.97 361.13,407.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.13,407.98 361.14,408" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.14,408 361.15,408.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.15,408.02 361.16,408.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.16,408.03 361.18,408.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.18,408.04 361.19,408.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.19,408.05 361.21,408.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.21,408.05 361.23,408.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.71,407.74 361.86,407.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.73,407.94 361.87,407.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.12,409.41 361.23,409.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.05,409.53 361.1,409.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.1,409.66 361.16,409.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.16,409.78 361.25,409.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.25,409.89 361.35,409.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.81,409.41 360.81,409.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.81,409.43 360.81,409.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.81,409.45 360.82,409.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.82,409.46 360.83,409.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.83,409.48 360.84,409.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.84,409.49 360.86,409.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.86,409.5 360.88,409.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.88,409.51 360.89,409.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.89,409.52 360.91,409.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.02,409.52 360.91,409.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.12,409.41 361.12,409.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.12,409.45 361.1,409.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.1,409.48 361.07,409.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.07,409.5 361.04,409.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.04,409.52 361.02,409.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.02,408.2 360.91,408.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.81,408.31 360.81,408.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.81,408.27 360.83,408.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.83,408.24 360.86,408.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.86,408.22 360.89,408.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.89,408.2 360.91,408.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.05,408.1 361.03,408.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.03,408.13 361.02,408.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.02,408.17 361.02,408.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.12,408.31 361.12,408.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.12,408.29 361.12,408.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.12,408.27 361.11,408.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.11,408.26 361.1,408.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.1,408.24 361.09,408.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.09,408.23 361.07,408.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.07,408.22 361.05,408.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.05,408.21 361.04,408.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.04,408.2 361.02,408.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.81,408.31 360.81,409.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.12,408.31 361.12,409.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.87,410.15 362.16,410.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.16,410.15 362.29,410.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.29,410.14 362.42,410.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.42,410.11 362.54,410.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.6,410.11 361.73,410.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.47,410.05 361.6,410.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.73,410.14 361.87,410.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.53,405.86 349.53,397.9 346.22,397.9 346.22,405.86 349.53,405.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.02,401.32 349.95,401.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.94,402.51 350.01,402.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.27,401.83 352.27,401.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.07,401.84 352.08,401.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.9,402.96 351.92,402.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.95,402.77 350.63,402.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.92,402.94 351.95,402.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.95,402.92 351.97,402.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.97,402.89 351.99,402.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.27,401.98 352.27,402.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.08,401.98 352.07,402.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.06,402.87 352.07,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.07,402.87 352.09,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.09,402.87 352.1,402.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.1,402.86 352.12,402.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.12,402.85 352.13,402.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.13,402.84 352.14,402.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.17,402.76 352.14,402.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.2,402.67 352.17,402.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.23,402.56 352.2,402.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.27,402.14 352.26,402.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.26,402.29 352.25,402.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.25,402.43 352.23,402.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.01,402.62 351.98,402.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.95,402.77 351.95,402.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.95,402.78 351.96,402.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.96,402.8 351.96,402.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.96,402.82 351.97,402.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.97,402.83 351.99,402.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.99,402.85 352,402.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352,402.86 352.02,402.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.02,402.86 352.04,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.04,402.87 352.06,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.98,402.7 351.95,402.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.07,402.13 352.06,402.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.03,402.52 352.01,402.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.06,402.27 352.05,402.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.05,402.4 352.03,402.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.01,402.62 350.09,402.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.09,402.72 350.19,402.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.19,402.8 350.3,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.3,402.87 350.42,402.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.42,402.98 350.42,403.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.52,402.87 350.63,402.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.42,403.08 350.42,403.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.42,403.1 350.42,403.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.42,403.12 350.43,403.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.43,403.14 350.44,403.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.44,403.15 350.45,403.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.45,403.16 350.47,403.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.47,403.18 350.48,403.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.48,403.18 350.5,403.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.5,403.19 350.52,403.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.42,402.98 350.42,402.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.42,402.94 350.44,402.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.44,402.91 350.47,402.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.47,402.89 350.5,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.5,402.87 350.52,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.8,403.08 351.8,403.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.8,403.12 351.78,403.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.78,403.15 351.75,403.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.75,403.18 351.71,403.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.71,403.19 351.7,403.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.8,402.98 351.8,403.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.8,402.98 351.8,402.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.8,402.96 351.79,402.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.79,402.94 351.79,402.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.79,402.92 351.78,402.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.78,402.91 351.76,402.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.76,402.9 351.75,402.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.75,402.89 351.73,402.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.73,402.88 351.71,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.71,402.87 351.7,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.8,402.98 351.83,402.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.83,402.97 351.87,402.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.87,402.97 351.9,402.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.7,402.87 350.52,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.7,403.19 350.52,403.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.93,401.03 351.91,401.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.7,401.2 351.95,401.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352,401.12 351.98,401.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.98,401.09 351.96,401.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.96,401.06 351.93,401.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.15,401.14 352.14,401.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.14,401.13 352.12,401.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.12,401.11 352.11,401.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.11,401.1 352.09,401.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.09,401.1 352.07,401.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.07,401.09 352.06,401.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.17,401.21 352.2,401.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.14,401.14 352.17,401.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.25,401.54 352.26,401.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.2,401.3 352.23,401.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.23,401.41 352.25,401.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.98,401.26 352.01,401.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.95,401.2 351.98,401.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.05,401.56 352.06,401.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.01,401.34 352.03,401.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.03,401.44 352.05,401.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.06,401.09 352.04,401.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.04,401.09 352.02,401.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.02,401.1 352,401.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352,401.1 351.99,401.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.99,401.11 351.97,401.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.97,401.13 351.96,401.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.96,401.14 351.96,401.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.96,401.16 351.95,401.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.95,401.18 351.95,401.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.26,401.68 352.27,401.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.06,401.69 352.07,401.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.59,401.09 350.7,401.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.47,401.01 350.35,401.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.35,401.06 350.22,401.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.22,401.13 350.12,401.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.12,401.22 350.02,401.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.59,400.77 350.57,400.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.57,400.77 350.56,400.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.56,400.78 350.54,400.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.54,400.79 350.52,400.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.52,400.8 350.51,400.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.51,400.81 350.5,400.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.5,400.83 350.49,400.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.49,400.84 350.49,400.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.49,400.86 350.49,400.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.49,400.98 350.49,400.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.59,401.09 350.56,401.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.56,401.08 350.52,401.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.52,401.07 350.5,401.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.5,401.04 350.49,401" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.49,401 350.49,400.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.8,400.98 351.8,400.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.7,400.77 351.73,400.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.73,400.78 351.76,400.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.76,400.8 351.79,400.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.79,400.83 351.8,400.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.8,400.86 351.8,400.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.91,401.01 351.87,401" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.87,401 351.84,400.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.84,400.99 351.8,400.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.7,401.09 351.71,401.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.71,401.09 351.73,401.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.73,401.08 351.75,401.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.75,401.08 351.76,401.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.76,401.06 351.78,401.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.78,401.05 351.79,401.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.79,401.04 351.79,401.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.79,401.02 351.8,401" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.8,401 351.8,400.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.7,400.77 350.59,400.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.7,401.09 350.59,401.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.85,401.83 349.85,402.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.85,402.13 349.86,402.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.86,402.26 349.89,402.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.89,402.39 349.94,402.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.9,401.56 349.86,401.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.95,401.43 349.9,401.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.86,401.69 349.85,401.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.17,387.34 354.64,387.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.84,387.34 356.01,388.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.91,384.69 366.91,392.64 366.63,392.64 366.63,384.69 366.91,384.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.85,397.9 367.85,405.86 367.58,405.86 367.58,397.9 367.85,397.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.85,405.86 367.85,413.82 367.58,413.82 367.58,405.86 367.85,405.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="380.01,404.25 377.35,404.25 377.35,406.91 380.01,406.91 380.01,404.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.35,404.25 376.89,404.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.35,404.92 376.18,406.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.34,413.82 385.34,405.86 388.66,405.86 388.66,413.82 385.34,413.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.76,407.57 384.84,407.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.85,408.76 384.78,408.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.52,408.08 382.51,408.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.72,408.09 382.71,408.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.89,409.21 382.86,409.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.84,409.02 384.16,409.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.86,409.19 382.84,409.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.84,409.17 382.82,409.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.82,409.14 382.8,409.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.51,408.24 382.52,408.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.71,408.23 382.72,408.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.73,409.12 382.72,409.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.72,409.12 382.7,409.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.7,409.12 382.69,409.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.69,409.11 382.67,409.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.67,409.1 382.66,409.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.66,409.09 382.65,409.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.62,409.01 382.65,409.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.59,408.92 382.62,409.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.56,408.81 382.59,408.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.52,408.39 382.53,408.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.53,408.54 382.54,408.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.54,408.69 382.56,408.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.78,408.87 382.81,408.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.84,409.02 382.84,409.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.84,409.04 382.83,409.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.83,409.05 382.82,409.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.82,409.07 382.81,409.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.81,409.09 382.8,409.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.8,409.1 382.79,409.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.79,409.11 382.77,409.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.77,409.12 382.75,409.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.75,409.12 382.73,409.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.81,408.96 382.84,409.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.72,408.38 382.73,408.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.76,408.77 382.78,408.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.73,408.52 382.74,408.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.74,408.65 382.76,408.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.78,408.87 384.7,408.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.7,408.97 384.6,409.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.6,409.06 384.49,409.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.49,409.13 384.37,409.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.37,409.23 384.37,409.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.27,409.12 384.16,409.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.37,409.34 384.37,409.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.37,409.35 384.37,409.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.37,409.37 384.36,409.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.36,409.39 384.35,409.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.35,409.4 384.34,409.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.34,409.42 384.32,409.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.32,409.43 384.3,409.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.3,409.44 384.29,409.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.29,409.44 384.27,409.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.37,409.23 384.37,409.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.37,409.19 384.35,409.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.35,409.16 384.32,409.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.32,409.14 384.29,409.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.29,409.12 384.27,409.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.99,409.34 382.99,409.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.99,409.37 383.01,409.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.01,409.4 383.04,409.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.04,409.43 383.07,409.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,409.44 383.09,409.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.99,409.23 382.99,409.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.99,409.23 382.99,409.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.99,409.21 382.99,409.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.99,409.19 383,409.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383,409.18 383.01,409.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.01,409.16 383.03,409.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.03,409.15 383.04,409.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.04,409.14 383.06,409.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.06,409.13 383.08,409.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.08,409.13 383.09,409.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.99,409.23 382.95,409.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.95,409.23 382.92,409.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.92,409.22 382.89,409.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.09,409.12 384.27,409.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.09,409.44 384.27,409.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.85,407.28 382.88,407.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.09,407.45 382.84,407.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.79,407.37 382.81,407.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.81,407.34 382.83,407.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.83,407.31 382.85,407.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.64,407.39 382.65,407.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.65,407.38 382.67,407.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.67,407.37 382.68,407.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.68,407.36 382.7,407.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.7,407.35 382.72,407.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.72,407.34 382.73,407.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.62,407.46 382.59,407.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.65,407.39 382.62,407.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.54,407.79 382.53,407.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.59,407.55 382.56,407.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.56,407.66 382.54,407.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.81,407.51 382.78,407.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.84,407.45 382.81,407.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.74,407.82 382.73,407.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.78,407.59 382.76,407.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.76,407.7 382.74,407.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.73,407.34 382.75,407.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.75,407.34 382.77,407.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.77,407.35 382.79,407.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.79,407.36 382.8,407.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.8,407.37 382.81,407.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.81,407.38 382.83,407.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.83,407.4 382.83,407.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.83,407.41 382.84,407.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.84,407.43 382.84,407.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.53,407.93 382.52,408.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.73,407.95 382.72,408.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.2,407.34 384.09,407.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.31,407.27 384.44,407.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.44,407.31 384.56,407.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.56,407.38 384.67,407.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.67,407.47 384.76,407.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.2,407.02 384.21,407.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.21,407.03 384.23,407.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.23,407.03 384.25,407.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.25,407.04 384.26,407.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.26,407.05 384.28,407.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.28,407.06 384.29,407.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.29,407.08 384.3,407.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.3,407.09 384.3,407.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.3,407.11 384.3,407.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.3,407.24 384.3,407.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.2,407.34 384.23,407.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.23,407.34 384.26,407.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.26,407.32 384.29,407.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.29,407.29 384.3,407.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.3,407.25 384.3,407.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.99,407.24 382.99,407.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.09,407.02 383.06,407.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.06,407.03 383.03,407.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.03,407.05 383,407.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383,407.08 382.99,407.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.99,407.11 382.99,407.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.88,407.26 382.92,407.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.92,407.25 382.95,407.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.95,407.24 382.99,407.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.09,407.34 383.08,407.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.08,407.34 383.06,407.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.06,407.34 383.04,407.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.04,407.33 383.03,407.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.03,407.32 383.01,407.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.01,407.3 383,407.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383,407.29 382.99,407.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.99,407.27 382.99,407.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.99,407.25 382.99,407.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.09,407.02 384.2,407.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.09,407.34 384.2,407.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.94,408.08 384.94,408.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.94,408.38 384.93,408.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.93,408.51 384.9,408.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.9,408.64 384.85,408.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.89,407.81 384.93,407.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.84,407.69 384.89,407.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.93,407.95 384.94,408.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.22,392.64 370.22,384.69 366.91,384.69 366.91,392.64 370.22,392.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.23,392.64 385.23,384.69 388.55,384.69 388.55,392.64 385.23,392.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.84,384.69 380.5,384.69 380.5,387.34 377.84,387.34 377.84,384.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="380.5,384.69 380.96,385.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="380.5,385.35 381.67,386.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="379.79,387.34 377.14,387.34 377.14,389.99 379.79,389.99 379.79,387.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.14,387.34 376.67,387.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.14,388 375.96,389.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.34,405.86 385.34,397.9 388.66,397.9 388.66,405.86 385.34,405.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.85,401.32 384.92,401.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.93,402.51 384.87,402.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.6,401.83 382.6,401.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.8,401.84 382.8,401.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.98,402.96 382.95,402.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.92,402.77 384.25,402.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.95,402.94 382.92,402.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.92,402.92 382.9,402.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.9,402.89 382.89,402.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.6,401.98 382.6,402.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.8,401.98 382.8,402.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.82,402.87 382.8,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.8,402.87 382.79,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.79,402.87 382.77,402.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.77,402.86 382.76,402.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.76,402.85 382.74,402.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.74,402.84 382.73,402.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.7,402.76 382.73,402.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.67,402.67 382.7,402.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.65,402.56 382.67,402.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.6,402.14 382.61,402.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.61,402.29 382.63,402.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.63,402.43 382.65,402.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.87,402.62 382.89,402.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.92,402.77 382.92,402.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.92,402.78 382.92,402.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.92,402.8 382.91,402.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.91,402.82 382.9,402.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.9,402.83 382.89,402.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.89,402.85 382.87,402.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.87,402.86 382.85,402.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.85,402.86 382.84,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.84,402.87 382.82,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.89,402.7 382.92,402.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.8,402.13 382.81,402.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.84,402.52 382.87,402.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.81,402.27 382.82,402.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.82,402.4 382.84,402.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.87,402.62 384.79,402.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.79,402.72 384.69,402.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.69,402.8 384.58,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.58,402.87 384.46,402.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.46,402.98 384.46,403.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.35,402.87 384.25,402.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.46,403.08 384.46,403.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.46,403.1 384.45,403.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.45,403.12 384.45,403.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.45,403.14 384.43,403.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.43,403.15 384.42,403.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.42,403.16 384.41,403.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.41,403.18 384.39,403.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.39,403.18 384.37,403.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.37,403.19 384.35,403.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.46,402.98 384.45,402.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.45,402.94 384.43,402.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.43,402.91 384.41,402.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.41,402.89 384.37,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.37,402.87 384.35,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,403.08 383.08,403.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.08,403.12 383.1,403.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.1,403.15 383.13,403.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.13,403.18 383.16,403.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.16,403.19 383.18,403.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,402.98 383.07,403.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,402.98 383.07,402.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,402.96 383.08,402.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.08,402.94 383.09,402.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.09,402.92 383.1,402.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.1,402.91 383.11,402.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.11,402.9 383.13,402.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.13,402.89 383.14,402.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.14,402.88 383.16,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.16,402.87 383.18,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,402.98 383.04,402.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.04,402.97 383.01,402.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.01,402.97 382.98,402.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.18,402.87 384.35,402.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.18,403.19 384.35,403.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.94,401.03 382.97,401.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.18,401.2 382.92,401.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.88,401.12 382.89,401.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.89,401.09 382.91,401.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.91,401.06 382.94,401.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.73,401.14 382.74,401.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.74,401.13 382.75,401.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.75,401.11 382.77,401.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.77,401.1 382.78,401.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.78,401.1 382.8,401.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.8,401.09 382.82,401.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.7,401.21 382.67,401.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.73,401.14 382.7,401.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.63,401.54 382.61,401.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.67,401.3 382.65,401.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.65,401.41 382.63,401.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.89,401.26 382.87,401.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.92,401.2 382.89,401.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.82,401.56 382.81,401.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.87,401.34 382.84,401.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.84,401.44 382.82,401.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.82,401.09 382.84,401.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.84,401.09 382.85,401.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.85,401.1 382.87,401.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.87,401.1 382.89,401.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.89,401.11 382.9,401.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.9,401.13 382.91,401.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.91,401.14 382.92,401.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.92,401.16 382.92,401.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.92,401.18 382.92,401.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.61,401.68 382.6,401.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.81,401.69 382.8,401.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.28,401.09 384.18,401.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.4,401.01 384.53,401.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.53,401.06 384.65,401.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.65,401.13 384.76,401.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.76,401.22 384.85,401.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.28,400.77 384.3,400.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.3,400.77 384.32,400.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.32,400.78 384.33,400.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.33,400.79 384.35,400.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.35,400.8 384.36,400.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.36,400.81 384.37,400.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.37,400.83 384.38,400.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.38,400.84 384.39,400.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.39,400.86 384.39,400.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.39,400.98 384.39,400.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.28,401.09 384.32,401.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.32,401.08 384.35,401.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.35,401.07 384.37,401.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.37,401.04 384.39,401" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.39,401 384.39,400.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,400.98 383.07,400.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.18,400.77 383.14,400.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.14,400.78 383.11,400.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.11,400.8 383.09,400.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.09,400.83 383.07,400.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,400.86 383.07,400.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.97,401.01 383,401" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383,401 383.04,400.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.04,400.99 383.07,400.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.18,401.09 383.16,401.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.16,401.09 383.14,401.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.14,401.08 383.13,401.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.13,401.08 383.11,401.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.11,401.06 383.1,401.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.1,401.05 383.09,401.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.09,401.04 383.08,401.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.08,401.02 383.07,401" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,401 383.07,400.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.18,400.77 384.28,400.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.18,401.09 384.28,401.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.02,401.83 385.02,402.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.02,402.13 385.01,402.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.01,402.26 384.98,402.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.98,402.39 384.93,402.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.98,401.56 385.01,401.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.92,401.43 384.98,401.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.01,401.69 385.02,401.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.93,397.9 388.93,405.86 388.66,405.86 388.66,397.9 388.93,397.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="345.94,384.69 345.94,392.64 346.22,392.64 346.22,384.69 345.94,384.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.69,315.41 296.69,323.34 300,323.34 300,315.41 296.69,315.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.69,323.34 296.69,320.7 292.06,320.7 292.06,323.34 296.69,323.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="292.17,322.9 293.83,322.9 293.83,320.7 292.17,320.7 292.17,322.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="292.56,320.59 293.44,320.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="292.56,320.48 293.44,320.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="292.56,320.37 293.44,320.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.31,315.41 299.31,323.34 300.96,323.34 300.96,315.41 299.31,315.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.07,280.25 389.3,280.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.3,280.25 389.3,279.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.3,279.75 389.07,279.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.07,279.75 389.07,280.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="384.88,280.25 385.1,280.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.1,280.25 385.1,279.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.1,279.75 384.88,279.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="384.88,279.75 384.88,280.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.1,280.25 385.1,284.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.07,280.25 388.93,281.3 388.52,282.27 387.87,283.1 387.02,283.73 386.03,284.12 384.98,284.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.22,280.25 385.22,284.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.22,280.25 385.22,280.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.1,280.25 385.22,280.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.73,408.08 318.05,408.08 318.05,397.76 335.73,397.76 335.73,398.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.17,398.41 336.17,397.26 317.55,397.26 317.55,408.57 336.17,408.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.17,402.28 340.04,402.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.17,398.41 337.39,398.61 338.48,399.18 339.34,400.06 339.88,401.17 340.04,402.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.17,402.16 340.03,402.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.17,402.16 336.17,402.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.17,402.28 336.17,402.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.17,398.41 336.17,398.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.17,398.19 335.73,398.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.73,398.19 335.73,398.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.73,398.41 336.17,398.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.17,402.5 336.17,402.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.17,402.28 335.73,402.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.73,402.28 335.73,402.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.73,402.5 336.17,402.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.95,404.33 335.95,406.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.17,406.38 335.73,406.38 335.73,406.16 336.17,406.16 336.17,406.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.17,404.33 335.73,404.33 335.73,404.11 336.17,404.11 336.17,404.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.73,406.38 335.73,404.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.17,406.38 336.17,404.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.94,234.33 325.94,234.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.94,234.11 326.38,234.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.38,234.11 326.38,234.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.38,234.33 325.94,234.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.38,234.11 330.36,234.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.38,230.13 327.43,230.28 328.4,230.69 329.23,231.34 329.86,232.19 330.25,233.18 330.35,234.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.38,233.99 330.35,233.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.38,233.99 326.38,233.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.38,234.11 326.38,233.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.94,230.11 325.94,229.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.94,229.89 326.38,229.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.38,229.89 326.38,230.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.38,230.11 325.94,230.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="314.02,279.46 314.8,279.46 314.8,279.81 314.02,279.81 314.02,279.46" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="314.02,272.17 314.02,271.74 314.81,271.74 314.81,272.17 314.02,272.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="330.65,281.21 330.43,281.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.43,281.21 330.43,280.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.43,280.72 330.65,280.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.65,280.72 330.65,281.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.58,281.21 326.36,281.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.36,281.21 326.36,280.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.36,280.72 326.58,280.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.58,280.72 326.58,281.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.43,281.21 330.43,285.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.58,281.21 326.67,282.26 327.04,283.24 327.67,284.09 328.51,284.72 329.5,285.1 330.55,285.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.3,281.21 330.3,285.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.3,281.21 330.3,281.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.43,281.21 330.3,281.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.43,273.25 342.17,273.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="342,273.25 341.67,273.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="341.5,273.25 341.17,273.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="341.01,273.25 340.68,273.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="340.51,273.25 340.18,273.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="340.01,273.25 339.68,273.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="339.52,273.25 339.18,273.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="339.02,273.25 338.69,273.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="338.52,273.25 338.19,273.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="338.02,273.25 337.76,273.25 337.76,272.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.76,272.72 337.76,272.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.76,272.22 337.76,271.85 338.02,271.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="338.19,271.85 338.52,271.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="338.69,271.85 339.02,271.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="339.18,271.85 339.52,271.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="339.68,271.85 340.01,271.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="340.18,271.85 340.51,271.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="340.68,271.85 341.01,271.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="341.17,271.85 341.5,271.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="341.67,271.85 342,271.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="342.17,271.85 342.43,271.85 342.43,272.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="342.43,272.38 342.43,272.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="342.43,272.88 342.43,273.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="344.59,274.23 344.09,274.23 344.09,273.92 344.59,273.92 344.59,274.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.59,278.51 344.09,278.51 344.09,278.21 344.59,278.21 344.59,278.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.56,281.69 292.56,285.01 284.6,285.01 284.6,281.69 292.56,281.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="284.6,285.01 287.26,285.01 287.26,289.65 284.6,289.65 284.6,285.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.52,287.89 289.83,288.18 289.09,288.17 288.41,287.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.98,287.73 288.68,287.61 288.54,287.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.98,287.73 289.94,287.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.38,287.33 290.24,287.61 289.94,287.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.42,287.75 289.8,288.01 289.12,288 288.51,287.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.42,287.75 290.52,287.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.51,287.73 288.41,287.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.39,286.14 288.44,285.87 288.65,285.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.65,285.69 289.46,285.51 290.27,285.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.39,286.14 288.54,287.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.27,285.69 290.48,285.87 290.53,286.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.38,287.33 290.53,286.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.06,287.15 300.06,281.06 297.23,281.06 297.23,287.15 300.06,287.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.74,287.15 300.06,287.15 300.06,293.78 296.74,293.78 296.74,287.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="291.23,292.36 284.6,292.36 284.6,295.67 291.23,295.67 291.23,292.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.69,413.5 347.91,413.5 347.91,410.84 347.69,410.84 347.69,413.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.47,412.06 346.47,412.28 349.12,412.28 349.12,412.06 346.47,412.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.69,412.17 347.72,412.09 347.8,412.06 347.87,412.09 347.91,412.17 347.87,412.24 347.8,412.28 347.72,412.24 347.69,412.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.58,399.89 364.92,399.89 364.92,402.55 367.58,402.55 367.58,399.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="364.92,399.89 364.45,400.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="364.92,400.56 363.75,401.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.37,410.5 370.42,410.5 370.42,413.82 378.37,413.82 378.37,410.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.95,410.08 374.07,410.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.14,410.16 375.25,410.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.46,407.83 374.62,407.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.47,408.03 374.62,408.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.59,408.2 375.57,408.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.4,408.15 375.4,409.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.57,408.18 375.55,408.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.55,408.15 375.53,408.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.53,408.13 375.5,408.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.62,407.83 374.78,407.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.62,408.03 374.76,408.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.51,408.04 375.51,408.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.51,408.03 375.5,408.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.5,408.01 375.5,408" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.5,408 375.49,407.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.49,407.98 375.48,407.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.48,407.97 375.46,407.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.4,407.93 375.46,407.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.31,407.9 375.4,407.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.2,407.87 375.31,407.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.78,407.83 374.93,407.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.93,407.84 375.07,407.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.07,407.85 375.2,407.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.26,408.09 375.34,408.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.4,408.15 375.42,408.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.42,408.15 375.44,408.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.44,408.14 375.45,408.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.45,408.14 375.47,408.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.47,408.13 375.48,408.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.48,408.11 375.49,408.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.49,408.1 375.5,408.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.5,408.08 375.51,408.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.51,408.06 375.51,408.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.34,408.12 375.4,408.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.76,408.03 374.9,408.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.15,408.07 375.26,408.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.9,408.04 375.03,408.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.03,408.05 375.15,408.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.25,410.1 375.35,410.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.35,410.01 375.44,409.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.44,409.91 375.51,409.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.51,409.8 375.56,409.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.61,409.69 375.72,409.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.51,409.58 375.4,409.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.72,409.69 375.74,409.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.74,409.68 375.76,409.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.76,409.68 375.77,409.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.77,409.67 375.79,409.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.79,409.66 375.8,409.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.8,409.65 375.81,409.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.81,409.63 375.82,409.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.82,409.62 375.82,409.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.82,409.6 375.83,409.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.61,409.69 375.58,409.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.58,409.68 375.54,409.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.54,409.66 375.52,409.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.52,409.63 375.51,409.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.51,409.6 375.51,409.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.72,408.3 375.76,408.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.76,408.31 375.79,408.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.79,408.32 375.81,408.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.81,408.35 375.82,408.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.82,408.39 375.83,408.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.61,408.3 375.72,408.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.61,408.3 375.59,408.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.59,408.3 375.58,408.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.58,408.31 375.56,408.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.56,408.31 375.54,408.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.54,408.32 375.53,408.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.53,408.34 375.52,408.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.52,408.35 375.51,408.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.51,408.37 375.51,408.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.51,408.39 375.51,408.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.61,408.3 375.61,408.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.61,408.27 375.6,408.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.6,408.23 375.59,408.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.51,408.41 375.51,409.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.83,408.41 375.83,409.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.67,408.17 373.65,408.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.83,409.4 373.83,408.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.75,408.1 373.72,408.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.72,408.12 373.69,408.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.69,408.14 373.67,408.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.78,407.95 373.76,407.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.76,407.96 373.75,407.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.75,407.98 373.74,407.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.74,407.99 373.73,408.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.73,408.01 373.73,408.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.73,408.03 373.73,408.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.84,407.93 373.93,407.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.78,407.96 373.84,407.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.17,407.85 374.31,407.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.93,407.9 374.04,407.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.04,407.87 374.17,407.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.89,408.12 373.98,408.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.83,408.15 373.89,408.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.2,408.05 374.33,408.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.98,408.09 374.08,408.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.08,408.07 374.2,408.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.73,408.04 373.73,408.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.73,408.06 373.73,408.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.73,408.08 373.74,408.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.74,408.1 373.75,408.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.75,408.11 373.76,408.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.76,408.13 373.78,408.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.78,408.14 373.8,408.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.8,408.14 373.81,408.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.81,408.15 373.83,408.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.31,407.84 374.46,407.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.33,408.04 374.47,408.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.73,409.51 373.83,409.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.65,409.63 373.7,409.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.7,409.76 373.76,409.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.76,409.88 373.85,409.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.85,409.98 373.95,410.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.41,409.51 373.41,409.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.41,409.53 373.41,409.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.41,409.54 373.42,409.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.42,409.56 373.43,409.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.43,409.58 373.45,409.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.45,409.59 373.46,409.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.46,409.6 373.48,409.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.48,409.61 373.5,409.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.5,409.61 373.51,409.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.62,409.61 373.51,409.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.73,409.51 373.72,409.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.72,409.54 373.7,409.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.7,409.58 373.67,409.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.67,409.6 373.64,409.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.64,409.61 373.62,409.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.62,408.3 373.51,408.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.41,408.41 373.41,408.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.41,408.37 373.43,408.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.43,408.34 373.46,408.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.46,408.31 373.5,408.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.5,408.3 373.51,408.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.65,408.2 373.63,408.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.63,408.23 373.62,408.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.62,408.26 373.62,408.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.73,408.41 373.72,408.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.72,408.39 373.72,408.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.72,408.37 373.71,408.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.71,408.35 373.7,408.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.7,408.34 373.69,408.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.69,408.32 373.67,408.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.67,408.31 373.66,408.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.66,408.31 373.64,408.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.64,408.3 373.62,408.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.41,408.41 373.41,409.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.73,408.41 373.73,409.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.47,410.25 374.76,410.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.76,410.25 374.89,410.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.89,410.24 375.02,410.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.02,410.21 375.14,410.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.2,410.21 374.33,410.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.07,410.15 374.2,410.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.33,410.24 374.47,410.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="380.01,400.45 380.01,404.25 378.59,404.25 378.59,400.45 380.01,400.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.63,405.74 347.63,409.55 346.22,409.55 346.22,405.74 347.63,405.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.05,384.69 411.79,384.69 411.79,388 406.05,388 406.05,384.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.1,385.95 407.04,385.88 406.96,385.84 406.85,385.84 406.77,385.88 406.71,385.95 406.71,386.02 406.74,386.09 406.77,386.13 406.82,386.17 406.99,386.24 407.04,386.28 407.07,386.31 407.1,386.38 407.1,386.49 407.04,386.57 406.96,386.6 406.85,386.6 406.77,386.57 406.71,386.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.26,386.6 407.26,385.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.67,385.84 407.67,386.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.48,385.84 407.86,385.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.46,385.7 407.97,386.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.94,385.95 408.89,385.88 408.81,385.84 408.7,385.84 408.62,385.88 408.56,385.95 408.56,386.02 408.59,386.09 408.62,386.13 408.67,386.17 408.84,386.24 408.89,386.28 408.92,386.31 408.94,386.38 408.94,386.49 408.89,386.57 408.81,386.6 408.7,386.6 408.62,386.57 408.56,386.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.3,385.84 409.3,386.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.11,385.84 409.49,385.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.6,386.6 409.81,385.84 410.03,386.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.68,386.35 409.95,386.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.2,386.6 410.2,385.84 410.58,386.6 410.58,385.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.79,386.6 410.79,385.84 410.98,385.84 411.07,385.88 411.12,385.95 411.15,386.02 411.17,386.13 411.17,386.31 411.15,386.42 411.12,386.49 411.07,386.57 410.98,386.6 410.79,386.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.41,388.47 409.3,388.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.23,388.39 408.11,388.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.9,390.72 408.75,390.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.9,390.52 408.75,390.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.78,390.34 407.79,390.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.97,390.4 407.97,389.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.79,390.37 407.81,390.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.81,390.4 407.84,390.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.84,390.42 407.87,390.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.75,390.72 408.59,390.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.75,390.52 408.61,390.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.86,390.5 407.86,390.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.86,390.52 407.87,390.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.87,390.54 407.87,390.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.87,390.55 407.88,390.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.88,390.57 407.89,390.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.89,390.58 407.9,390.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.97,390.62 407.9,390.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.06,390.65 407.97,390.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.17,390.68 408.06,390.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.59,390.72 408.44,390.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.44,390.71 408.3,390.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.3,390.7 408.17,390.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.11,390.46 408.03,390.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.97,390.4 407.95,390.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.95,390.4 407.93,390.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.93,390.4 407.91,390.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.91,390.41 407.9,390.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.9,390.42 407.89,390.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.89,390.44 407.87,390.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.87,390.45 407.87,390.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.87,390.47 407.86,390.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.86,390.49 407.86,390.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.03,390.43 407.97,390.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.61,390.52 408.47,390.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.21,390.48 408.11,390.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.47,390.51 408.33,390.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.33,390.5 408.21,390.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.11,388.45 408.01,388.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.01,388.54 407.93,388.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.93,388.63 407.86,388.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.86,388.74 407.8,388.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.75,388.86 407.65,388.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.86,388.97 407.97,389.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.65,388.86 407.63,388.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.63,388.86 407.61,388.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.61,388.87 407.6,388.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.6,388.88 407.58,388.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.58,388.89 407.57,388.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.57,388.9 407.56,388.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.56,388.92 407.55,388.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.55,388.93 407.54,388.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.54,388.95 407.54,388.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.75,388.86 407.79,388.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.79,388.87 407.82,388.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.82,388.89 407.85,388.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.85,388.92 407.86,388.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.86,388.95 407.86,388.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.65,390.25 407.61,390.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.61,390.24 407.58,390.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.58,390.23 407.56,390.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.56,390.2 407.54,390.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.54,390.16 407.54,390.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.75,390.25 407.65,390.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.75,390.25 407.77,390.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.77,390.25 407.79,390.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.79,390.24 407.81,390.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.81,390.24 407.82,390.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.82,390.22 407.84,390.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.84,390.21 407.85,390.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.85,390.2 407.85,390.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.85,390.18 407.86,390.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.86,390.16 407.86,390.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.75,390.25 407.76,390.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.76,390.28 407.76,390.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.76,390.31 407.78,390.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.86,390.14 407.86,388.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.54,390.14 407.54,388.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.7,390.38 409.72,390.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.54,389.15 409.54,390.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.61,390.45 409.65,390.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.65,390.43 409.68,390.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.68,390.41 409.7,390.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.59,390.6 409.61,390.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.61,390.58 409.62,390.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.62,390.57 409.63,390.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.63,390.56 409.64,390.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.64,390.54 409.64,390.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.64,390.52 409.64,390.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.52,390.62 409.43,390.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.59,390.59 409.52,390.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.2,390.7 409.05,390.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.43,390.65 409.32,390.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.32,390.68 409.2,390.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.47,390.43 409.39,390.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.54,390.4 409.47,390.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.17,390.5 409.04,390.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.39,390.46 409.29,390.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.29,390.48 409.17,390.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.64,390.5 409.64,390.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.64,390.49 409.64,390.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.64,390.47 409.63,390.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.63,390.45 409.62,390.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.62,390.44 409.6,390.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.6,390.42 409.59,390.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.59,390.41 409.57,390.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.57,390.4 409.55,390.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.55,390.4 409.54,390.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.05,390.71 408.9,390.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.04,390.51 408.9,390.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.64,389.04 409.54,389.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.72,388.92 409.67,388.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.67,388.79 409.6,388.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.6,388.67 409.52,388.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.52,388.57 409.41,388.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.96,389.04 409.96,389.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.96,389.02 409.95,389" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.95,389 409.95,388.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.95,388.99 409.93,388.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.93,388.97 409.92,388.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.92,388.96 409.91,388.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.91,388.95 409.89,388.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.89,388.94 409.87,388.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.87,388.94 409.85,388.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.75,388.94 409.85,388.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.64,389.04 409.65,389.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.65,389.01 409.67,388.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.67,388.97 409.69,388.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.69,388.95 409.73,388.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.73,388.94 409.75,388.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.75,390.25 409.85,390.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.96,390.14 409.95,390.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.95,390.18 409.93,390.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.93,390.21 409.91,390.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.91,390.24 409.87,390.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.87,390.25 409.85,390.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.72,390.35 409.74,390.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.74,390.32 409.74,390.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.74,390.29 409.75,390.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.64,390.14 409.64,390.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.64,390.16 409.65,390.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.65,390.18 409.66,390.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.66,390.2 409.67,390.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.67,390.21 409.68,390.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.68,390.22 409.69,390.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.69,390.24 409.71,390.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.71,390.24 409.73,390.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.73,390.25 409.75,390.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.96,390.14 409.96,389.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.64,390.14 409.64,389.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.9,388.3 408.6,388.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.6,388.3 408.47,388.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.47,388.31 408.35,388.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.35,388.34 408.23,388.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.17,388.34 409.04,388.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.3,388.4 409.17,388.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.04,388.31 408.9,388.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.88,388 398.53,388 398.53,392.64 395.88,392.64 395.88,388" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.96,391.19 407.9,391.11 407.82,391.08 407.71,391.08 407.63,391.11 407.58,391.19 407.58,391.26 407.6,391.33 407.63,391.37 407.68,391.4 407.85,391.48 407.9,391.51 407.93,391.55 407.96,391.62 407.96,391.73 407.9,391.8 407.82,391.84 407.71,391.84 407.63,391.8 407.58,391.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.31,391.08 408.31,391.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.12,391.08 408.5,391.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.77,391.08 408.72,391.11 408.66,391.19 408.64,391.26 408.61,391.37 408.61,391.55 408.64,391.66 408.66,391.73 408.72,391.8 408.77,391.84 408.88,391.84 408.94,391.8 408.99,391.73 409.02,391.66 409.04,391.55 409.04,391.37 409.02,391.26 408.99,391.19 408.94,391.11 408.88,391.08 408.77,391.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.37,391.08 409.32,391.11 409.26,391.19 409.23,391.26 409.21,391.37 409.21,391.55 409.23,391.66 409.26,391.73 409.32,391.8 409.37,391.84 409.48,391.84 409.53,391.8 409.59,391.73 409.62,391.66 409.64,391.55 409.64,391.37 409.62,391.26 409.59,391.19 409.53,391.11 409.48,391.08 409.37,391.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.81,391.08 409.81,391.84 410.13,391.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.8,413.82 403.8,405.86 400.48,405.86 400.48,413.82 403.8,413.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.8,413.82 411.75,413.82 411.75,410.5 403.8,410.5 403.8,413.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="399.55,406.61 399.74,406.65 399.89,406.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="399.89,409.09 399.74,409.21 399.55,409.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="397.74,409.09 399.89,409.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="399.89,406.77 397.74,406.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="397.61,409.26 399.55,409.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="397.61,409.26 397.48,409.22 397.4,409.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="397.74,409.09 397.6,409.05 397.52,408.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="397.52,408.93 397.41,407.93 397.52,406.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="397.52,406.93 397.6,406.82 397.74,406.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="399.55,406.61 397.61,406.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="397.4,409.11 397.24,407.93 397.4,406.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="397.4,406.76 397.48,406.65 397.61,406.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="399.89,409.09 399.89,406.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.1,413.04 411.75,413.04 411.75,410.5 410.1,410.5 410.1,413.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.1,410.5 411.75,413.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.49,410.35 411.38,410.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.37,397.23 411.1,397.23 411.07,397.55 411.1,397.52 411.18,397.48 411.26,397.48 411.34,397.52 411.4,397.59 411.42,397.7 411.42,397.77 411.4,397.88 411.34,397.95 411.26,397.99 411.18,397.99 411.1,397.95 411.07,397.92 411.04,397.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.33,396.9 405.33,399.55 407.99,399.55 407.99,396.9 405.33,396.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.33,399.55 405.8,400.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406,399.55 407.17,400.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.79,398.31 407.99,398.31 407.99,396.9 411.79,396.9 411.79,398.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="399.16,399.46 399.12,399.65 399,399.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="396.68,399.8 396.55,399.65 396.51,399.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="396.68,397.64 396.68,399.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="399,399.8 399,397.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="396.51,397.52 396.51,399.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="396.51,397.52 396.55,397.39 396.66,397.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="396.68,397.64 396.72,397.51 396.84,397.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="396.84,397.43 397.84,397.31 398.84,397.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="398.84,397.43 398.95,397.51 399,397.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="399.16,399.46 399.16,397.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="396.66,397.31 397.84,397.15 399.01,397.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="399.01,397.31 399.12,397.39 399.16,397.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="396.68,399.8 399,399.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="396.11,417.61 399.43,417.61 399.43,415.51 399.43,415.51 399.25,414.84 398.77,414.36 398.1,414.18 397.44,414.18 397.44,414.18 396.78,414.36 396.29,414.84 396.11,415.51 396.11,417.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="396.45,417.61 399.1,417.61 399.1,415.51 399.1,415.51 398.97,415.01 398.6,414.64 398.1,414.51 397.44,414.51 397.44,414.51 396.94,414.64 396.58,415.01 396.45,415.51 396.45,417.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="396.22,418.32 396.61,418.15 396.88,417.68 396.94,417.06 396.77,416.5 396.42,416.16 396.01,416.16 395.67,416.5 395.5,417.06 395.55,417.68 395.82,418.15 396.22,418.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.14,417.51 399.82,417.51 399.82,415.41 399.82,415.41 400,414.75 400.49,414.27 401.15,414.09 401.81,414.09 401.81,414.09 402.48,414.27 402.96,414.75 403.14,415.41 403.14,417.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.81,417.51 400.16,417.51 400.16,415.41 400.16,415.41 400.29,414.92 400.65,414.55 401.15,414.42 401.81,414.42 401.81,414.42 402.31,414.55 402.68,414.92 402.81,415.41 402.81,417.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.04,418.23 402.64,418.05 402.37,417.59 402.31,416.97 402.48,416.41 402.83,416.07 403.24,416.07 403.59,416.41 403.76,416.97 403.7,417.59 403.43,418.05 403.04,418.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.07,428.73 372.07,422.1 375.39,422.1 375.39,428.73 372.07,428.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.57,426.07 375.5,425.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.49,424.89 375.56,424.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.82,425.56 377.82,425.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.62,425.56 377.63,425.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.45,424.44 377.47,424.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.5,424.63 376.18,424.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.47,424.45 377.5,424.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.5,424.48 377.52,424.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.52,424.5 377.54,424.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.82,425.41 377.82,425.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.63,425.41 377.62,425.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.61,424.52 377.62,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.62,424.52 377.64,424.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.64,424.53 377.65,424.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.65,424.53 377.67,424.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.67,424.54 377.68,424.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.68,424.55 377.69,424.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.72,424.63 377.69,424.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.75,424.72 377.72,424.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.78,424.83 377.75,424.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.82,425.25 377.81,425.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.81,425.1 377.8,424.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.8,424.96 377.78,424.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.56,424.77 377.53,424.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.5,424.63 377.5,424.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.5,424.61 377.51,424.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.51,424.59 377.51,424.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.51,424.57 377.52,424.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.52,424.56 377.54,424.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.54,424.55 377.55,424.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.55,424.54 377.57,424.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.57,424.53 377.59,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.59,424.52 377.61,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.53,424.69 377.5,424.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.62,425.27 377.61,425.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.58,424.88 377.56,424.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.61,425.13 377.6,424.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.6,424.99 377.58,424.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.56,424.77 375.64,424.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.64,424.67 375.74,424.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.74,424.59 375.85,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.85,424.52 375.96,424.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.96,424.42 375.96,424.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.07,424.52 376.18,424.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.96,424.31 375.97,424.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.97,424.29 375.97,424.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.97,424.27 375.98,424.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.98,424.26 375.99,424.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.99,424.24 376,424.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376,424.23 376.02,424.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.02,424.22 376.03,424.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.03,424.21 376.05,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.05,424.2 376.07,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.96,424.42 375.97,424.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.97,424.45 375.99,424.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.99,424.48 376.02,424.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.02,424.51 376.05,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.05,424.52 376.07,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.35,424.31 377.34,424.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.34,424.27 377.33,424.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.33,424.24 377.3,424.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.3,424.22 377.26,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.26,424.2 377.25,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.35,424.42 377.35,424.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.35,424.42 377.35,424.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.35,424.43 377.34,424.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.34,424.45 377.34,424.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.34,424.47 377.33,424.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.33,424.48 377.31,424.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.31,424.5 377.3,424.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.3,424.51 377.28,424.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.28,424.51 377.26,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.26,424.52 377.25,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.35,424.42 377.38,424.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.38,424.42 377.42,424.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.42,424.43 377.45,424.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.25,424.52 376.07,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.25,424.2 376.07,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.48,426.36 377.45,426.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.25,426.2 377.5,426.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.55,426.28 377.53,426.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.53,426.31 377.51,426.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.51,426.34 377.48,426.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.7,426.25 377.69,426.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.69,426.27 377.67,426.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.67,426.28 377.66,426.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.66,426.29 377.64,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.64,426.3 377.62,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.62,426.3 377.61,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.72,426.19 377.75,426.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.69,426.25 377.72,426.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.8,425.86 377.81,425.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.75,426.1 377.78,425.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.78,425.98 377.8,425.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.53,426.13 377.56,426.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.5,426.2 377.53,426.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.6,425.83 377.61,425.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.56,426.05 377.58,425.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.58,425.95 377.6,425.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.61,426.3 377.59,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.59,426.3 377.57,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.57,426.3 377.55,426.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.55,426.29 377.54,426.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.54,426.28 377.52,426.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.52,426.26 377.51,426.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.51,426.25 377.51,426.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.51,426.23 377.5,426.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.5,426.21 377.5,426.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.81,425.72 377.82,425.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.61,425.7 377.62,425.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.14,426.3 376.25,426.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.02,426.38 375.89,426.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.89,426.33 375.77,426.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.77,426.26 375.67,426.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.67,426.18 375.57,426.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.14,426.62 376.12,426.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.12,426.62 376.11,426.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.11,426.61 376.09,426.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.09,426.61 376.07,426.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.07,426.6 376.06,426.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.06,426.58 376.05,426.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.05,426.57 376.04,426.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.04,426.55 376.04,426.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.04,426.53 376.04,426.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.04,426.41 376.04,426.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.14,426.3 376.11,426.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.11,426.31 376.07,426.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.07,426.33 376.05,426.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.05,426.36 376.04,426.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.04,426.39 376.04,426.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.35,426.41 377.35,426.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.25,426.62 377.28,426.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.28,426.61 377.31,426.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.31,426.6 377.34,426.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.34,426.57 377.35,426.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.35,426.53 377.35,426.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.45,426.38 377.42,426.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.42,426.4 377.39,426.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.39,426.41 377.35,426.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.25,426.3 377.26,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.26,426.3 377.28,426.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.28,426.31 377.3,426.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.3,426.32 377.31,426.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.31,426.33 377.33,426.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.33,426.34 377.34,426.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.34,426.36 377.34,426.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.34,426.37 377.35,426.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.35,426.39 377.35,426.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.25,426.62 376.14,426.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.25,426.3 376.14,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.4,425.56 375.4,425.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.4,425.26 375.41,425.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.41,425.13 375.44,425.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.44,425.01 375.49,424.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.44,425.83 375.41,425.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.5,425.96 375.44,425.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.41,425.7 375.4,425.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.07,435.36 372.07,428.73 375.39,428.73 375.39,435.36 372.07,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.86,431.86 375.78,431.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.77,430.67 375.84,430.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.1,431.35 378.11,431.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.91,431.34 377.91,431.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.73,430.22 377.76,430.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.78,430.41 376.46,430.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.76,430.24 377.78,430.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.78,430.26 377.8,430.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.8,430.28 377.82,430.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.11,431.19 378.1,431.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.91,431.19 377.91,431.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.89,430.3 377.91,430.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.91,430.31 377.92,430.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.92,430.31 377.94,430.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.94,430.32 377.95,430.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.95,430.32 377.96,430.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.96,430.33 377.97,430.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.01,430.41 377.97,430.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.03,430.5 378.01,430.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.06,430.61 378.03,430.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.1,431.03 378.09,430.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.09,430.88 378.08,430.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.08,430.74 378.06,430.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.84,430.55 377.81,430.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.78,430.41 377.78,430.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.78,430.39 377.79,430.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.79,430.37 377.8,430.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.8,430.36 377.81,430.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.81,430.34 377.82,430.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.82,430.33 377.84,430.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.84,430.32 377.85,430.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.85,430.31 377.87,430.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.87,430.31 377.89,430.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.81,430.47 377.78,430.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.91,431.05 377.9,430.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.86,430.66 377.84,430.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.9,430.91 377.88,430.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.88,430.78 377.86,430.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.84,430.56 375.92,430.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.92,430.46 376.02,430.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.02,430.37 376.13,430.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.13,430.3 376.25,430.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.25,430.2 376.25,430.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.35,430.3 376.46,430.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.25,430.09 376.25,430.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.25,430.07 376.25,430.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.25,430.06 376.26,430.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.26,430.04 376.27,430.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.27,430.02 376.29,430.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.29,430.01 376.3,430" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.3,430 376.32,429.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.32,429.99 376.33,429.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.33,429.99 376.35,429.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.25,430.2 376.25,430.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.25,430.23 376.27,430.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.27,430.27 376.3,430.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.3,430.29 376.33,430.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.33,430.3 376.35,430.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.63,430.09 377.63,430.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.63,430.06 377.61,430.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.61,430.02 377.58,430" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.58,430 377.55,429.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.55,429.99 377.53,429.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.63,430.2 377.63,430.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.63,430.2 377.63,430.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.63,430.22 377.63,430.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.63,430.23 377.62,430.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.62,430.25 377.61,430.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.61,430.27 377.6,430.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.6,430.28 377.58,430.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.58,430.29 377.56,430.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.56,430.3 377.55,430.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.55,430.3 377.53,430.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.63,430.2 377.67,430.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.67,430.2 377.7,430.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.7,430.21 377.73,430.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.53,430.3 376.35,430.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.53,429.99 376.35,429.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.77,432.14 377.74,432.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.53,431.98 377.78,431.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.83,432.06 377.81,432.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.81,432.09 377.79,432.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.79,432.12 377.77,432.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.98,432.03 377.97,432.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.97,432.05 377.96,432.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.96,432.06 377.94,432.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.94,432.07 377.92,432.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.92,432.08 377.91,432.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.91,432.08 377.89,432.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.01,431.97 378.03,431.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.97,432.03 378.01,431.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.08,431.64 378.09,431.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.03,431.88 378.06,431.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.06,431.77 378.08,431.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.81,431.92 377.84,431.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.78,431.98 377.81,431.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.88,431.61 377.9,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.84,431.83 377.86,431.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.86,431.73 377.88,431.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.89,432.09 377.87,432.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.87,432.08 377.85,432.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.85,432.08 377.84,432.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.84,432.07 377.82,432.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.82,432.06 377.81,432.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.81,432.05 377.8,432.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.8,432.03 377.79,432.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.79,432.02 377.78,432" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.78,432 377.78,431.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.09,431.5 378.1,431.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.9,431.48 377.91,431.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.43,432.09 376.53,431.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.31,432.16 376.18,432.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.18,432.11 376.06,432.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.06,432.05 375.95,431.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.95,431.96 375.86,431.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.43,432.4 376.41,432.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.41,432.4 376.39,432.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.39,432.4 376.37,432.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.37,432.39 376.36,432.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.36,432.38 376.34,432.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.34,432.37 376.33,432.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.33,432.35 376.33,432.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.33,432.33 376.32,432.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.32,432.32 376.32,432.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.32,432.19 376.32,432.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.43,432.09 376.39,432.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.39,432.09 376.36,432.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.36,432.11 376.33,432.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.33,432.14 376.32,432.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.32,432.17 376.32,432.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.63,432.19 377.63,432.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.53,432.4 377.56,432.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.56,432.4 377.6,432.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.6,432.38 377.62,432.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.62,432.35 377.63,432.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.63,432.32 377.63,432.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.74,432.16 377.7,432.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.7,432.18 377.67,432.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.67,432.19 377.63,432.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.53,432.09 377.55,432.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.55,432.09 377.56,432.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.56,432.09 377.58,432.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.58,432.1 377.6,432.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.6,432.11 377.61,432.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.61,432.12 377.62,432.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.62,432.14 377.63,432.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.63,432.16 377.63,432.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.63,432.17 377.63,432.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.53,432.4 376.43,432.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.53,432.09 376.43,432.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.68,431.34 375.68,431.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.68,431.05 375.69,430.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.69,430.92 375.72,430.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.72,430.79 375.77,430.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.73,431.61 375.69,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.78,431.74 375.73,431.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.69,431.48 375.68,431.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.85,433.7 372.85,435.36 375.39,435.36 375.39,433.7 372.85,433.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.39,433.7 372.85,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.54,434.1 375.54,434.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.85,423.76 372.85,422.1 375.39,422.1 375.39,423.76 372.85,423.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.39,423.76 372.85,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.54,423.36 375.54,422.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.02,433.7 371.02,435.36 368.48,435.36 368.48,433.7 371.02,433.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.48,433.7 371.02,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.33,434.1 368.33,434.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.02,423.76 371.02,422.1 368.48,422.1 368.48,423.76 371.02,423.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.48,423.76 371.02,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.33,423.36 368.33,422.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="355.33,433.7 355.33,435.36 357.87,435.36 357.87,433.7 355.33,433.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.87,433.7 355.33,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.02,434.1 358.02,434.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="355.33,423.87 355.33,422.21 357.87,422.21 357.87,423.87 355.33,423.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.87,423.87 355.33,422.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.02,423.47 358.02,422.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.29,370.66 384.59,370.66 384.59,367.35 378.29,367.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.59,367.35 381.94,367.35 381.94,362.71 384.59,362.71 384.59,367.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.59,360.05 384.59,362.71 376.63,362.71 376.63,360.05 384.59,360.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.33,360.05 371.33,362.7 373.98,362.7 373.98,360.05 371.33,360.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.33,362.7 371.8,363.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.99,362.7 373.16,363.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.63,360.16 374.98,360.16 374.98,362.71 376.63,362.71 376.63,360.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.63,362.71 374.98,360.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.24,362.85 375.35,362.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.29,360.16 376.63,360.16 376.63,362.71 378.29,362.71 378.29,360.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.29,362.71 376.63,360.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.9,362.85 377.01,362.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.89,371.04 385.93,370.85 386.06,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.38,370.7 388.5,370.85 388.54,371.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.38,372.86 388.38,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="386.06,370.7 386.06,372.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.54,372.98 388.54,371.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.54,372.98 388.5,373.11 388.39,373.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.38,372.86 388.33,372.99 388.22,373.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.22,373.07 387.22,373.19 386.22,373.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="386.22,373.07 386.1,372.99 386.06,372.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.89,371.04 385.89,372.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.39,373.19 387.22,373.35 386.04,373.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="386.04,373.19 385.93,373.11 385.89,372.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.38,370.7 386.06,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.86,371.04 391.81,370.85 391.69,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.37,370.7 389.25,370.85 389.21,371.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.37,372.86 389.37,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.69,370.7 391.69,372.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.21,372.98 389.21,371.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.21,372.98 389.25,373.11 389.36,373.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.37,372.86 389.42,372.99 389.53,373.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.53,373.07 390.53,373.19 391.53,373.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.53,373.07 391.65,372.99 391.69,372.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.86,371.04 391.86,372.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.36,373.19 390.53,373.35 391.71,373.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.71,373.19 391.82,373.11 391.86,372.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.37,370.7 391.69,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="392.11,363.73 391.43,363.44 390.68,363.45 390.01,363.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="390.57,363.89 390.28,364 390.13,364.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="390.57,363.89 391.54,363.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.98,364.28 391.84,364 391.54,363.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="392.02,363.86 391.4,363.6 390.72,363.61 390.1,363.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="392.02,363.86 392.11,363.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="390.1,363.89 390.01,363.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.99,365.47 390.04,365.74 390.24,365.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="390.24,365.93 391.06,366.1 391.87,365.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.99,365.47 390.13,364.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.87,365.93 392.07,365.74 392.13,365.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.98,364.28 392.13,365.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.39,370.18 385.09,370.18 385.09,366.87 391.39,366.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.09,366.87 387.74,366.87 387.74,362.23 385.09,362.23 385.09,366.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.09,359.57 385.09,362.23 393.05,362.23 393.05,359.57 385.09,359.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.73,359.68 391.39,359.68 391.39,362.23 389.73,362.23 389.73,359.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.73,362.23 391.39,359.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="390.13,362.38 391.01,362.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.39,359.68 393.05,359.68 393.05,362.23 391.39,362.23 391.39,359.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.39,362.23 393.05,359.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.79,362.38 392.67,362.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.05,359.57 393.05,362.22 395.7,362.22 395.7,359.57 393.05,359.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.05,362.22 393.52,362.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.71,362.22 394.88,363.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="397.67,368.91 397.41,369.42 397.81,369.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="397.67,368.91 397.68,369.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="396.94,369.84 396.94,366.03 398.35,366.03 398.35,369.84 396.94,369.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="396.58,363.97 396.8,363.97 396.8,361.32 396.58,361.32 396.58,363.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.37,362.54 395.37,362.76 398.02,362.76 398.02,362.54 395.37,362.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="396.58,362.64 396.61,362.57 396.69,362.53 396.77,362.57 396.8,362.64 396.77,362.72 396.69,362.75 396.61,362.72 396.58,362.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.68,371.04 346.63,370.85 346.51,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="344.19,370.7 344.07,370.85 344.02,371.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="344.19,372.86 344.19,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.51,370.7 346.51,372.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="344.02,372.98 344.02,371.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="344.02,372.98 344.07,373.11 344.18,373.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="344.19,372.86 344.23,372.99 344.35,373.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="344.35,373.07 345.35,373.19 346.35,373.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.35,373.07 346.47,372.99 346.51,372.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.68,371.04 346.68,372.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="344.18,373.19 345.35,373.35 346.52,373.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.52,373.19 346.63,373.11 346.68,372.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="344.19,370.7 346.51,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="340.71,371.04 340.75,370.85 340.87,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="343.2,370.7 343.32,370.85 343.36,371.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="343.2,372.86 343.2,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="340.87,370.7 340.87,372.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="343.36,372.98 343.36,371.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="343.36,372.98 343.32,373.11 343.21,373.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="343.2,372.86 343.15,372.99 343.03,373.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="343.03,373.07 342.04,373.19 341.04,373.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="341.04,373.07 340.92,372.99 340.87,372.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="340.71,371.04 340.71,372.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="343.21,373.19 342.04,373.35 340.86,373.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="340.86,373.19 340.75,373.11 340.71,372.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="343.2,370.7 340.87,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="340.45,363.73 341.14,363.44 341.88,363.44 342.56,363.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="341.99,363.89 342.29,364 342.43,364.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="341.99,363.89 341.02,363.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="340.59,364.28 340.73,364 341.02,363.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="340.55,363.86 341.17,363.6 341.85,363.61 342.46,363.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="340.55,363.86 340.45,363.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="342.46,363.89 342.56,363.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="342.58,365.47 342.53,365.74 342.32,365.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="342.32,365.93 341.51,366.1 340.7,365.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="342.58,365.47 342.43,364.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="340.7,365.93 340.49,365.74 340.44,365.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="340.59,364.28 340.44,365.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="341.18,370.18 347.48,370.18 347.48,366.87 341.18,366.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.48,366.87 344.82,366.87 344.82,362.23 347.48,362.23 347.48,366.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.48,359.57 347.48,362.23 339.52,362.23 339.52,359.57 347.48,359.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="334.27,359.57 334.27,362.22 336.92,362.22 336.92,359.57 334.27,359.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.64,362.22 334.11,362.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="334.93,362.22 336.1,363.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="339.52,359.68 337.86,359.68 337.86,362.23 339.52,362.23 339.52,359.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="339.52,362.23 337.86,359.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="339.12,362.37 338.24,362.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="341.18,359.68 339.52,359.68 339.52,362.23 341.18,362.23 341.18,359.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="341.18,362.23 339.52,359.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="340.78,362.37 339.9,362.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="292.55,376.47 292.55,368.54 289.23,368.54 289.23,376.47 292.55,376.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="284.59,371.19 284.59,368.54 289.23,368.54 289.23,371.19 284.59,371.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.96,371.19 298.31,371.19 298.31,368.54 300.96,368.54 300.96,371.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.31,371.19 297.84,370.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.31,370.52 297.13,369.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.83,370.95 293.87,371.14 293.99,371.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.31,371.29 296.43,371.14 296.48,370.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.31,369.13 296.31,371.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.99,371.29 293.99,369.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.48,369.01 296.48,370.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.48,369.01 296.44,368.88 296.33,368.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.31,369.13 296.27,369 296.15,368.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.15,368.92 295.15,368.8 294.15,368.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.15,368.92 294.04,369 293.99,369.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.83,370.95 293.83,369.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.33,368.8 295.15,368.63 293.98,368.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.98,368.8 293.87,368.88 293.83,369.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.31,371.29 293.99,371.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.24,374.97 299.46,374.97 299.46,372.32 299.24,372.32 299.24,374.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.03,373.53 298.03,373.75 300.68,373.75 300.68,373.53 298.03,373.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.24,373.64 299.27,373.56 299.35,373.53 299.43,373.56 299.46,373.64 299.43,373.72 299.35,373.75 299.27,373.72 299.24,373.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.9,357.28 300.9,356.95 286.34,356.95 286.34,357.28 300.9,357.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.24,363.25 300.9,363.25 300.9,357.28 301.24,357.28 301.24,363.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.21,363.7 289.89,363.99 290.64,363.98 291.32,363.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.75,363.54 291.04,363.43 291.19,363.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.75,363.54 289.78,363.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.34,363.14 289.48,363.43 289.78,363.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.3,363.56 289.93,363.83 290.6,363.82 291.22,363.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.3,363.56 289.21,363.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="291.22,363.54 291.32,363.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="291.34,361.95 291.28,361.69 291.08,361.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="291.08,361.5 290.26,361.33 289.45,361.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="291.34,361.95 291.19,363.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.45,361.5 289.25,361.69 289.19,361.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.34,363.14 289.19,361.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="292.97,357.28 286.36,357.28 286.36,360.6 292.97,360.6 292.97,357.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.24,365.24 284.59,365.24 284.59,360.6 287.24,360.6 287.24,365.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="284.7,363.58 284.7,365.24 287.24,365.24 287.24,363.58 284.7,363.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.24,363.58 284.7,365.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.39,363.98 287.39,364.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="284.59,365.24 287.24,365.24 287.24,367.89 284.59,367.89 284.59,365.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.81,339 286.52,339.68 286.53,340.43 286.84,341.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.97,340.54 287.09,340.83 287.37,340.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.97,340.54 286.97,339.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.37,339.13 287.09,339.27 286.97,339.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.95,339.09 286.69,339.71 286.69,340.39 286.97,341.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.95,339.09 286.81,339" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.97,341.01 286.84,341.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.56,341.13 288.83,341.07 289.01,340.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.01,340.87 289.19,340.05 289.01,339.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.56,341.13 287.37,340.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.01,339.24 288.83,339.04 288.56,338.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.37,339.13 288.56,338.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.23,342.76 293.23,334.82 289.91,334.82 289.91,342.76 293.23,342.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="285.27,337.47 285.27,334.82 289.91,334.82 289.91,337.47 285.27,337.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.24,365.24 287.71,365.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.24,365.9 288.42,367.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.59,337.8 298.59,335.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.97,338.8 298.97,334.82 300.96,334.82 300.96,338.8 298.97,338.8 300.96,334.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.46,337.73 300.19,338.24 300.6,338.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.46,337.73 300.47,338.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.76,352.23 289.45,352.52 290.2,352.51 290.87,352.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.31,352.07 290.6,351.96 290.75,351.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.31,352.07 289.34,352.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.9,351.67 289.04,351.96 289.34,352.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.86,352.09 289.48,352.36 290.16,352.35 290.78,352.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.86,352.09 288.76,352.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.78,352.07 290.87,352.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.89,350.48 290.84,350.21 290.64,350.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.64,350.03 289.82,349.86 289.01,350.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.89,350.48 290.75,351.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.01,350.03 288.8,350.21 288.75,350.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.9,351.67 288.75,350.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="292.53,345.81 284.59,345.81 284.59,349.13 292.53,349.13 292.53,345.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.24,353.77 284.59,353.77 284.59,349.13 287.24,349.13 287.24,353.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.87,346.59 292.53,346.59 292.53,349.13 290.87,349.13 290.87,346.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.87,349.13 292.53,346.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="291.26,349.28 292.15,349.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.96,348.46 298.31,348.46 298.31,345.81 300.96,345.81 300.96,348.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.31,348.46 297.84,348" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.31,347.8 297.13,346.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.9,356.95 297.1,356.95 297.1,355.54 300.9,355.54 300.9,356.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.34,356.02 300.64,356.02 300.48,356.31 300.56,356.31 300.62,356.34 300.65,356.38 300.67,356.49 300.67,356.56 300.65,356.67 300.59,356.74 300.51,356.78 300.43,356.78 300.35,356.74 300.32,356.71 300.29,356.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="291.64,356.84 291.64,356.95 295.61,356.95 295.61,356.84 291.64,356.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.96,334.82 300.96,334.49 284.59,334.49 284.59,334.82 300.96,334.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.29,340.79 300.96,340.79 300.96,334.82 301.29,334.82 301.29,340.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.79,348.12 295.75,348.31 295.63,348.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.31,348.46 293.18,348.31 293.14,348.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.31,346.31 293.31,348.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.63,348.46 295.63,346.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.14,346.18 293.14,348.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.14,346.18 293.18,346.05 293.29,345.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.31,346.31 293.35,346.17 293.47,346.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.47,346.09 294.47,345.98 295.47,346.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.47,346.09 295.58,346.17 295.63,346.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.79,348.12 295.79,346.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.29,345.97 294.47,345.81 295.64,345.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.64,345.97 295.75,346.05 295.79,346.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.31,348.46 295.63,348.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.29,323.62 300.96,323.62 300.96,330.25 301.29,330.25 301.29,323.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.7,323.63 294.7,330.29 291.39,330.29 291.39,323.63 294.7,323.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.52,325.19 293.6,325.14 293.63,325.06 293.63,324.95 293.6,324.87 293.52,324.81 293.45,324.81 293.38,324.84 293.34,324.87 293.31,324.92 293.23,325.09 293.2,325.14 293.16,325.17 293.09,325.19 292.98,325.19 292.91,325.14 292.87,325.06 292.87,324.95 292.91,324.87 292.98,324.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="292.87,325.36 293.63,325.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.63,325.77 292.87,325.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.63,325.58 293.63,325.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.78,326.55 292.62,326.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.52,327.04 293.6,326.99 293.63,326.91 293.63,326.8 293.6,326.72 293.52,326.66 293.45,326.66 293.38,326.69 293.34,326.72 293.31,326.77 293.23,326.94 293.2,326.99 293.16,327.02 293.09,327.04 292.98,327.04 292.91,326.99 292.87,326.91 292.87,326.8 292.91,326.72 292.98,326.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.63,327.4 292.87,327.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.63,327.21 293.63,327.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="292.87,327.7 293.63,327.91 292.87,328.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.12,327.78 293.12,328.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="292.87,328.29 293.63,328.29 292.87,328.68 293.63,328.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="292.87,328.89 293.63,328.89 293.63,329.08 293.6,329.16 293.52,329.22 293.45,329.25 293.34,329.27 293.16,329.27 293.05,329.25 292.98,329.22 292.91,329.16 292.87,329.08 292.87,328.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.52,329.22 288.23,328.54 288.24,327.79 288.54,327.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.68,327.68 288.79,327.39 289.07,327.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.68,327.68 288.68,328.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.07,329.09 288.79,328.95 288.68,328.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.65,329.13 288.39,328.51 288.4,327.83 288.68,327.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.65,329.13 288.52,329.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.68,327.21 288.54,327.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.26,327.09 290.53,327.15 290.72,327.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.72,327.35 290.89,328.17 290.72,328.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.26,327.09 289.07,327.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="290.72,328.98 290.53,329.18 290.26,329.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.07,329.09 290.26,329.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.93,334.93 285.27,334.93 285.27,337.47 286.93,337.47 286.93,334.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.93,337.47 285.27,334.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.53,337.62 285.65,337.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="292.46,342.76 292.46,341.1 289.91,341.1 289.91,342.76 292.46,342.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.91,342.76 292.46,341.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.77,342.36 289.77,341.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.33,327.92 295.14,327.96 294.99,328.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.99,330.4 295.14,330.53 295.33,330.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.14,330.4 294.99,330.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.99,328.08 297.14,328.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.27,330.57 295.33,330.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.27,330.57 297.4,330.53 297.48,330.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.14,330.4 297.28,330.36 297.36,330.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.36,330.24 297.47,329.24 297.36,328.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.36,328.24 297.28,328.13 297.14,328.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.33,327.92 297.27,327.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.48,330.42 297.64,329.24 297.48,328.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.48,328.07 297.4,327.96 297.27,327.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.99,330.4 294.99,328.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.84,312.2 309.84,309.54 308.32,309.54 308.32,312.2 309.84,312.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.57,303.87 285.58,303.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.57,303.48 287.9,303.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.24,303.48 285.92,303.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="285.25,303.48 284.59,303.48 284.59,302.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="284.59,302.16 284.59,301.5 285.25,301.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="285.92,301.5 287.24,301.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.9,301.5 288.57,301.5 288.57,302.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.57,302.82 288.57,303.48 287.76,303.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.17,302.79 285.99,302.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="285.39,301.9 284.59,301.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.82,301.8 288.12,301.8 287.96,302.09 288.04,302.09 288.1,302.12 288.12,302.16 288.15,302.27 288.15,302.34 288.13,302.45 288.07,302.52 287.99,302.56 287.91,302.56 287.83,302.52 287.8,302.49 287.77,302.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="291.55,303.87 289.56,303.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="292.55,303.48 291.88,303.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="291.22,303.48 289.89,303.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.23,303.48 288.57,303.48 288.57,302.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.57,302.16 288.57,301.5 289.23,301.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.89,301.5 291.22,301.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="291.88,301.5 292.55,301.5 292.55,302.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="292.55,302.82 292.55,303.48 291.74,303.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="291.15,302.79 289.96,302.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.37,301.9 288.57,301.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="291.8,301.8 292.1,301.8 291.94,302.09 292.02,302.09 292.08,302.12 292.1,302.16 292.13,302.27 292.13,302.34 292.11,302.45 292.05,302.52 291.97,302.56 291.89,302.56 291.81,302.52 291.78,302.49 291.75,302.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="322.52,359.04 322.56,359.23 322.68,359.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="325,359.38 325.13,359.23 325.17,359.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="325,357.22 325,359.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="322.68,359.38 322.68,357.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="325.17,357.1 325.17,359.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="325.17,357.1 325.13,356.97 325.02,356.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="325,357.22 324.96,357.09 324.84,357.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.84,357.01 323.84,356.9 322.84,357.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="322.84,357.01 322.73,357.09 322.68,357.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="322.52,359.04 322.52,357.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="325.02,356.89 323.84,356.73 322.67,356.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="322.67,356.89 322.56,356.97 322.52,357.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="325,359.38 322.68,359.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.22,360.64 326.03,360.69 325.88,360.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="325.88,363.13 326.03,363.25 326.22,363.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.04,363.13 325.88,363.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="325.88,360.81 328.04,360.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.16,363.3 326.22,363.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.16,363.3 328.29,363.26 328.37,363.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.04,363.13 328.17,363.09 328.25,362.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.25,362.97 328.37,361.97 328.25,360.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.25,360.97 328.17,360.86 328.04,360.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.22,360.64 328.16,360.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.37,363.15 328.53,361.97 328.37,360.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.37,360.8 328.29,360.69 328.16,360.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="325.88,363.13 325.88,360.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.41,396.59 320.41,393.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.06,393.61 323.06,396.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="322.84,396.82 320.63,396.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="322.84,396.82 323,396.75 323.06,396.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.41,396.59 320.48,396.75 320.63,396.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="322.62,393.61 320.85,393.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.85,393.61 320.54,393.74 320.41,394.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.06,394.05 322.94,393.74 322.62,393.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.06,397.26 320.41,397.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="319.97,396.82 320.1,397.13 320.41,397.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="319.97,396.82 319.97,394.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.41,393.61 320.1,393.74 319.97,394.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.51,394.05 323.38,393.74 323.06,393.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.51,394.05 323.51,396.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.06,397.26 323.38,397.13 323.51,396.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.02,385.32 323.02,390.63 320.8,390.63 320.8,385.32 323.02,385.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="319.78,412.96 319.78,410.31 318.26,410.31 318.26,412.96 319.78,412.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.53,389.51 332.21,389.8 332.96,389.79 333.63,389.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.07,389.35 333.36,389.23 333.51,388.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.07,389.35 332.1,389.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.66,388.95 331.8,389.23 332.1,389.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.62,389.37 332.24,389.64 332.92,389.63 333.54,389.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.62,389.37 331.53,389.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.54,389.35 333.63,389.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.65,387.76 333.6,387.49 333.4,387.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.4,387.31 332.58,387.13 331.77,387.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="333.65,387.76 333.51,388.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.77,387.31 331.57,387.49 331.51,387.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="331.66,388.95 331.51,387.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="335.31,383.5 327.38,383.5 327.38,386.82 335.31,386.82 335.31,383.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.03,391.46 327.38,391.46 327.38,386.82 330.03,386.82 330.03,391.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.38,397.26 327.38,393.28 336.64,393.28 336.64,397.26 327.38,397.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.24,371.04 359.19,370.85 359.07,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.75,370.7 356.63,370.85 356.59,371.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.75,372.86 356.75,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.07,370.7 359.07,372.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.59,372.98 356.59,371.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.59,372.98 356.63,373.11 356.74,373.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.75,372.86 356.8,372.99 356.91,373.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.91,373.07 357.91,373.19 358.91,373.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.91,373.07 359.03,372.99 359.07,372.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.24,371.04 359.24,372.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.74,373.19 357.91,373.35 359.09,373.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.09,373.19 359.2,373.11 359.24,372.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.75,370.7 359.07,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="353.59,371.04 353.63,370.85 353.76,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.08,370.7 356.2,370.85 356.24,371.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.08,372.86 356.08,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="353.76,370.7 353.76,372.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.24,372.98 356.24,371.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.24,372.98 356.2,373.11 356.09,373.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.08,372.86 356.03,372.99 355.92,373.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="355.92,373.07 354.92,373.19 353.92,373.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="353.92,373.07 353.8,372.99 353.76,372.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="353.59,371.04 353.59,372.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.09,373.19 354.92,373.35 353.74,373.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="353.74,373.19 353.63,373.11 353.59,372.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.08,370.7 353.76,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="353.81,363.73 354.5,363.44 355.24,363.45 355.92,363.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="355.35,363.89 355.65,364 355.79,364.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="355.35,363.89 354.39,363.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="353.95,364.28 354.09,364 354.39,363.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="353.91,363.86 354.53,363.6 355.21,363.61 355.82,363.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="353.91,363.86 353.81,363.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="355.82,363.89 355.92,363.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="355.94,365.47 355.89,365.74 355.68,365.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="355.68,365.93 354.87,366.1 354.06,365.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="355.94,365.47 355.79,364.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.06,365.93 353.85,365.74 353.8,365.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="353.95,364.28 353.8,365.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.54,370.18 360.84,370.18 360.84,366.87 354.54,366.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.84,366.87 358.18,366.87 358.18,362.23 360.84,362.23 360.84,366.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.84,359.57 360.84,362.23 352.88,362.23 352.88,359.57 360.84,359.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.23,359.57 350.23,362.22 352.88,362.22 352.88,359.57 350.23,359.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.23,362.22 350.7,362.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.89,362.22 352.06,363.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.54,359.68 352.88,359.68 352.88,362.23 354.54,362.23 354.54,359.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.54,362.23 352.88,359.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.14,362.38 353.26,362.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.84,372.59 360.84,376.4 359.42,376.4 359.42,372.59 360.84,372.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.22,375.45 360.52,375.45 360.36,375.74 360.44,375.74 360.5,375.78 360.52,375.81 360.55,375.92 360.55,375.99 360.53,376.1 360.47,376.18 360.39,376.21 360.31,376.21 360.23,376.18 360.2,376.14 360.17,376.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.31,371.04 411.27,370.85 411.15,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.82,370.7 408.7,370.85 408.66,371.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.82,372.86 408.82,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.15,370.7 411.15,372.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.66,372.98 408.66,371.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.66,372.98 408.7,373.11 408.81,373.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.82,372.86 408.87,372.99 408.99,373.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.99,373.07 409.98,373.19 410.98,373.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.98,373.07 411.1,372.99 411.15,372.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.31,371.04 411.31,372.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.81,373.19 409.98,373.35 411.16,373.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.16,373.19 411.27,373.11 411.31,372.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.82,370.7 411.15,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.34,371.04 405.39,370.85 405.51,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.83,370.7 407.95,370.85 408,371.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.83,372.86 407.83,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.51,370.7 405.51,372.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408,372.98 408,371.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408,372.98 407.95,373.11 407.84,373.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.83,372.86 407.79,372.99 407.67,373.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.67,373.07 406.67,373.19 405.67,373.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.67,373.07 405.55,372.99 405.51,372.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.34,371.04 405.34,372.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.84,373.19 406.67,373.35 405.5,373.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.5,373.19 405.39,373.11 405.34,372.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.83,370.7 405.51,370.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.09,363.73 405.77,363.44 406.52,363.45 407.2,363.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.63,363.89 406.92,364 407.07,364.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.63,363.89 405.66,363.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.22,364.28 405.36,364 405.66,363.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.18,363.86 405.8,363.6 406.48,363.61 407.1,363.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.18,363.86 405.09,363.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.1,363.89 407.2,363.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.22,365.47 407.16,365.74 406.96,365.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.96,365.93 406.14,366.1 405.33,365.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.22,365.47 407.07,364.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.33,365.93 405.13,365.74 405.07,365.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.22,364.28 405.07,365.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.81,370.18 412.11,370.18 412.11,366.87 405.81,366.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="412.11,366.87 409.46,366.87 409.46,362.23 412.11,362.23 412.11,366.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="412.11,359.57 412.11,362.23 404.15,362.23 404.15,359.57 412.11,359.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.81,359.68 404.15,359.68 404.15,362.23 405.81,362.23 405.81,359.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.81,362.23 404.15,359.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.41,362.38 404.53,362.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.62,365.31 349.84,365.31 349.84,362.66 349.62,362.66 349.62,365.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.41,363.87 348.41,364.09 351.06,364.09 351.06,363.87 348.41,363.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.62,363.98 349.66,363.9 349.73,363.87 349.81,363.9 349.84,363.98 349.81,364.06 349.73,364.09 349.66,364.06 349.62,363.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="380.24,436.58 380.24,436.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.24,436.14 380.24,435.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.24,436.14 380.24,435.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="404.34,409.04 404.26,408.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.25,407.85 404.32,407.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.58,408.53 406.59,408.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.38,408.52 406.39,408.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.21,407.4 406.24,407.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.26,407.59 404.94,407.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.24,407.42 406.26,407.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.26,407.44 406.28,407.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.28,407.46 406.3,407.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.59,408.37 406.58,408.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.39,408.38 406.38,408.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.37,407.48 406.38,407.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.38,407.49 406.4,407.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.4,407.49 406.42,407.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.42,407.5 406.43,407.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.43,407.5 406.44,407.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.44,407.52 406.45,407.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.49,407.59 406.45,407.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.51,407.68 406.49,407.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.54,407.79 406.51,407.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.58,408.22 406.57,408.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.57,408.06 406.56,407.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.56,407.92 406.54,407.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.32,407.74 406.29,407.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.26,407.59 406.26,407.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.26,407.57 406.27,407.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.27,407.55 406.28,407.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.28,407.54 406.29,407.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.29,407.52 406.3,407.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.3,407.51 406.32,407.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.32,407.5 406.33,407.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.33,407.49 406.35,407.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.35,407.49 406.37,407.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.29,407.65 406.26,407.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.38,408.23 406.38,408.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.34,407.84 406.32,407.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.38,408.09 406.36,407.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.36,407.96 406.34,407.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.32,407.74 404.4,407.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.4,407.64 404.5,407.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.5,407.55 404.61,407.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.61,407.48 404.73,407.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.73,407.38 404.73,407.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.83,407.48 404.94,407.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.73,407.27 404.73,407.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.73,407.25 404.73,407.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.73,407.24 404.74,407.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.74,407.22 404.75,407.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.75,407.2 404.77,407.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.77,407.19 404.78,407.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.78,407.18 404.8,407.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.8,407.17 404.81,407.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.81,407.17 404.83,407.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.73,407.38 404.73,407.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.73,407.41 404.75,407.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.75,407.45 404.78,407.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.78,407.47 404.81,407.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.81,407.48 404.83,407.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,407.27 406.11,407.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,407.24 406.09,407.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.09,407.2 406.06,407.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.06,407.18 406.03,407.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.03,407.17 406.01,407.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,407.38 406.11,407.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,407.38 406.11,407.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,407.4 406.11,407.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,407.41 406.1,407.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.1,407.43 406.09,407.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.09,407.45 406.08,407.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.08,407.46 406.06,407.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.06,407.47 406.04,407.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.04,407.48 406.03,407.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.03,407.48 406.01,407.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,407.38 406.15,407.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.15,407.38 406.18,407.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.18,407.39 406.21,407.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.01,407.48 404.83,407.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.01,407.17 404.83,407.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.25,409.32 406.22,409.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.01,409.16 406.26,409.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.31,409.24 406.29,409.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.29,409.27 406.27,409.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.27,409.3 406.25,409.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.46,409.21 406.45,409.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.45,409.23 406.44,409.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.44,409.24 406.42,409.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.42,409.25 406.4,409.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.4,409.26 406.39,409.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.39,409.26 406.37,409.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.49,409.15 406.51,409.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.45,409.21 406.49,409.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.56,408.82 406.57,408.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.51,409.06 406.54,408.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.54,408.95 406.56,408.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.29,409.1 406.32,409.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.26,409.16 406.29,409.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.36,408.79 406.38,408.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.32,409.01 406.34,408.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.34,408.91 406.36,408.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.37,409.27 406.35,409.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.35,409.26 406.33,409.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.33,409.26 406.32,409.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.32,409.25 406.3,409.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.3,409.24 406.29,409.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.29,409.23 406.28,409.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.28,409.21 406.27,409.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.27,409.2 406.26,409.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.26,409.18 406.26,409.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.57,408.68 406.58,408.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.38,408.66 406.38,408.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.91,409.27 405.01,409.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.79,409.34 404.66,409.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.66,409.29 404.54,409.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.54,409.23 404.43,409.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.43,409.14 404.34,409.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.91,409.58 404.89,409.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.89,409.58 404.87,409.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.87,409.58 404.85,409.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.85,409.57 404.84,409.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.84,409.56 404.82,409.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.82,409.55 404.81,409.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.81,409.53 404.81,409.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.81,409.51 404.8,409.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.8,409.5 404.8,409.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.8,409.37 404.8,409.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.91,409.27 404.87,409.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.87,409.27 404.84,409.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.84,409.29 404.81,409.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.81,409.32 404.8,409.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.8,409.35 404.8,409.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,409.37 406.11,409.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.01,409.58 406.04,409.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.04,409.58 406.08,409.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.08,409.56 406.1,409.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.1,409.53 406.11,409.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,409.5 406.11,409.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.22,409.35 406.18,409.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.18,409.36 406.15,409.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.15,409.37 406.11,409.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.01,409.27 406.03,409.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.03,409.27 406.04,409.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.04,409.27 406.06,409.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.06,409.28 406.08,409.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.08,409.29 406.09,409.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.09,409.3 406.1,409.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.1,409.32 406.11,409.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,409.34 406.11,409.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,409.35 406.11,409.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.01,409.58 404.91,409.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.01,409.27 404.91,409.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.16,408.52 404.16,408.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.16,408.23 404.17,408.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.17,408.1 404.2,407.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.2,407.97 404.25,407.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.21,408.8 404.17,408.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.26,408.92 404.21,408.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.17,408.66 404.16,408.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.83,384.69 356.83,387.34 354.17,387.34 354.17,384.69 356.83,384.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.71,386.84 370.64,386.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.63,388.03 370.69,388.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.96,387.35 372.96,387.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.76,387.36 372.76,387.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.58,388.48 372.61,388.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.64,388.29 371.31,388.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.61,388.46 372.64,388.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.64,388.44 372.66,388.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.66,388.42 372.68,388.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.96,387.51 372.96,387.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.76,387.5 372.76,387.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.74,388.39 372.76,388.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.76,388.39 372.78,388.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.78,388.39 372.79,388.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.79,388.38 372.81,388.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.81,388.37 372.82,388.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.82,388.36 372.83,388.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.86,388.29 372.83,388.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.89,388.2 372.86,388.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.92,388.08 372.89,388.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.96,387.66 372.95,387.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.95,387.81 372.94,387.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.94,387.96 372.92,388.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.7,388.14 372.67,388.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.64,388.29 372.64,388.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.64,388.31 372.64,388.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.64,388.32 372.65,388.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.65,388.34 372.66,388.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.66,388.36 372.68,388.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.68,388.37 372.69,388.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.69,388.38 372.71,388.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.71,388.39 372.73,388.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.73,388.39 372.74,388.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.67,388.23 372.64,388.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.76,387.65 372.75,387.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.72,388.04 372.7,388.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.75,387.79 372.74,387.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.74,387.92 372.72,388.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.69,388.14 370.78,388.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.78,388.24 370.87,388.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.87,388.33 370.98,388.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.98,388.4 371.1,388.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.1,388.5 371.1,388.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.21,388.39 371.31,388.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.1,388.61 371.1,388.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.1,388.62 371.11,388.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.11,388.64 371.12,388.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.12,388.66 371.13,388.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.13,388.67 371.14,388.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.14,388.69 371.16,388.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.16,388.7 371.17,388.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.17,388.71 371.19,388.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.19,388.71 371.21,388.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.1,388.5 371.11,388.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.11,388.46 371.13,388.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.13,388.43 371.16,388.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.16,388.41 371.19,388.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.19,388.4 371.21,388.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.49,388.61 372.48,388.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.48,388.64 372.46,388.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.46,388.67 372.44,388.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.44,388.7 372.4,388.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.4,388.71 372.38,388.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.49,388.5 372.49,388.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.49,388.5 372.49,388.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.49,388.48 372.48,388.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.48,388.46 372.47,388.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.47,388.45 372.46,388.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.46,388.43 372.45,388.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.45,388.42 372.44,388.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.44,388.41 372.42,388.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.42,388.4 372.4,388.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.4,388.4 372.38,388.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.49,388.5 372.52,388.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.52,388.5 372.55,388.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.55,388.49 372.58,388.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.38,388.39 371.21,388.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.38,388.71 371.21,388.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.62,386.55 372.59,386.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.39,386.72 372.64,386.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.69,386.64 372.67,386.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.67,386.61 372.65,386.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.65,386.58 372.62,386.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.84,386.66 372.82,386.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.82,386.65 372.81,386.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.81,386.64 372.8,386.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.8,386.63 372.78,386.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.78,386.62 372.76,386.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.76,386.61 372.74,386.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.86,386.73 372.89,386.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.83,386.66 372.86,386.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.94,387.06 372.95,387.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.89,386.82 372.92,386.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.92,386.93 372.94,387.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.67,386.78 372.7,386.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.64,386.72 372.67,386.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.74,387.09 372.75,387.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.7,386.86 372.72,386.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.72,386.97 372.74,387.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.74,386.61 372.73,386.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.73,386.62 372.71,386.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.71,386.62 372.69,386.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.69,386.63 372.68,386.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.68,386.64 372.66,386.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.66,386.65 372.65,386.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.65,386.67 372.64,386.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.64,386.68 372.64,386.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.64,386.7 372.64,386.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.95,387.2 372.96,387.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.75,387.22 372.76,387.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.28,386.61 371.39,386.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.16,386.54 371.03,386.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.03,386.58 370.91,386.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.91,386.65 370.81,386.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.81,386.74 370.71,386.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.28,386.3 371.26,386.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.26,386.3 371.24,386.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.24,386.3 371.23,386.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.23,386.31 371.21,386.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.21,386.32 371.2,386.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.2,386.33 371.19,386.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.19,386.35 371.18,386.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.18,386.37 371.18,386.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.18,386.38 371.17,386.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.17,386.51 371.17,386.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.28,386.61 371.24,386.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.24,386.61 371.21,386.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.21,386.59 371.19,386.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.19,386.56 371.18,386.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.18,386.53 371.17,386.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.49,386.51 372.49,386.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.38,386.3 372.42,386.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.42,386.3 372.45,386.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.45,386.32 372.48,386.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.48,386.35 372.49,386.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.49,386.38 372.49,386.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.59,386.53 372.56,386.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.56,386.52 372.53,386.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.53,386.51 372.49,386.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.38,386.61 372.4,386.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.4,386.61 372.42,386.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.42,386.61 372.44,386.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.44,386.6 372.45,386.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.45,386.59 372.46,386.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.46,386.58 372.47,386.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.47,386.56 372.48,386.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.48,386.54 372.49,386.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.49,386.53 372.49,386.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.38,386.3 371.28,386.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.38,386.61 371.28,386.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.54,387.36 370.54,387.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.54,387.65 370.55,387.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.55,387.78 370.58,387.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.58,387.91 370.63,388.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.58,387.08 370.55,387.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.64,386.96 370.58,387.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.55,387.22 370.54,387.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="379.44,400.73 379.74,400.73 379.58,401.02 379.66,401.02 379.71,401.05 379.74,401.09 379.77,401.2 379.77,401.27 379.74,401.38 379.69,401.45 379.61,401.49 379.53,401.49 379.44,401.45 379.42,401.42 379.39,401.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.17,407.85 371.17,399.89 367.85,399.89 367.85,407.85 371.17,407.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.53,411.17 350,410.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.2,411.17 351.37,409.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.35,395.44 348.23,395.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.16,395.36 347.05,395.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.84,397.69 347.68,397.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.83,397.49 347.68,397.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.71,397.32 346.73,397.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.9,397.37 346.9,396.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.73,397.34 346.75,397.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.75,397.37 346.77,397.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.77,397.39 346.8,397.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.68,397.69 347.52,397.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.68,397.5 347.54,397.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.79,397.48 346.79,397.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.79,397.49 346.8,397.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.8,397.51 346.8,397.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.8,397.52 346.81,397.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.81,397.54 346.82,397.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.82,397.55 346.84,397.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.9,397.59 346.84,397.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.99,397.62 346.9,397.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.1,397.65 346.99,397.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.52,397.69 347.37,397.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.37,397.68 347.23,397.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.23,397.67 347.1,397.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.04,397.43 346.96,397.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.9,397.37 346.88,397.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.88,397.37 346.86,397.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.86,397.38 346.85,397.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.85,397.38 346.83,397.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.83,397.39 346.82,397.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.82,397.41 346.81,397.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.81,397.42 346.8,397.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.8,397.44 346.8,397.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.8,397.46 346.79,397.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.96,397.4 346.9,397.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.54,397.49 347.4,397.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.15,397.45 347.04,397.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.4,397.48 347.27,397.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.27,397.47 347.15,397.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.05,395.43 346.95,395.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.95,395.51 346.86,395.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.86,395.61 346.79,395.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.79,395.72 346.74,395.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.69,395.84 346.58,395.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.79,395.94 346.9,396.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.58,395.84 346.56,395.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.56,395.84 346.55,395.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.55,395.84 346.53,395.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.53,395.85 346.51,395.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.51,395.86 346.5,395.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.5,395.87 346.49,395.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.49,395.89 346.48,395.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.48,395.9 346.48,395.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.48,395.92 346.48,395.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.69,395.84 346.72,395.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.72,395.84 346.76,395.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.76,395.86 346.78,395.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.78,395.89 346.79,395.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.79,395.92 346.79,395.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.58,397.22 346.55,397.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.55,397.22 346.51,397.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.51,397.2 346.49,397.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.49,397.17 346.48,397.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.48,397.13 346.48,397.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.69,397.22 346.58,397.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.69,397.22 346.71,397.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.71,397.22 346.72,397.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.72,397.21 346.74,397.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.74,397.21 346.76,397.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.76,397.2 346.77,397.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.77,397.18 346.78,397.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.78,397.17 346.79,397.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.79,397.15 346.79,397.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.79,397.13 346.79,397.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.69,397.22 346.69,397.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.69,397.25 346.7,397.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.7,397.29 346.71,397.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.79,397.12 346.79,395.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.48,397.12 346.48,395.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.63,397.35 348.65,397.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.47,396.12 348.47,397.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.55,397.42 348.58,397.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.58,397.4 348.61,397.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.61,397.38 348.63,397.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.52,397.57 348.54,397.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.54,397.56 348.55,397.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.55,397.54 348.56,397.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.56,397.53 348.57,397.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.57,397.51 348.57,397.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.57,397.49 348.57,397.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.46,397.59 348.37,397.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.52,397.56 348.46,397.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.13,397.67 347.99,397.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.37,397.62 348.26,397.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.26,397.65 348.13,397.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.41,397.4 348.32,397.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.47,397.37 348.41,397.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.1,397.47 347.97,397.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.32,397.43 348.22,397.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.22,397.45 348.1,397.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.57,397.48 348.57,397.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.57,397.46 348.57,397.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.57,397.44 348.56,397.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.56,397.42 348.55,397.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.55,397.41 348.54,397.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.54,397.39 348.52,397.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.52,397.38 348.51,397.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.51,397.38 348.49,397.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.49,397.37 348.47,397.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.99,397.68 347.84,397.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.97,397.48 347.83,397.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.57,396.01 348.47,396.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.65,395.89 348.6,395.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.6,395.77 348.54,395.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.54,395.64 348.45,395.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.45,395.54 348.35,395.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.89,396.01 348.89,395.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.89,395.99 348.89,395.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.89,395.98 348.88,395.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.88,395.96 348.87,395.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.87,395.94 348.85,395.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.85,395.93 348.84,395.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.84,395.92 348.82,395.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.82,395.91 348.81,395.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.81,395.91 348.79,395.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.68,395.91 348.79,395.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.57,396.01 348.58,395.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.58,395.98 348.6,395.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.6,395.94 348.63,395.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.63,395.92 348.66,395.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.66,395.91 348.68,395.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.68,397.22 348.79,397.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.89,397.12 348.89,397.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.89,397.15 348.87,397.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.87,397.18 348.84,397.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.84,397.21 348.81,397.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.81,397.22 348.79,397.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.65,397.33 348.67,397.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.67,397.29 348.68,397.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.68,397.26 348.68,397.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.58,397.12 348.58,397.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.58,397.13 348.58,397.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.58,397.15 348.59,397.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.59,397.17 348.6,397.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.6,397.18 348.61,397.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.61,397.2 348.63,397.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.63,397.21 348.64,397.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.64,397.21 348.66,397.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.66,397.22 348.68,397.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.89,397.12 348.89,396.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.57,397.12 348.57,396.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.83,395.27 347.54,395.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.54,395.27 347.41,395.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.41,395.28 347.28,395.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.28,395.31 347.16,395.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.1,395.32 347.97,395.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="348.23,395.37 348.1,395.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.97,395.28 347.83,395.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="345.54,387.79 345.27,388.3 345.68,388.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="345.54,387.79 345.54,388.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="345.54,391.77 345.27,392.28 345.68,392.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="345.54,391.77 345.54,392.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="345.54,402.43 345.27,402.94 345.68,402.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="345.54,402.43 345.54,403.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="345.54,406.39 345.27,406.9 345.68,406.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="345.54,406.39 345.54,407.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.98,375.58 368.71,375.58 368.69,375.91 368.71,375.87 368.79,375.83 368.88,375.83 368.96,375.87 369.01,375.94 369.04,376.05 369.04,376.12 369.01,376.23 368.96,376.3 368.88,376.34 368.8,376.34 368.72,376.31 368.69,376.27 368.66,376.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.98,371.6 368.71,371.6 368.69,371.93 368.71,371.89 368.79,371.86 368.88,371.85 368.96,371.89 369.01,371.96 369.04,372.07 369.04,372.14 369.01,372.25 368.96,372.33 368.88,372.36 368.8,372.36 368.72,372.33 368.69,372.29 368.66,372.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.98,367.62 368.71,367.62 368.69,367.95 368.71,367.91 368.79,367.88 368.88,367.88 368.96,367.91 369.01,367.98 369.04,368.09 369.04,368.16 369.01,368.27 368.96,368.35 368.88,368.38 368.8,368.38 368.72,368.35 368.69,368.31 368.66,368.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.96,373.63 367.96,375.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.96,369.65 367.96,371.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.17,381.84 366.98,381.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.81,381.84 366.48,381.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.32,381.84 365.99,381.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.82,381.84 365.49,381.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.32,381.84 365.13,381.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.15,381.84 370.96,381.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.79,381.84 370.46,381.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.3,381.84 369.96,381.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.8,381.84 369.47,381.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.3,381.84 369.11,381.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="364.16,382.2 372.12,382.2 372.12,384.41 364.16,384.41 364.16,382.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="284.59,301.5 292.55,301.5 292.55,303.48 284.59,303.48 284.59,301.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.72,383.39 371.45,383.9 371.86,383.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.72,383.39 371.72,384.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.74,383.39 367.47,383.9 367.88,383.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.74,383.39 367.74,384.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.95,368.48 317.31,368.48 317.31,371.79 323.95,371.79 323.95,368.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.3,372.36 320.26,372.17 320.13,372.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.81,372.02 317.69,372.17 317.65,372.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.81,374.17 317.81,372.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.13,372.02 320.13,374.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.65,374.3 317.65,372.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.65,374.3 317.69,374.43 317.8,374.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.81,374.17 317.86,374.31 317.97,374.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.97,374.39 318.97,374.5 319.97,374.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="319.97,374.39 320.09,374.31 320.13,374.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.3,372.36 320.3,374.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.8,374.51 318.97,374.67 320.15,374.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.15,374.51 320.26,374.43 320.3,374.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.81,372.02 320.13,372.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.95,365.16 317.31,365.16 317.31,368.48 323.95,368.48 323.95,365.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="316.98,372.36 316.94,372.17 316.82,372.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="314.5,372.02 314.37,372.17 314.33,372.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="314.5,374.17 314.5,372.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="316.82,372.02 316.82,374.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="314.33,374.3 314.33,372.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="314.33,374.3 314.37,374.43 314.48,374.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="314.5,374.17 314.54,374.31 314.66,374.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="314.66,374.39 315.66,374.5 316.66,374.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="316.66,374.39 316.77,374.31 316.82,374.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="316.98,372.36 316.98,374.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="314.48,374.51 315.66,374.67 316.83,374.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="316.83,374.51 316.94,374.43 316.98,374.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="314.5,372.02 316.82,372.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.28,372.36 324.32,372.17 324.44,372.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.76,372.02 326.89,372.17 326.93,372.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.76,374.17 326.76,372.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.44,372.02 324.44,374.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.93,374.3 326.93,372.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.93,374.3 326.89,374.43 326.78,374.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.76,374.17 326.72,374.31 326.6,374.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.6,374.39 325.6,374.5 324.6,374.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.6,374.39 324.49,374.31 324.44,374.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.28,372.36 324.28,374.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.78,374.51 325.6,374.67 324.43,374.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.43,374.51 324.32,374.43 324.28,374.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.76,372.02 324.44,372.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.12,371.09 327.93,371.05 327.78,370.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.78,368.61 327.93,368.48 328.12,368.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="329.94,368.61 327.78,368.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.78,370.93 329.94,370.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.06,368.44 328.12,368.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.06,368.44 330.19,368.48 330.27,368.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="329.94,368.61 330.07,368.65 330.15,368.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.15,368.77 330.27,369.77 330.15,370.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.15,370.77 330.07,370.88 329.94,370.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.12,371.09 330.06,371.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.27,368.59 330.43,369.77 330.27,370.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.27,370.94 330.19,371.05 330.06,371.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.78,368.61 327.78,370.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.16,368.04 327.97,368 327.82,367.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.82,365.56 327.97,365.43 328.16,365.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="329.98,365.56 327.82,365.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.82,367.88 329.98,367.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.1,365.39 328.16,365.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.1,365.39 330.23,365.43 330.31,365.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="329.98,365.56 330.11,365.6 330.19,365.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.19,365.72 330.31,366.72 330.19,367.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.19,367.72 330.11,367.83 329.98,367.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.16,368.04 330.1,368.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.31,365.54 330.47,366.72 330.31,367.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="330.31,367.89 330.23,368 330.1,368.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.82,365.56 327.82,367.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.14,371.09 313.33,371.05 313.48,370.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.48,368.61 313.33,368.48 313.14,368.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.32,368.61 313.48,368.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.48,370.93 311.32,370.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.2,368.44 313.14,368.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.2,368.44 311.07,368.48 310.99,368.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.32,368.61 311.19,368.65 311.11,368.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.11,368.77 310.99,369.77 311.11,370.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.11,370.77 311.19,370.88 311.32,370.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.14,371.09 311.2,371.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="310.99,368.59 310.83,369.77 310.99,370.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="310.99,370.94 311.07,371.05 311.2,371.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.48,368.61 313.48,370.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.1,368.04 313.29,368 313.44,367.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.44,365.56 313.29,365.43 313.1,365.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.28,365.56 313.44,365.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.44,367.88 311.28,367.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.16,365.39 313.1,365.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.16,365.39 311.03,365.43 310.95,365.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.28,365.56 311.15,365.6 311.07,365.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.07,365.72 310.95,366.72 311.07,367.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.07,367.72 311.15,367.83 311.28,367.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.1,368.04 311.16,368.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="310.95,365.54 310.79,366.72 310.95,367.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="310.95,367.89 311.03,368 311.16,368.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.44,365.56 313.44,367.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.29,382.03 375.24,381.84 375.12,381.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.8,381.69 372.68,381.84 372.63,382.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.8,383.84 372.8,381.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.12,381.69 375.12,383.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.63,383.97 372.63,382.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.63,383.97 372.68,384.1 372.79,384.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.8,383.84 372.85,383.98 372.96,384.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.96,384.06 373.96,384.17 374.96,384.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.96,384.06 375.08,383.98 375.12,383.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.29,382.03 375.29,383.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.79,384.18 373.96,384.34 375.14,384.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.14,384.18 375.25,384.1 375.29,383.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.8,381.69 375.12,381.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.99,382.03 361.04,381.84 361.16,381.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.48,381.69 363.6,381.84 363.65,382.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.48,383.84 363.48,381.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.16,381.69 361.16,383.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.65,383.97 363.65,382.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.65,383.97 363.6,384.1 363.49,384.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.48,383.84 363.44,383.98 363.32,384.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.32,384.06 362.32,384.17 361.32,384.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.32,384.06 361.21,383.98 361.16,383.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.99,382.03 360.99,383.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.49,384.18 362.32,384.34 361.15,384.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.15,384.18 361.04,384.1 360.99,383.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.48,381.69 361.16,381.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.38,381.71 409.19,381.76 409.04,381.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.04,384.2 409.19,384.32 409.38,384.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.2,384.2 409.04,384.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.04,381.88 411.2,381.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.32,384.36 409.38,384.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.32,384.36 411.45,384.32 411.53,384.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.2,384.2 411.33,384.15 411.41,384.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.41,384.04 411.53,383.04 411.41,382.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.41,382.04 411.33,381.92 411.2,381.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.38,381.71 411.32,381.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.53,384.21 411.69,383.04 411.53,381.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.53,381.86 411.45,381.75 411.32,381.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.04,384.2 409.04,381.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="284.72,287.99 284.72,289.65 287.26,289.65 287.26,287.99 284.72,287.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.26,287.99 284.72,289.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.41,288.39 287.41,289.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.33,365.16 325.94,365.16 325.94,364.83 315.33,364.83 315.33,365.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.84,312.2 309.84,320.16 307.84,320.16 307.84,312.2 309.84,312.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.85,316.18 307.85,316.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.85,316.84 307.85,317.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.85,317.84 307.85,318.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.85,318.83 307.85,319.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.85,319.83 307.85,320.16 308.18,320.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="308.51,320.16 309.18,320.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.51,320.16 309.84,320.16 309.84,319.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.84,319.5 309.84,318.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.84,318.5 309.84,317.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.84,317.51 309.84,316.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.84,316.51 309.84,316.18 309.51,316.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.18,316.18 308.51,316.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="308.18,316.18 307.85,316.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.85,316.18 305.86,316.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.85,320.16 305.86,320.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="305.86,316.18 306.01,316.94 306.44,317.59 307.09,318.02 307.85,318.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.85,318.17 307.09,318.32 306.44,318.75 306.01,319.4 305.86,320.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="302.15,430.13 310.1,430.13 310.1,433.45 302.15,433.45 302.15,430.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.45,425.49 310.1,425.49 310.1,430.13 307.45,430.13 307.45,425.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="302.15,422.18 310.1,422.18 310.1,425.49 302.15,425.49 302.15,422.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="302.15,432.68 300.49,432.68 300.49,430.13 302.15,430.13 302.15,432.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="302.15,430.13 300.49,432.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.75,429.98 300.87,429.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.61,417.14 301.49,415.27 303.36,417.14 301.49,419.02 299.61,417.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.85,416.45 299.02,416.55 299.21,416.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.85,414.93 300.83,414.74 300.73,414.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.33,413.4 300.85,414.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.21,416.57 297.68,415.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.36,413.2 300.73,414.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.36,413.2 299.24,413.14 299.1,413.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.33,413.4 299.2,413.34 299.06,413.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.06,413.37 298.27,413.99 297.65,414.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.65,414.78 297.62,414.92 297.68,415.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.85,416.45 297.48,415.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.1,413.16 298.16,413.88 297.44,414.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.44,414.82 297.42,414.95 297.48,415.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.85,414.93 299.21,416.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="302.16,414.64 302.05,414.81 302.03,415" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="303.67,416.64 303.87,416.62 304.03,416.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="305.2,415.12 303.67,416.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="302.03,415 303.56,413.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="305.41,415.15 304.03,416.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="305.41,415.15 305.47,415.03 305.45,414.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="305.2,415.12 305.26,414.99 305.24,414.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="305.24,414.85 304.61,414.07 303.82,413.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="303.82,413.44 303.69,413.41 303.56,413.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="302.16,414.64 303.53,413.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="305.45,414.89 304.73,413.95 303.79,413.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="303.79,413.23 303.65,413.21 303.53,413.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="303.67,416.64 302.03,415" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.99,417.81 299.15,417.71 299.35,417.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.99,419.33 300.97,419.52 300.86,419.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.46,420.86 300.99,419.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.35,417.69 297.82,419.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.49,421.06 300.87,419.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.49,421.06 299.37,421.12 299.24,421.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.46,420.86 299.34,420.92 299.2,420.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.2,420.89 298.41,420.27 297.78,419.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.78,419.48 297.76,419.34 297.82,419.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.99,417.81 297.62,419.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.24,421.1 298.29,420.39 297.58,419.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.58,419.44 297.56,419.31 297.62,419.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.99,419.33 299.35,417.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.05,408.45 305.44,408.45 305.44,410.15 299.05,410.15 299.05,408.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="310.1,418.86 310.1,422.18 308.17,422.18 308.17,418.86 310.1,418.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.42,421.31 309.42,421.27 309.44,421.2 309.47,421.17 309.52,421.13 309.63,421.13 309.69,421.16 309.71,421.2 309.74,421.27 309.74,421.34 309.72,421.42 309.66,421.53 309.39,421.89 309.77,421.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.95,396.59 323.95,393.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.6,393.61 326.6,396.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.38,396.82 324.17,396.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.38,396.82 326.54,396.75 326.6,396.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.95,396.59 324.01,396.75 324.17,396.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.16,393.61 324.39,393.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.39,393.61 324.08,393.74 323.95,394.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.6,394.05 326.47,393.74 326.16,393.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.6,397.26 323.95,397.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.51,396.82 323.64,397.13 323.95,397.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.51,396.82 323.51,394.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.95,393.61 323.64,393.74 323.51,394.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.04,394.05 326.91,393.74 326.6,393.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.04,394.05 327.04,396.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.6,397.26 326.91,397.13 327.04,396.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.9,357.28 292.97,357.28 292.97,360.6 300.9,360.6 300.9,357.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.9,358.06 299.25,358.06 299.25,360.6 300.9,360.6 300.9,358.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.9,360.6 299.25,358.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.51,360.75 299.62,360.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.35,363.7 296.04,363.99 296.78,363.98 297.46,363.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.89,363.54 297.19,363.43 297.33,363.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.89,363.54 295.93,363.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.49,363.14 295.63,363.43 295.93,363.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.45,363.56 296.07,363.83 296.75,363.82 297.36,363.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.45,363.56 295.35,363.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.36,363.54 297.46,363.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.48,361.95 297.43,361.69 297.22,361.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.22,361.5 296.41,361.33 295.6,361.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.48,361.95 297.33,363.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.6,361.5 295.39,361.69 295.34,361.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.49,363.14 295.34,361.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.59,351.45 298.59,349.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.97,352.44 298.97,348.46 300.96,348.46 300.96,352.44 298.97,352.44 300.96,348.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.46,351.37 300.19,351.88 300.6,351.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.46,351.37 300.47,352.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.34,356.95 286.34,354.3 289,354.3 289,356.95 286.34,356.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.34,354.3 286.81,353.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.01,354.3 288.18,353.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="284.59,345.48 284.59,341.67 286,341.67 286,345.48 284.59,345.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="284.95,344.47 285.25,344.46 285.09,344.76 285.17,344.76 285.22,344.79 285.25,344.83 285.28,344.94 285.28,345.01 285.25,345.12 285.2,345.19 285.12,345.23 285.04,345.23 284.96,345.19 284.93,345.16 284.9,345.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.98,325.61 300.96,325.61 300.96,323.62 296.98,323.62 296.98,325.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.98,325.61 296.98,327.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.96,325.61 300.96,327.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.98,327.59 297.74,327.44 298.39,327.01 298.82,326.37 298.97,325.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.97,325.61 299.12,326.37 299.55,327.01 300.2,327.44 300.96,327.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.72,308.83 289.53,310.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.21,311.63 289.83,311.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.72,308.83 288.66,308.78 288.57,308.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.87,308.22 289.9,309.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.49,308.46 288.42,308.41 288.34,308.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.72,308.83 288.49,308.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.53,308.31 288.49,308.35 288.47,308.41 288.49,308.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.53,308.31 288.72,308.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.87,308.22 288.8,308.18 288.72,308.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.9,309.98 288.24,312.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.57,308.79 286.93,309.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.21,311.63 288.39,312.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.24,312.11 288.31,312.16 288.39,312.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.93,309.83 286.89,309.87 286.88,309.93 286.9,309.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.29,309.85 287.87,312.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.87,312.35 287.93,312.4 288.02,312.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.34,308.43 286.7,309.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.7,309.47 286.66,309.51 286.65,309.56 286.66,309.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.9,309.98 286.66,309.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.66,309.62 286.59,309.57 286.51,309.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.51,309.58 286.32,309.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.32,309.7 286.28,309.74 286.27,309.8 286.29,309.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.24,312.11 288.24,312.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.21,312.26 288.24,312.22 288.26,312.17 288.24,312.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.21,312.26 288.02,312.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.23,310.29 290.18,309.69 290.99,310.96 290.04,311.56 289.23,310.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.64,308.83 293.83,310.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.61,309.31 294.79,308.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.15,311.63 293.53,311.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.79,308.79 294.71,308.78 294.64,308.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.5,308.22 293.46,309.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.84,308.95 295.05,308.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.02,308.43 294.94,308.41 294.87,308.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.64,308.83 294.87,308.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.87,308.46 294.89,308.41 294.88,308.35 294.84,308.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.84,308.31 294.65,308.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.65,308.19 294.57,308.18 294.5,308.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.47,309.98 295.12,312.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.61,309.31 296.43,309.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.15,311.63 294.97,312.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.97,312.15 295.06,312.16 295.12,312.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.47,309.98 296.48,309.93 296.47,309.87 296.43,309.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.07,309.85 295.5,312.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.35,312.38 295.43,312.4 295.5,312.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.84,308.95 296.67,309.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.7,309.62 296.72,309.56 296.7,309.51 296.67,309.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.47,309.98 296.7,309.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.85,309.58 296.77,309.57 296.7,309.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.85,309.58 297.04,309.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.07,309.85 297.09,309.8 297.08,309.74 297.04,309.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.12,312.11 295.12,312.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.12,312.11 295.11,312.17 295.12,312.22 295.16,312.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.16,312.26 295.35,312.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.13,310.29 293.18,309.69 292.38,310.96 293.33,311.56 294.13,310.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.11,312.2 286.11,309.54 284.59,309.54 284.59,312.2 286.11,312.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="284.6,300.96 284.6,298.26 286.14,298.26 286.14,300.96 284.6,300.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.19,298.55 288.51,298.84 287.76,298.83 287.08,298.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.65,298.39 287.35,298.28 287.21,297.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.65,298.39 288.62,298.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.06,297.99 288.92,298.28 288.62,298.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.1,298.41 288.47,298.68 287.8,298.67 287.18,298.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.1,298.41 289.19,298.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.18,298.39 287.08,298.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.06,296.8 287.12,296.54 287.32,296.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.32,296.35 288.13,296.18 288.95,296.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.06,296.8 287.21,297.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="288.95,296.35 289.15,296.54 289.21,296.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.06,297.99 289.21,296.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.98,285.45 293.69,284.76 293.7,284.02 294,283.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.14,283.91 294.25,283.61 294.53,283.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.14,283.91 294.14,284.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.53,285.31 294.25,285.17 294.14,284.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.11,285.35 293.85,284.73 293.86,284.05 294.14,283.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.11,285.35 293.98,285.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.14,283.44 294,283.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.72,283.32 295.99,283.37 296.18,283.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.18,283.58 296.35,284.39 296.18,285.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.72,283.32 294.53,283.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.18,285.2 295.99,285.41 295.72,285.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.53,285.31 295.72,285.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.98,290.99 293.69,290.31 293.7,289.56 294,288.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.14,289.45 294.25,289.16 294.53,289.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.14,289.45 294.14,290.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.53,290.86 294.25,290.72 294.14,290.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.11,290.9 293.85,290.28 293.86,289.6 294.14,288.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.11,290.9 293.98,290.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.14,288.98 294,288.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.72,288.86 295.99,288.92 296.18,289.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.18,289.12 296.35,289.94 296.18,290.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="295.72,288.86 294.53,289.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.18,290.75 295.99,290.95 295.72,291.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="294.53,290.86 295.72,291.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.99,359.91 325.27,359.91 325.27,363.89 315.99,363.89 315.99,359.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.89,359.04 315.93,359.23 316.05,359.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.37,359.38 318.49,359.23 318.54,359.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.37,357.23 318.37,359.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="316.05,359.38 316.05,357.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.54,357.1 318.54,359.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.54,357.1 318.5,356.97 318.39,356.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.37,357.23 318.33,357.09 318.21,357.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.21,357.01 317.21,356.9 316.21,357.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="316.21,357.01 316.1,357.09 316.05,357.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.89,359.04 315.89,357.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.39,356.89 317.21,356.73 316.04,356.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="316.04,356.89 315.93,356.97 315.89,357.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.37,359.38 316.05,359.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.04,360.64 315.23,360.69 315.38,360.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.38,363.13 315.23,363.25 315.04,363.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.22,363.13 315.38,363.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.38,360.81 313.22,360.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.1,363.3 315.04,363.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.1,363.3 312.97,363.26 312.89,363.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.22,363.13 313.09,363.09 313.01,362.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.01,362.97 312.89,361.97 313.01,360.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.01,360.97 313.09,360.86 313.22,360.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.04,360.64 313.1,360.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="312.89,363.15 312.73,361.97 312.89,360.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="312.89,360.8 312.97,360.69 313.1,360.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.38,363.13 315.38,360.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="312.53,353.84 312.58,354.03 312.7,354.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.02,354.18 315.14,354.03 315.18,353.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.02,352.02 315.02,354.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="312.7,354.18 312.7,352.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.18,351.9 315.18,353.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.18,351.9 315.14,351.77 315.03,351.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.02,352.02 314.97,351.89 314.86,351.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="314.86,351.81 313.86,351.69 312.86,351.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="312.86,351.81 312.74,351.89 312.7,352.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="312.53,353.84 312.53,351.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.03,351.69 313.86,351.53 312.68,351.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="312.68,351.69 312.57,351.77 312.53,351.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.02,354.18 312.7,354.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.22,353.84 309.26,354.03 309.38,354.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.7,354.18 311.83,354.03 311.87,353.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.7,352.02 311.7,354.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.38,354.18 309.38,352.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.87,351.9 311.87,353.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.87,351.9 311.83,351.77 311.72,351.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.7,352.02 311.66,351.89 311.54,351.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.54,351.81 310.54,351.69 309.54,351.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.54,351.81 309.43,351.89 309.38,352.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.22,353.84 309.22,351.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.72,351.69 310.54,351.53 309.37,351.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.37,351.69 309.26,351.77 309.22,351.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.7,354.18 309.38,354.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.41,411.16 357.41,413.82 357.13,413.82 357.13,411.16 357.41,411.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.65,411.16 378.65,413.82 378.37,413.82 378.37,411.16 378.65,411.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.84,384.69 377.84,387.34 377.57,387.34 377.57,384.69 377.84,384.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.1,384.69 357.1,387.34 356.83,387.34 356.83,384.69 357.1,384.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.96,413.82 359.62,413.82 359.62,411.28 357.96,411.28 357.96,413.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.96,411.28 359.62,413.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.36,411.13 359.24,411.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.66,401.61 371.58,401.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.57,402.79 371.64,402.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.91,402.12 373.91,402.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.71,402.12 373.71,402.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.53,403.24 373.56,403.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.58,403.05 372.26,403.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.56,403.23 373.58,403.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.58,403.21 373.6,403.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.6,403.18 373.62,403.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.91,402.27 373.91,402.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.71,402.27 373.71,402.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.69,403.16 373.71,403.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.71,403.16 373.72,403.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.72,403.15 373.74,403.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.74,403.15 373.75,403.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.75,403.14 373.76,403.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.76,403.13 373.78,403.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.81,403.05 373.78,403.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.84,402.96 373.81,403.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.86,402.85 373.84,402.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.91,402.43 373.9,402.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.9,402.58 373.88,402.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.88,402.72 373.86,402.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.64,402.91 373.61,402.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.58,403.05 373.59,403.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.59,403.07 373.59,403.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.59,403.09 373.6,403.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.6,403.11 373.61,403.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.61,403.12 373.62,403.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.62,403.14 373.64,403.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.64,403.15 373.65,403.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.65,403.15 373.67,403.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.67,403.16 373.69,403.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.61,402.99 373.58,403.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.71,402.41 373.7,402.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.66,402.81 373.64,402.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.7,402.55 373.68,402.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.68,402.69 373.66,402.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.64,402.91 371.72,403.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.72,403.01 371.82,403.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.82,403.09 371.93,403.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.93,403.16 372.05,403.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.05,403.27 372.05,403.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.15,403.16 372.26,403.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.05,403.37 372.05,403.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.05,403.39 372.05,403.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.05,403.41 372.06,403.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.06,403.42 372.07,403.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.07,403.44 372.09,403.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.09,403.45 372.1,403.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.1,403.46 372.12,403.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.12,403.47 372.14,403.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.14,403.48 372.15,403.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.05,403.27 372.06,403.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.06,403.23 372.07,403.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.07,403.2 372.1,403.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.1,403.17 372.14,403.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.14,403.16 372.15,403.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.44,403.37 373.43,403.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.43,403.41 373.41,403.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.41,403.44 373.38,403.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.38,403.46 373.35,403.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.35,403.48 373.33,403.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.44,403.27 373.44,403.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.43,403.27 373.43,403.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.43,403.25 373.43,403.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.43,403.23 373.42,403.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.42,403.21 373.41,403.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.41,403.2 373.4,403.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.4,403.18 373.38,403.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.38,403.17 373.37,403.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.37,403.17 373.35,403.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.35,403.16 373.33,403.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.44,403.27 373.47,403.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.47,403.26 373.5,403.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.5,403.26 373.53,403.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.33,403.16 372.15,403.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.33,403.48 372.15,403.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.57,401.32 373.54,401.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.33,401.48 373.58,401.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.63,401.41 373.62,401.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.62,401.37 373.59,401.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.59,401.34 373.57,401.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.78,401.43 373.77,401.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.77,401.42 373.76,401.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.76,401.4 373.74,401.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.74,401.39 373.73,401.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.73,401.38 373.71,401.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.71,401.38 373.69,401.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.81,401.5 373.84,401.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.78,401.43 373.81,401.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.88,401.82 373.9,401.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.84,401.59 373.86,401.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.86,401.7 373.88,401.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.61,401.55 373.64,401.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.58,401.48 373.61,401.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.68,401.85 373.7,401.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.64,401.63 373.66,401.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.66,401.73 373.68,401.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.69,401.38 373.67,401.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.67,401.38 373.65,401.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.65,401.39 373.64,401.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.64,401.39 373.62,401.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.62,401.4 373.61,401.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.61,401.42 373.6,401.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.6,401.43 373.59,401.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.59,401.45 373.59,401.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.59,401.47 373.58,401.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.9,401.97 373.91,402.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.7,401.98 373.71,402.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.23,401.38 372.33,401.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.11,401.3 371.98,401.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.98,401.35 371.86,401.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.86,401.42 371.75,401.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.75,401.5 371.66,401.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.23,401.06 372.21,401.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.21,401.06 372.19,401.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.19,401.07 372.17,401.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.17,401.07 372.16,401.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.16,401.09 372.15,401.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.15,401.1 372.13,401.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.13,401.11 372.13,401.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.13,401.13 372.12,401.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.12,401.15 372.12,401.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.12,401.27 372.12,401.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.23,401.38 372.19,401.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.19,401.37 372.16,401.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.16,401.35 372.13,401.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.13,401.33 372.12,401.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.12,401.29 372.12,401.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.44,401.27 373.44,401.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.33,401.06 373.37,401.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.37,401.07 373.4,401.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.4,401.09 373.42,401.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.42,401.11 373.43,401.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.43,401.15 373.44,401.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.54,401.3 373.51,401.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.51,401.28 373.47,401.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.47,401.28 373.44,401.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.33,401.38 373.35,401.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.35,401.38 373.37,401.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.37,401.37 373.38,401.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.38,401.36 373.4,401.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.4,401.35 373.41,401.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.41,401.34 373.42,401.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.42,401.33 373.43,401.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.43,401.31 373.43,401.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.43,401.29 373.43,401.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.33,401.06 372.23,401.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.33,401.38 372.23,401.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.48,402.12 371.48,402.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.48,402.42 371.49,402.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.49,402.55 371.52,402.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.52,402.67 371.57,402.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.53,401.85 371.5,401.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.58,401.72 371.53,401.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.5,401.98 371.48,402.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.66,406.14 371.58,406.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.57,404.95 371.64,404.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.91,405.63 373.91,405.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.71,405.62 373.71,405.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.53,404.5 373.56,404.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.58,404.69 372.26,404.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.56,404.52 373.58,404.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.58,404.54 373.6,404.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.6,404.56 373.62,404.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.91,405.47 373.91,405.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.71,405.47 373.71,405.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.69,404.58 373.71,404.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.71,404.59 373.72,404.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.72,404.59 373.74,404.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.74,404.6 373.75,404.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.75,404.6 373.76,404.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.76,404.61 373.78,404.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.81,404.69 373.78,404.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.84,404.78 373.81,404.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.86,404.89 373.84,404.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.91,405.31 373.9,405.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.9,405.16 373.88,405.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.88,405.02 373.86,404.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.64,404.83 373.61,404.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.58,404.69 373.59,404.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.59,404.67 373.59,404.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.59,404.65 373.6,404.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.6,404.64 373.61,404.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.61,404.62 373.62,404.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.62,404.61 373.64,404.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.64,404.6 373.65,404.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.65,404.59 373.67,404.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.67,404.59 373.69,404.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.61,404.75 373.58,404.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.71,405.33 373.7,405.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.66,404.94 373.64,404.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.7,405.19 373.68,405.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.68,405.06 373.66,404.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.64,404.84 371.72,404.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.72,404.74 371.82,404.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.82,404.65 371.93,404.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.93,404.58 372.05,404.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.05,404.48 372.05,404.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.15,404.58 372.26,404.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.05,404.37 372.05,404.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.05,404.35 372.05,404.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.05,404.34 372.06,404.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.06,404.32 372.07,404.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.07,404.3 372.09,404.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.09,404.29 372.1,404.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.1,404.28 372.12,404.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.12,404.27 372.14,404.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.14,404.27 372.15,404.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.05,404.48 372.06,404.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.06,404.51 372.07,404.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.07,404.55 372.1,404.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.1,404.57 372.14,404.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.14,404.58 372.15,404.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.44,404.37 373.43,404.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.43,404.34 373.41,404.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.41,404.3 373.38,404.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.38,404.28 373.35,404.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.35,404.27 373.33,404.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.44,404.48 373.44,404.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.43,404.48 373.43,404.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.43,404.5 373.43,404.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.43,404.51 373.42,404.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.42,404.53 373.41,404.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.41,404.55 373.4,404.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.4,404.56 373.38,404.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.38,404.57 373.37,404.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.37,404.58 373.35,404.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.35,404.58 373.33,404.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.44,404.48 373.47,404.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.47,404.48 373.5,404.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.5,404.49 373.53,404.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.33,404.58 372.15,404.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.33,404.27 372.15,404.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.57,406.42 373.54,406.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.33,406.26 373.58,406.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.63,406.34 373.62,406.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.62,406.37 373.59,406.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.59,406.4 373.57,406.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.78,406.31 373.77,406.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.77,406.33 373.76,406.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.76,406.34 373.74,406.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.74,406.35 373.73,406.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.73,406.36 373.71,406.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.71,406.36 373.69,406.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.81,406.25 373.84,406.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.78,406.31 373.81,406.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.88,405.92 373.9,405.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.84,406.16 373.86,406.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.86,406.05 373.88,405.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.61,406.2 373.64,406.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.58,406.26 373.61,406.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.68,405.89 373.7,405.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.64,406.11 373.66,406.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.66,406.01 373.68,405.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.69,406.37 373.67,406.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.67,406.36 373.65,406.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.65,406.36 373.64,406.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.64,406.35 373.62,406.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.62,406.34 373.61,406.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.61,406.33 373.6,406.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.6,406.31 373.59,406.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.59,406.3 373.59,406.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.59,406.28 373.58,406.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.9,405.78 373.91,405.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.7,405.76 373.71,405.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.23,406.37 372.33,406.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.11,406.44 371.98,406.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.98,406.39 371.86,406.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.86,406.33 371.75,406.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.75,406.24 371.66,406.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.23,406.68 372.21,406.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.21,406.68 372.19,406.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.19,406.68 372.17,406.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.17,406.67 372.16,406.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.16,406.66 372.15,406.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.15,406.65 372.13,406.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.13,406.63 372.13,406.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.13,406.61 372.12,406.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.12,406.6 372.12,406.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.12,406.47 372.12,406.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.23,406.37 372.19,406.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.19,406.37 372.16,406.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.16,406.39 372.13,406.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.13,406.42 372.12,406.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.12,406.45 372.12,406.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.44,406.47 373.44,406.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.33,406.68 373.37,406.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.37,406.68 373.4,406.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.4,406.66 373.42,406.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.42,406.63 373.43,406.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.43,406.6 373.44,406.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.54,406.44 373.51,406.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.51,406.46 373.47,406.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.47,406.47 373.44,406.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.33,406.37 373.35,406.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.35,406.37 373.37,406.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.37,406.37 373.38,406.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.38,406.38 373.4,406.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.4,406.39 373.41,406.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.41,406.4 373.42,406.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.42,406.42 373.43,406.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.43,406.44 373.43,406.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.43,406.45 373.43,406.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.33,406.68 372.23,406.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.33,406.37 372.23,406.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.48,405.62 371.48,405.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.48,405.33 371.49,405.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.49,405.2 371.52,405.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.52,405.07 371.57,404.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.53,405.89 371.5,405.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.58,406.02 371.53,405.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.5,405.76 371.48,405.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.65,411.16 381.3,411.16 381.3,413.82 378.65,413.82 378.65,411.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="381.3,411.16 381.77,411.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="381.3,411.83 382.47,413" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.88,405.86 387.88,404.2 385.34,404.2 385.34,405.86 387.88,405.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.34,405.86 387.88,404.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.19,405.46 385.19,404.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.74,386.2 384.82,386.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.83,387.39 384.76,387.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.49,386.71 382.49,386.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.69,386.72 382.69,386.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.87,387.84 382.84,387.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.82,387.65 384.14,387.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.84,387.82 382.82,387.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.82,387.8 382.79,387.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.79,387.78 382.78,387.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.49,386.87 382.49,387.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.69,386.87 382.69,387.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.71,387.76 382.69,387.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.69,387.76 382.68,387.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.68,387.75 382.66,387.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.66,387.75 382.65,387.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.65,387.74 382.63,387.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.63,387.73 382.62,387.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.59,387.65 382.62,387.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.56,387.56 382.59,387.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.54,387.45 382.56,387.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.49,387.03 382.5,387.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.5,387.18 382.52,387.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.52,387.32 382.54,387.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.76,387.51 382.79,387.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.82,387.65 382.81,387.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.81,387.67 382.81,387.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.81,387.69 382.8,387.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.8,387.7 382.79,387.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.79,387.72 382.78,387.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.78,387.73 382.76,387.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.76,387.74 382.75,387.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.75,387.75 382.73,387.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.73,387.76 382.71,387.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.79,387.59 382.82,387.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.69,387.01 382.7,387.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.73,387.4 382.76,387.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.7,387.15 382.72,387.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.72,387.28 382.73,387.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.76,387.5 384.68,387.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.68,387.6 384.58,387.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.58,387.69 384.47,387.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.47,387.76 384.35,387.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.35,387.86 384.35,387.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.24,387.76 384.14,387.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.35,387.97 384.35,387.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.35,387.99 384.34,388.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.34,388.01 384.34,388.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.34,388.02 384.33,388.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.33,388.04 384.31,388.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.31,388.05 384.3,388.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.3,388.06 384.28,388.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.28,388.07 384.26,388.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.26,388.07 384.24,388.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.35,387.86 384.34,387.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.34,387.83 384.33,387.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.33,387.79 384.3,387.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.3,387.77 384.26,387.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.26,387.76 384.24,387.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.96,387.97 382.97,388.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.97,388.01 382.99,388.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.99,388.04 383.02,388.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.02,388.06 383.05,388.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.05,388.07 383.07,388.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.96,387.86 382.96,387.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.96,387.86 382.97,387.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.97,387.84 382.97,387.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.97,387.83 382.98,387.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.98,387.81 382.99,387.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.99,387.79 383,387.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383,387.78 383.02,387.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.02,387.77 383.03,387.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.03,387.76 383.05,387.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.05,387.76 383.07,387.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.96,387.86 382.93,387.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.93,387.86 382.9,387.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.9,387.85 382.87,387.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,387.76 384.24,387.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,388.08 384.24,388.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.83,385.92 382.86,385.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.07,386.08 382.82,386.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.77,386 382.78,385.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.78,385.97 382.8,385.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.8,385.94 382.83,385.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.62,386.03 382.63,386.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.63,386.01 382.64,386" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.64,386 382.66,385.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.66,385.99 382.67,385.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.67,385.98 382.69,385.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.69,385.98 382.71,385.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.59,386.09 382.56,386.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.62,386.03 382.59,386.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.52,386.42 382.5,386.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.56,386.18 382.54,386.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.54,386.29 382.52,386.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.79,386.14 382.76,386.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.82,386.08 382.79,386.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.72,386.45 382.7,386.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.76,386.23 382.73,386.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.73,386.33 382.72,386.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.71,385.98 382.73,385.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.73,385.98 382.75,385.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.75,385.98 382.76,385.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.76,385.99 382.78,386" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.78,386 382.79,386.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.79,386.01 382.8,386.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.8,386.03 382.81,386.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.81,386.05 382.81,386.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.81,386.06 382.82,386.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.5,386.56 382.49,386.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.7,386.58 382.69,386.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.17,385.98 384.07,386.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.29,385.9 384.42,385.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.42,385.95 384.54,386.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.54,386.01 384.65,386.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.65,386.1 384.74,386.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.17,385.66 384.19,385.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.19,385.66 384.21,385.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.21,385.66 384.23,385.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.23,385.67 384.24,385.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.24,385.68 384.25,385.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.25,385.7 384.26,385.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.26,385.71 384.27,385.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.27,385.73 384.28,385.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.28,385.75 384.28,385.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.28,385.87 384.28,385.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.17,385.98 384.21,385.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.21,385.97 384.24,385.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.24,385.95 384.26,385.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.26,385.92 384.28,385.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.28,385.89 384.28,385.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.96,385.87 382.96,385.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,385.66 383.03,385.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.03,385.66 383,385.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383,385.68 382.98,385.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.98,385.71 382.97,385.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.97,385.75 382.96,385.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.86,385.9 382.89,385.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.89,385.88 382.93,385.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.93,385.87 382.96,385.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,385.98 383.05,385.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.05,385.97 383.03,385.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.03,385.97 383.02,385.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.02,385.96 383,385.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383,385.95 382.99,385.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.99,385.94 382.98,385.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.98,385.92 382.97,385.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.97,385.91 382.97,385.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.97,385.89 382.96,385.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,385.66 384.17,385.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,385.98 384.17,385.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.91,386.72 384.91,387.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.91,387.01 384.9,387.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.9,387.14 384.87,387.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.87,387.27 384.83,387.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.87,386.45 384.9,386.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.82,386.32 384.87,386.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.9,386.58 384.91,386.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.74,391.31 384.82,391.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.83,390.13 384.76,390.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.49,390.8 382.49,390.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.69,390.8 382.69,390.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.87,389.68 382.84,389.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.82,389.87 384.14,389.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.84,389.69 382.82,389.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.82,389.71 382.79,389.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.79,389.74 382.78,389.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.49,390.65 382.49,390.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.69,390.65 382.69,390.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.71,389.76 382.69,389.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.69,389.76 382.68,389.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.68,389.77 382.66,389.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.66,389.77 382.65,389.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.65,389.78 382.63,389.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.63,389.79 382.62,389.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.59,389.87 382.62,389.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.56,389.96 382.59,389.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.54,390.07 382.56,389.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.49,390.49 382.5,390.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.5,390.34 382.52,390.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.52,390.2 382.54,390.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.76,390.01 382.79,389.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.82,389.87 382.81,389.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.81,389.85 382.81,389.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.81,389.83 382.8,389.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.8,389.81 382.79,389.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.79,389.8 382.78,389.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.78,389.79 382.76,389.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.76,389.77 382.75,389.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.75,389.77 382.73,389.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.73,389.76 382.71,389.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.79,389.93 382.82,389.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.69,390.51 382.7,390.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.73,390.11 382.76,390.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.7,390.37 382.72,390.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.72,390.23 382.73,390.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.76,390.01 384.68,389.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.68,389.91 384.58,389.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.58,389.83 384.47,389.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.47,389.76 384.35,389.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.35,389.65 384.35,389.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.24,389.76 384.14,389.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.35,389.55 384.35,389.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.35,389.53 384.34,389.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.34,389.51 384.34,389.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.34,389.5 384.33,389.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.33,389.48 384.31,389.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.31,389.47 384.3,389.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.3,389.46 384.28,389.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.28,389.45 384.26,389.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.26,389.44 384.24,389.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.35,389.65 384.34,389.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.34,389.69 384.33,389.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.33,389.72 384.3,389.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.3,389.75 384.26,389.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.26,389.76 384.24,389.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.96,389.55 382.97,389.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.97,389.51 382.99,389.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.99,389.48 383.02,389.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.02,389.46 383.05,389.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.05,389.44 383.07,389.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.96,389.65 382.96,389.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.96,389.65 382.97,389.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.97,389.67 382.97,389.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.97,389.69 382.98,389.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.98,389.71 382.99,389.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.99,389.72 383,389.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383,389.74 383.02,389.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.02,389.75 383.03,389.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.03,389.75 383.05,389.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.05,389.76 383.07,389.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.96,389.65 382.93,389.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.93,389.66 382.9,389.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.9,389.66 382.87,389.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,389.76 384.24,389.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,389.44 384.24,389.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.83,391.6 382.86,391.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.07,391.44 382.82,391.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.77,391.51 382.78,391.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.78,391.55 382.8,391.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.8,391.58 382.83,391.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.62,391.49 382.63,391.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.63,391.51 382.64,391.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.64,391.52 382.66,391.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.66,391.53 382.67,391.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.67,391.54 382.69,391.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.69,391.54 382.71,391.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.59,391.42 382.56,391.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.62,391.49 382.59,391.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.52,391.1 382.5,390.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.56,391.33 382.54,391.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.54,391.22 382.52,391.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.79,391.37 382.76,391.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.82,391.44 382.79,391.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.72,391.07 382.7,390.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.76,391.29 382.73,391.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.73,391.19 382.72,391.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.71,391.54 382.73,391.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.73,391.54 382.75,391.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.75,391.54 382.76,391.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.76,391.53 382.78,391.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.78,391.52 382.79,391.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.79,391.5 382.8,391.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.8,391.49 382.81,391.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.81,391.47 382.81,391.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.81,391.45 382.82,391.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.5,390.95 382.49,390.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.7,390.94 382.69,390.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.17,391.54 384.07,391.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.29,391.62 384.42,391.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.42,391.57 384.54,391.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.54,391.5 384.65,391.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.65,391.42 384.74,391.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.17,391.86 384.19,391.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.19,391.86 384.21,391.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.21,391.85 384.23,391.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.23,391.85 384.24,391.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.24,391.84 384.25,391.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.25,391.82 384.26,391.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.26,391.81 384.27,391.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.27,391.79 384.28,391.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.28,391.77 384.28,391.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.28,391.65 384.28,391.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.17,391.54 384.21,391.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.21,391.55 384.24,391.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.24,391.57 384.26,391.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.26,391.59 384.28,391.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.28,391.63 384.28,391.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.96,391.65 382.96,391.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,391.86 383.03,391.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.03,391.85 383,391.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383,391.84 382.98,391.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.98,391.81 382.97,391.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.97,391.77 382.96,391.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.86,391.62 382.89,391.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.89,391.64 382.93,391.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.93,391.64 382.96,391.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,391.54 383.05,391.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.05,391.54 383.03,391.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.03,391.55 383.02,391.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.02,391.56 383,391.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383,391.57 382.99,391.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.99,391.58 382.98,391.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.98,391.59 382.97,391.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.97,391.61 382.97,391.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.97,391.63 382.96,391.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,391.86 384.17,391.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.07,391.54 384.17,391.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.91,390.8 384.91,390.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.91,390.5 384.9,390.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.9,390.37 384.87,390.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.87,390.25 384.83,390.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.87,391.07 384.9,390.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.82,391.2 384.87,391.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.9,390.94 384.91,390.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.42,392.64 360.42,384.69 357.1,384.69 357.1,392.64 360.42,392.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.91,386.4 360.83,386.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.82,387.59 360.89,387.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.16,386.91 363.16,387.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.96,386.92 362.96,387.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.78,388.04 362.81,388.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.84,387.85 361.51,387.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.81,388.02 362.83,388" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.83,388 362.86,387.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.86,387.98 362.87,387.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.16,387.07 363.16,387.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.96,387.06 362.96,387.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.94,387.95 362.96,387.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.96,387.95 362.97,387.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.97,387.95 362.99,387.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.99,387.94 363,387.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363,387.93 363.02,387.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.02,387.92 363.03,387.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.06,387.84 363.03,387.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.09,387.75 363.06,387.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.11,387.64 363.09,387.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.16,387.22 363.15,387.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.15,387.37 363.13,387.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.13,387.52 363.11,387.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.89,387.7 362.87,387.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.84,387.85 362.84,387.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.84,387.87 362.84,387.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.84,387.88 362.85,387.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.85,387.9 362.86,387.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.86,387.92 362.87,387.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.87,387.93 362.89,387.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.89,387.94 362.91,387.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.91,387.95 362.92,387.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.92,387.95 362.94,387.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.87,387.79 362.84,387.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.96,387.21 362.95,387.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.92,387.6 362.89,387.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.95,387.35 362.94,387.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.94,387.48 362.92,387.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.89,387.7 360.97,387.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.97,387.8 361.07,387.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.07,387.89 361.18,387.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.18,387.96 361.3,388.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.3,388.06 361.3,388.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.41,387.95 361.51,387.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.3,388.17 361.3,388.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.3,388.18 361.31,388.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.31,388.2 361.31,388.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.31,388.22 361.32,388.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.32,388.23 361.34,388.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.34,388.25 361.35,388.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.35,388.26 361.37,388.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.37,388.27 361.39,388.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.39,388.27 361.41,388.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.3,388.06 361.31,388.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.31,388.02 361.32,387.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.32,387.99 361.35,387.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.35,387.97 361.39,387.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.39,387.96 361.41,387.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.69,388.17 362.68,388.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.68,388.2 362.66,388.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.66,388.23 362.63,388.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.63,388.26 362.6,388.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.6,388.27 362.58,388.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.69,388.06 362.69,388.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.69,388.06 362.68,388.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.68,388.04 362.68,388.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.68,388.02 362.67,388.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.67,388.01 362.66,387.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.66,387.99 362.65,387.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.65,387.98 362.63,387.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.63,387.97 362.62,387.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.62,387.96 362.6,387.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.6,387.96 362.58,387.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.69,388.06 362.72,388.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.72,388.06 362.75,388.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.75,388.05 362.78,388.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.58,387.95 361.41,387.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.58,388.27 361.41,388.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.82,386.11 362.79,386.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.58,386.28 362.84,386.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.88,386.2 362.87,386.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.87,386.17 362.85,386.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.85,386.14 362.82,386.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.03,386.22 363.02,386.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.02,386.21 363.01,386.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.01,386.2 362.99,386.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.99,386.19 362.98,386.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.98,386.18 362.96,386.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.96,386.17 362.94,386.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.06,386.29 363.09,386.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.03,386.22 363.06,386.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.13,386.62 363.15,386.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.09,386.38 363.11,386.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.11,386.49 363.13,386.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.87,386.34 362.89,386.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.84,386.28 362.87,386.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.94,386.65 362.95,386.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.89,386.42 362.92,386.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.92,386.53 362.94,386.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.94,386.17 362.92,386.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.92,386.17 362.9,386.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.9,386.18 362.89,386.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.89,386.19 362.87,386.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.87,386.2 362.86,386.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.86,386.21 362.85,386.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.85,386.23 362.84,386.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.84,386.24 362.84,386.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.84,386.26 362.84,386.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.15,386.76 363.16,386.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.95,386.78 362.96,386.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.48,386.17 361.58,386.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.36,386.1 361.23,386.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.23,386.14 361.11,386.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.11,386.21 361,386.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361,386.3 360.91,386.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.48,385.85 361.46,385.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.46,385.86 361.44,385.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.44,385.86 361.42,385.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.42,385.87 361.41,385.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.41,385.88 361.4,385.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.4,385.89 361.39,385.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.39,385.91 361.38,385.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.38,385.92 361.37,385.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.37,385.94 361.37,385.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.37,386.07 361.37,385.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.48,386.17 361.44,386.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.44,386.17 361.41,386.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.41,386.15 361.39,386.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.39,386.12 361.37,386.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.37,386.09 361.37,386.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.69,386.07 362.69,385.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.58,385.85 362.62,385.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.62,385.86 362.65,385.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.65,385.88 362.67,385.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.67,385.91 362.69,385.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.69,385.94 362.69,385.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.79,386.09 362.76,386.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.76,386.08 362.72,386.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.72,386.07 362.69,386.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.58,386.17 362.6,386.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.6,386.17 362.62,386.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.62,386.17 362.63,386.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.63,386.16 362.65,386.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.65,386.15 362.66,386.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.66,386.13 362.67,386.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.67,386.12 362.68,386.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.68,386.1 362.68,386.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.68,386.09 362.69,386.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.58,385.85 361.48,385.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.58,386.17 361.48,386.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.74,386.92 360.74,387.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.74,387.21 360.75,387.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.75,387.34 360.78,387.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.78,387.47 360.82,387.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.78,386.64 360.75,386.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.83,386.52 360.78,386.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.75,386.78 360.74,386.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.91,390.93 360.83,390.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.82,389.74 360.89,389.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.16,390.42 363.16,390.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.96,390.41 362.96,390.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.78,389.29 362.81,389.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.84,389.48 361.51,389.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.81,389.31 362.83,389.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.83,389.33 362.86,389.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.86,389.36 362.87,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.16,390.26 363.16,390.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.96,390.27 362.96,390.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.94,389.38 362.96,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.96,389.38 362.97,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.97,389.38 362.99,389.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.99,389.39 363,389.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363,389.4 363.02,389.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.02,389.41 363.03,389.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.06,389.49 363.03,389.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.09,389.58 363.06,389.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.11,389.69 363.09,389.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.16,390.11 363.15,389.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.15,389.96 363.13,389.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.13,389.82 363.11,389.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.89,389.63 362.87,389.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.84,389.48 362.84,389.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.84,389.47 362.84,389.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.84,389.45 362.85,389.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.85,389.43 362.86,389.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.86,389.42 362.87,389.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.87,389.4 362.89,389.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.89,389.39 362.91,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.91,389.38 362.92,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.92,389.38 362.94,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.87,389.55 362.84,389.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.96,390.12 362.95,389.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.92,389.73 362.89,389.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.95,389.98 362.94,389.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.94,389.85 362.92,389.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.89,389.63 360.97,389.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.97,389.53 361.07,389.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.07,389.45 361.18,389.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.18,389.37 361.3,389.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.3,389.27 361.3,389.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.41,389.38 361.51,389.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.3,389.17 361.3,389.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.3,389.15 361.31,389.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.31,389.13 361.31,389.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.31,389.11 361.32,389.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.32,389.1 361.34,389.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.34,389.08 361.35,389.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.35,389.07 361.37,389.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.37,389.07 361.39,389.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.39,389.06 361.41,389.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.3,389.27 361.31,389.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.31,389.31 361.32,389.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.32,389.34 361.35,389.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.35,389.36 361.39,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.39,389.38 361.41,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.69,389.17 362.68,389.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.68,389.13 362.66,389.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.66,389.1 362.63,389.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.63,389.07 362.6,389.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.6,389.06 362.58,389.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.69,389.27 362.69,389.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.69,389.27 362.68,389.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.68,389.29 362.68,389.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.68,389.31 362.67,389.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.67,389.33 362.66,389.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.66,389.34 362.65,389.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.65,389.35 362.63,389.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.63,389.36 362.62,389.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.62,389.37 362.6,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.6,389.38 362.58,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.69,389.27 362.72,389.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.72,389.28 362.75,389.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.75,389.28 362.78,389.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.58,389.38 361.41,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.58,389.06 361.41,389.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.82,391.22 362.79,391.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.58,391.05 362.84,391.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.88,391.13 362.87,391.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.87,391.16 362.85,391.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.85,391.19 362.82,391.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.03,391.11 363.02,391.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.02,391.12 363.01,391.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.01,391.14 362.99,391.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.99,391.15 362.98,391.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.98,391.15 362.96,391.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.96,391.16 362.94,391.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.06,391.04 363.09,390.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.03,391.11 363.06,391.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.13,390.71 363.15,390.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.09,390.95 363.11,390.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.11,390.84 363.13,390.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.87,390.99 362.89,390.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.84,391.05 362.87,390.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.94,390.69 362.95,390.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.89,390.91 362.92,390.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.92,390.81 362.94,390.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.94,391.16 362.92,391.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.92,391.16 362.9,391.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.9,391.15 362.89,391.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.89,391.15 362.87,391.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.87,391.13 362.86,391.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.86,391.12 362.85,391.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.85,391.11 362.84,391.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.84,391.09 362.84,391.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.84,391.07 362.84,391.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.15,390.57 363.16,390.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.95,390.55 362.96,390.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.48,391.16 361.58,391.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.36,391.24 361.23,391.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.23,391.19 361.11,391.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.11,391.12 361,391.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361,391.03 360.91,390.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.48,391.48 361.46,391.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.46,391.48 361.44,391.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.44,391.47 361.42,391.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.42,391.46 361.41,391.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.41,391.45 361.4,391.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.4,391.44 361.39,391.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.39,391.42 361.38,391.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.38,391.41 361.37,391.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.37,391.39 361.37,391.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.37,391.27 361.37,391.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.48,391.16 361.44,391.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.44,391.17 361.41,391.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.41,391.18 361.39,391.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.39,391.21 361.37,391.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.37,391.25 361.37,391.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.69,391.27 362.69,391.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.58,391.48 362.62,391.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.62,391.47 362.65,391.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.65,391.45 362.67,391.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.67,391.42 362.69,391.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.69,391.39 362.69,391.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.79,391.24 362.76,391.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.76,391.25 362.72,391.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.72,391.26 362.69,391.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.58,391.16 362.6,391.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.6,391.16 362.62,391.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.62,391.17 362.63,391.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.63,391.17 362.65,391.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.65,391.18 362.66,391.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.66,391.2 362.67,391.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.67,391.21 362.68,391.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.68,391.23 362.68,391.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.68,391.25 362.69,391.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.58,391.48 361.48,391.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.58,391.16 361.48,391.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.74,390.42 360.74,390.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.74,390.12 360.75,389.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.75,389.99 360.78,389.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.78,389.86 360.82,389.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.78,390.69 360.75,390.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.83,390.82 360.78,390.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.75,390.56 360.74,390.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.53,392.64 349.53,384.69 346.22,384.69 346.22,392.64 349.53,392.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.89,390.93 349.81,390.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.8,389.74 349.87,389.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.13,390.42 352.14,390.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.93,390.41 351.94,390.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.76,389.29 351.79,389.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.81,389.48 350.49,389.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.79,389.31 351.81,389.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.81,389.33 351.83,389.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.83,389.36 351.85,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.14,390.26 352.13,390.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.94,390.27 351.93,390.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.92,389.38 351.93,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.93,389.38 351.95,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.95,389.38 351.97,389.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.97,389.39 351.98,389.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.98,389.4 351.99,389.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.99,389.41 352,389.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.04,389.49 352,389.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.06,389.58 352.04,389.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.09,389.69 352.06,389.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.13,390.11 352.12,389.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.12,389.96 352.11,389.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.11,389.82 352.09,389.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.87,389.63 351.84,389.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.81,389.48 351.81,389.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.81,389.47 351.82,389.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.82,389.45 351.83,389.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.83,389.43 351.84,389.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.84,389.42 351.85,389.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.85,389.4 351.87,389.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.87,389.39 351.88,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.88,389.38 351.9,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.9,389.38 351.92,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.84,389.55 351.81,389.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.93,390.12 351.93,389.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.89,389.73 351.87,389.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.93,389.98 351.91,389.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.91,389.85 351.89,389.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.87,389.63 349.95,389.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.95,389.53 350.05,389.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.05,389.45 350.16,389.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.16,389.37 350.28,389.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.28,389.27 350.28,389.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.38,389.38 350.49,389.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.28,389.17 350.28,389.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.28,389.15 350.28,389.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.28,389.13 350.29,389.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.29,389.11 350.3,389.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.3,389.1 350.31,389.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.31,389.08 350.33,389.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.33,389.07 350.35,389.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.35,389.07 350.36,389.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.36,389.06 350.38,389.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.28,389.27 350.28,389.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.28,389.31 350.3,389.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.3,389.34 350.33,389.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.33,389.36 350.36,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.36,389.38 350.38,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.66,389.17 351.66,389.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.66,389.13 351.64,389.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.64,389.1 351.61,389.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.61,389.07 351.58,389.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.58,389.06 351.56,389.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.66,389.27 351.66,389.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.66,389.27 351.66,389.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.66,389.29 351.66,389.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.66,389.31 351.65,389.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.65,389.33 351.64,389.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.64,389.34 351.63,389.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.63,389.35 351.61,389.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.61,389.36 351.59,389.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.59,389.37 351.58,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.58,389.38 351.56,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.66,389.27 351.7,389.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.7,389.28 351.73,389.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.73,389.28 351.76,389.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.56,389.38 350.38,389.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.56,389.06 350.38,389.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.8,391.22 351.77,391.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.56,391.05 351.81,391.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.86,391.13 351.84,391.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.84,391.16 351.82,391.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.82,391.19 351.8,391.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.01,391.11 352,391.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352,391.12 351.99,391.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.99,391.14 351.97,391.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.97,391.15 351.95,391.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.95,391.15 351.94,391.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.94,391.16 351.92,391.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.04,391.04 352.06,390.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352,391.11 352.04,391.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.11,390.71 352.12,390.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.06,390.95 352.09,390.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.09,390.84 352.11,390.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.84,390.99 351.87,390.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.81,391.05 351.84,390.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.91,390.69 351.93,390.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.87,390.91 351.89,390.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.89,390.81 351.91,390.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.92,391.16 351.9,391.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.9,391.16 351.88,391.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.88,391.15 351.87,391.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.87,391.15 351.85,391.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.85,391.13 351.84,391.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.84,391.12 351.83,391.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.83,391.11 351.82,391.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.82,391.09 351.81,391.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.81,391.07 351.81,391.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.12,390.57 352.13,390.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.93,390.55 351.93,390.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.45,391.16 350.56,391.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.34,391.24 350.21,391.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.21,391.19 350.09,391.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.09,391.12 349.98,391.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.98,391.03 349.89,390.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.45,391.48 350.44,391.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.44,391.48 350.42,391.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.42,391.47 350.4,391.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.4,391.46 350.39,391.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.39,391.45 350.37,391.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.37,391.44 350.36,391.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.36,391.42 350.36,391.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.36,391.41 350.35,391.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.35,391.39 350.35,391.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.35,391.27 350.35,391.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.45,391.16 350.42,391.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.42,391.17 350.39,391.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.39,391.18 350.36,391.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.36,391.21 350.35,391.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="350.35,391.25 350.35,391.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.66,391.27 351.66,391.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.56,391.48 351.59,391.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.59,391.47 351.63,391.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.63,391.45 351.65,391.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.65,391.42 351.66,391.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.66,391.39 351.66,391.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.77,391.24 351.73,391.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.73,391.25 351.7,391.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.7,391.26 351.66,391.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.56,391.16 351.58,391.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.58,391.16 351.59,391.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.59,391.17 351.61,391.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.61,391.17 351.63,391.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.63,391.18 351.64,391.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.64,391.2 351.65,391.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.65,391.21 351.66,391.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.66,391.23 351.66,391.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.66,391.25 351.66,391.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.56,391.48 350.45,391.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="351.56,391.16 350.45,391.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.71,390.42 349.71,390.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.71,390.12 349.72,389.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.72,389.99 349.75,389.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.75,389.86 349.8,389.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.76,390.69 349.72,390.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.81,390.82 349.76,390.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.72,390.56 349.71,390.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="349.53,384.69 354.18,384.69 354.18,387.34 349.53,387.34 349.53,384.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="308.51,335.57 308.01,335.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="307.95,335.79 307.95,345.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.57,335.79 308.57,345.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.47,335.57 308.57,335.57 308.57,335.79 308.37,335.79 308.37,335.85 308.15,335.85 308.15,335.79 307.95,335.79 307.95,335.57 308.03,335.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.26,335.85 308.26,345.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.86,382.39 380.25,382.39 380.25,384.41 377.86,384.41 377.86,382.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.79,382.44 311.77,382.44 311.77,384.44 309.79,384.44 309.79,382.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.96,382.37 298.95,382.37 298.95,384.35 296.96,384.35 296.96,382.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.94,379.29 285.95,379.29 285.95,381.64 283.94,381.64 283.94,379.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.28,356.2 286.29,356.2 286.29,358.55 284.28,358.55 284.28,356.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.31,430.8 299.3,430.8 299.3,432.78 297.31,432.78 297.31,430.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.94,330.76 311.93,330.76 311.93,332.75 309.94,332.75 309.94,330.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448,382.25 446.01,382.25 446.01,384.25 448,384.25 448,382.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.15,382.15 296.35,382.15 296.35,383.47 295.15,383.47 295.15,382.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="413.94,435.47 412.19,435.47 412.19,433.71 413.94,433.71 413.94,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="411.97,408.01 413.95,408.01 413.95,409.99 411.97,409.99 411.97,408.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="411.98,384.36 413.97,384.36 413.97,382.37 411.98,382.37 411.98,384.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="488.79,384.69 492.76,384.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.79,388.67 490.01,388.47 491.12,387.91 492,387.03 492.57,385.92 492.76,384.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.79,388.67 488.79,388.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.79,388.89 488.34,388.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.34,388.89 488.34,388.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.34,388.67 488.79,388.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.79,384.47 488.79,384.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.79,384.69 488.34,384.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.34,384.69 488.34,384.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.34,384.47 488.79,384.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.87,413.27 336.32,413.27 336.32,413.49 335.87,413.49 335.87,413.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.89,409.91 298.88,409.91 298.88,408.01 296.89,408.01 296.89,409.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.44,376.69 348.44,372.71 348.25,372.71 348.25,376.69 348.44,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.48,377.31 338.69,377.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.48,376.69 338.69,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<path d="M345.23 376.99L345.23 377 338.74 377 338.74 376.99 345.23 376.99Z" fill-rule="evenodd" fill="cyan"/>
+<polyline points="352.22,376.69 352.03,375.46 351.46,374.35 350.58,373.47 349.47,372.91 348.25,372.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.51,376.69 338.31,375.46 337.75,374.35 336.87,373.47 335.76,372.91 334.53,372.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,194.85 323.86,194.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,198.82 326.79,198.68 325.82,198.27 324.98,197.62 324.35,196.77 323.97,195.78 323.86,194.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,194.97 323.87,194.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,194.97 327.84,194.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,194.85 327.84,194.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.28,194.62 328.28,194.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.28,194.85 327.84,194.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,194.85 327.84,194.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,194.62 328.28,194.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.28,198.82 328.28,199.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.28,199.05 327.84,199.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,199.05 327.84,198.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,198.82 328.28,198.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="453.39,262.56 453.39,258.64 456,258.64 456,262.56 453.39,262.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.23,259.5 454.07,259.57 454,259.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.63,259.72 455.56,259.57 455.41,259.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.41,261.75 455.56,261.68 455.63,261.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454,261.52 454.07,261.68 454.23,261.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.23,261.75 455.41,261.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454,259.72 454,261.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.41,259.5 454.23,259.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.63,261.52 455.63,259.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.5,261.97 455.85,261.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.5,259.28 453.5,261.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.85,259.28 453.5,259.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.85,261.97 455.85,259.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.65,260.62 454.7,260.5 454.82,260.45 454.94,260.5 454.98,260.62 454.94,260.74 454.82,260.79 454.7,260.74 454.65,260.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.09,253.78 456,253.78 456,255.77 448.09,255.77 448.09,253.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.15,408.01 309.15,406.68 305.18,406.68 305.18,408.01 309.15,408.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="305.18,408.01 305.18,406.68 301.2,406.68 301.2,408.01 305.18,408.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="304.15,407.08 304.66,407.35 304.66,406.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="304.15,407.08 304.92,407.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="308.13,407.08 308.64,407.35 308.64,406.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="308.13,407.08 308.89,407.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.2,408.01 301.2,406.68 297.22,406.68 297.22,408.01 301.2,408.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.18,407.08 300.68,407.35 300.68,406.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.18,407.08 300.94,407.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.18,408.01 311.51,408.01 311.51,390.42 311.18,390.42 311.18,407.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.18,408.01 309.15,408.01 309.15,407.67 311.18,407.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.73,401.84 301.71,401.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.71,404.49 298.73,404.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.51,404.27 298.51,402.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.51,404.27 298.57,404.43 298.73,404.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.73,401.84 298.57,401.91 298.51,402.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.71,404.05 301.71,402.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.71,402.28 301.58,401.97 301.27,401.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.27,404.49 301.58,404.36 301.71,404.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.07,404.49 298.07,401.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.51,401.4 298.2,401.53 298.07,401.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.51,401.4 301.27,401.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.71,401.84 301.58,401.53 301.27,401.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.27,404.94 301.58,404.81 301.71,404.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.27,404.94 298.51,404.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.07,404.49 298.2,404.81 298.51,404.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="310.52,401.7 307.53,401.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.97,399.05 310.74,399.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="310.74,396.62 310.74,401.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="310.74,396.62 310.67,396.46 310.52,396.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="310.52,401.7 310.67,401.64 310.74,401.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.53,399.49 307.53,401.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.53,401.26 307.66,401.57 307.97,401.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.97,399.05 307.66,399.18 307.53,399.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.18,396.4 311.18,401.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="310.74,402.14 311.05,402.01 311.18,401.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="310.74,402.14 307.97,402.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.53,401.7 307.66,402.01 307.97,402.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.18,396.4 311.05,396.08 310.74,395.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.53,396.4 310.52,396.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.53,396.84 307.53,398.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.53,398.61 307.66,398.92 307.97,399.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.97,396.4 307.66,396.53 307.53,396.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.97,395.95 307.66,396.08 307.53,396.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.97,395.95 310.74,395.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.73,396.84 301.71,396.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.71,399.5 298.73,399.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.51,399.28 298.51,397.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.51,399.28 298.57,399.43 298.73,399.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.73,396.84 298.57,396.91 298.51,397.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.71,399.05 301.71,397.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.71,397.29 301.58,396.97 301.27,396.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.27,399.5 301.58,399.37 301.71,399.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.07,399.5 298.07,396.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.51,396.4 298.2,396.53 298.07,396.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.51,396.4 301.27,396.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.71,396.84 301.58,396.53 301.27,396.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.27,399.94 301.58,399.81 301.71,399.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.27,399.94 298.51,399.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.07,399.5 298.2,399.81 298.51,399.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="302.85,383.89 302.85,386.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.2,386.88 300.2,383.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.42,383.67 302.63,383.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.42,383.67 300.27,383.74 300.2,383.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="302.85,383.89 302.79,383.74 302.63,383.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.64,386.88 302.41,386.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="302.41,386.88 302.73,386.75 302.85,386.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.2,386.43 300.33,386.75 300.64,386.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.2,383.23 302.85,383.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="303.3,383.67 303.17,383.36 302.85,383.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="303.3,383.67 303.3,386.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="302.85,386.88 303.17,386.75 303.3,386.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.76,386.43 299.89,386.75 300.2,386.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.76,386.43 299.76,383.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.2,383.23 299.89,383.36 299.76,383.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.78,383.89 307.78,386.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="305.13,386.88 305.13,383.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="305.35,383.67 307.56,383.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="305.35,383.67 305.19,383.74 305.13,383.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.78,383.89 307.71,383.74 307.56,383.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="305.57,386.88 307.34,386.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.34,386.88 307.65,386.75 307.78,386.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="305.13,386.43 305.26,386.75 305.57,386.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="305.13,383.23 307.78,383.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="308.22,383.67 308.09,383.36 307.78,383.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="308.22,383.67 308.22,386.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.78,386.88 308.09,386.75 308.22,386.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="304.68,386.43 304.81,386.75 305.13,386.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="304.68,386.43 304.68,383.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="305.13,383.23 304.81,383.36 304.68,383.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="303.55,392.9 303.84,392.22 303.83,391.47 303.52,390.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="303.39,391.36 303.27,391.06 302.99,390.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="303.39,391.36 303.39,392.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="302.99,392.77 303.27,392.63 303.39,392.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="303.41,392.81 303.68,392.18 303.67,391.51 303.39,390.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="303.41,392.81 303.55,392.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="303.39,390.89 303.52,390.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.8,390.77 301.53,390.83 301.35,391.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.35,391.03 301.17,391.84 301.35,392.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.8,390.77 302.99,390.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.35,392.66 301.53,392.86 301.8,392.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="302.99,392.77 301.8,392.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="305.74,397.32 305.74,402.63 303.52,402.63 303.52,397.32 305.74,397.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="298.01,388.27 300.61,388.27 300.61,394.76 298.01,394.76 298.01,388.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="451.71,254.96 451.68,254.89 451.6,254.86 451.55,254.86 451.47,254.89 451.41,255 451.39,255.18 451.39,255.36 451.42,255.51 451.47,255.58 451.55,255.62 451.58,255.62 451.66,255.58 451.72,255.51 451.74,255.4 451.74,255.36 451.71,255.25 451.66,255.18 451.58,255.15 451.55,255.15 451.47,255.18 451.41,255.26 451.39,255.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="452.04,253.78 452.04,255.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="455.68,254.96 455.65,254.89 455.57,254.86 455.52,254.86 455.43,254.89 455.38,255 455.35,255.18 455.36,255.36 455.38,255.51 455.44,255.58 455.52,255.62 455.55,255.62 455.63,255.58 455.68,255.51 455.71,255.4 455.71,255.36 455.68,255.25 455.63,255.18 455.54,255.15 455.52,255.15 455.44,255.18 455.38,255.26 455.36,255.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="446.3,256.33 448.52,256.33 448.52,261.19 446.3,261.19 446.3,256.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="456,266.71 456,263.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.96,266.71 456,266.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.96,263.28 452.96,266.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="456,263.28 452.96,263.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.21,263.28 453.21,266.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.11,268.26 452.1,268.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="449.11,268.64 453.09,268.64 453.09,270.63 449.11,270.63 449.11,268.64 453.09,270.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="413.97,382.92 418.29,382.92 418.29,384.05 413.97,384.05 413.97,382.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.06,355.76 359.06,353.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="355.08,355.76 355.08,353.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="359.06,353.77 358.3,353.92 357.66,354.35 357.23,355 357.07,355.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="357.07,355.76 356.92,355 356.49,354.35 355.85,353.92 355.08,353.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.26,247.54 438.29,247.54 438.29,253.5 446.26,253.5 446.26,247.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.26,229.58 345.97,229.58 345.97,235.03 353.26,235.03 353.26,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.86,247.54 345.91,247.54 345.91,253.5 353.86,253.5 353.86,247.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.27,306.28 311.93,306.28 311.93,318.54 320.27,318.54 320.27,306.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,255.63 509.06,255.63 509.06,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.33,383.47 283.11,383.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,383.47 283.11,382.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,382.81 283.33,382.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.33,382.81 283.33,383.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,382.81 282.45,382.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,382.59 283.11,382.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,382.59 283.11,382.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,382.81 282.45,382.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.84,434.06 509.06,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,434.06 509.06,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,434.72 508.84,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.84,434.72 508.84,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,434.06 509.73,433.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,433.84 509.06,433.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,433.84 509.06,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,434.06 509.73,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,255.85 509.73,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.73,255.63 509.06,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,255.63 509.06,255.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,255.85 509.73,255.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.84,255.63 509.06,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,255.63 509.06,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.06,254.96 508.84,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.84,254.96 508.84,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.85,434.72 295.63,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,434.72 295.63,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,434.06 295.85,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.85,434.06 295.85,434.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,433.84 295.63,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.63,434.06 294.96,434.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,434.06 294.96,433.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.96,433.84 295.63,433.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.09,279.91 448.09,279.81 446.21,279.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.03,382.37 480.25,382.37 480.25,383.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.76,383.53 507.76,382.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.89,383.03 505.89,382.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.96,372.36 321.01,372.17 321.13,372.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.45,372.02 323.57,372.17 323.61,372.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.45,374.17 323.45,372.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.13,372.02 321.13,374.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.61,374.3 323.61,372.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.61,374.3 323.57,374.43 323.46,374.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.45,374.17 323.4,374.31 323.29,374.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.29,374.39 322.29,374.5 321.29,374.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.29,374.39 321.17,374.31 321.13,374.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.96,372.36 320.96,374.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.46,374.51 322.29,374.67 321.11,374.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="321.11,374.51 321,374.43 320.96,374.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.45,372.02 321.13,372.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="314,365.16 314,371.79 317.31,371.79 317.31,365.16 314,365.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="323.95,365.16 323.95,371.79 327.26,371.79 327.26,365.16 323.95,365.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.02,435.47 346.02,435.58 344.03,435.58 344.03,435.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.33,396.98 424.78,396.98 424.78,393.67 412.33,393.67 412.33,396.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="424.78,393.67 421.48,393.67 421.48,386.37 424.78,386.37 424.78,393.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="412.33,413.29 424.78,413.29 424.78,409.99 412.33,409.99 412.33,413.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="424.78,409.99 421.48,409.99 421.48,402.68 424.78,402.68 424.78,409.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="424.78,413.29 421.48,413.29 421.48,420.59 424.78,420.59 424.78,413.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="412.33,424.26 428.59,424.26 428.59,424.54 412.33,424.54 412.33,424.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.47,315.18 307.47,313.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="428.59,424.54 428.27,424.54 428.27,430.36 428.59,430.36 428.59,424.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.85,316.18 307.85,315.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.85,315.51 307.85,314.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.85,314.52 307.85,313.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.85,313.52 307.85,312.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.85,312.53 307.85,312.2 308.18,312.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="308.51,312.2 309.18,312.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.51,312.2 309.84,312.2 309.84,312.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.84,312.86 309.84,313.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.84,313.86 309.84,314.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.84,314.85 309.84,315.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.84,315.85 309.84,316.18 309.51,316.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.18,316.18 308.51,316.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="308.18,316.18 307.85,316.18 308.1,315.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="308.25,315.37 308.55,314.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="308.7,314.48 308.99,313.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.14,313.59 309.44,313" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.59,312.71 309.84,312.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="480.63,347.88 469.58,347.88 469.58,356.73 480.63,356.73 480.63,347.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.98,409.8 343.98,409.8 343.98,407.43 345.98,407.43 345.98,409.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="343.81,382.58 345.81,382.58 345.81,384.57 343.81,384.57 343.81,382.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="377.98,407.61 379.98,407.61 379.98,409.98 377.98,409.98 377.98,407.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.17,419.31 336.38,419.31 336.38,417.95 336.17,417.95 336.17,419.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="309.86,356.4 311.85,356.4 311.85,358.39 309.86,358.39 309.86,356.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="334.53,376.69 334.53,372.71 334.33,372.71 334.33,376.69 334.53,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.67,435.47 387.89,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.89,435.47 387.89,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.89,436.13 387.67,436.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.67,436.13 387.67,435.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.1,414.25 310.1,414.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="509.06,306.65 507.76,306.65" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="509.06,306.15 507.76,306.15" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="309.74,211.61 327.84,211.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="309.74,212.11 327.84,212.11" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="311.93,228.19 327.84,228.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="311.93,227.7 327.84,227.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="298.88,408.45 309.63,408.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="421.64,333.93 421.64,340.65" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="421.2,333.93 421.2,340.65" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.61,330.12 404.57,330.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.61,330.62 404.57,330.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="437.81,418.06 438.68,418.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="437.81,418.06 437.81,421.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="508.46,415.3 489.06,415.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="488.62,415.3 486.8,415.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="482.1,418.06 482.1,415.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="455.68,333.93 455.68,346.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="438.61,359.57 438.61,359.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="463.28,358.16 463.02,358.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="463.28,358.61 463.02,358.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="489.45,331.84 505.89,331.84" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="489.01,319.01 509.06,319.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="490.04,256.24 490.04,265" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="508.46,274.61 501.56,274.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="309.74,194.41 327.84,194.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,211.61 327.84,211.29" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="507.76,331.84 509.06,331.84" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="507.76,332.33 509.06,332.33" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="482.43,237.26 470.87,237.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="482.43,237.7 470.87,237.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="462.89,254.06 462.89,237.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="463.34,254.06 463.34,237.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="463.8,237.7 463.34,237.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="463.8,237.26 462.89,237.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="468.22,237.7 468.22,237.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="463.8,237.7 463.8,237.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.87,237.26 470.87,237.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="468,237.26 468,237.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="309.74,193.97 327.84,193.97" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,193.32 328.28,193.32" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="283.85,280.53 283.11,280.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="283.85,280.97 283.11,280.97" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="313.58,271.74 313.58,271.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="314.02,271.74 314.02,271.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="314.02,279.75 314.02,279.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="313.58,279.75 313.58,279.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="314.02,271.79 313.58,271.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="314.02,279.75 313.58,279.75" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="310.55,414.25 310.55,414.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="296.69,408.01 309.63,408.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.38,417.95 336.38,413.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="335.93,409.18 336.38,409.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="310.1,409.91 310.1,409.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="310.55,409.91 310.55,409.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="310.1,409.91 310.55,409.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="310.1,414.22 310.55,414.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="455.24,333.93 455.24,346.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="455.95,358.16 455.55,358.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="455.95,358.61 455.55,358.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="439.05,376.92 455.11,376.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="438.61,377.37 455.11,377.37" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="439.05,359.57 439.05,359.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="439.05,359.81 438.61,359.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="439.05,372.3 439.05,376.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="438.61,372.3 438.61,377.37" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="438.26,418.51 438.68,418.51" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="438.26,418.51 438.26,421.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="437.81,429.45 437.81,435.47" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="438.26,429.45 438.26,435.47" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="437.81,421.05 438.26,421.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="437.81,429.45 438.26,429.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="449.07,418.06 455.97,418.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="449.07,418.51 455.97,418.51" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="481.65,418.06 481.65,415.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="508.46,415.74 486.8,415.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="482.49,415.74 482.1,415.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="482.49,415.3 481.65,415.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="489.45,319.45 509.06,319.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="489.45,332.28 505.89,332.28" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="489.45,332.28 489.45,335.29" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="489.45,330.72 489.45,331.84" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="489.01,330.72 489.01,331.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="489.45,319.45 489.45,320.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="489.01,319.01 489.01,320.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="468.7,329.04 469.29,329.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469.14,329.48 469.29,329.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="468.7,331.14 468.7,329.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469.14,331.14 469.14,329.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="482.12,331.09 482.12,329.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="481.68,331.09 481.68,329.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475.63,329.48 475.63,331.14" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475.19,329.48 475.19,331.14" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475.63,329.48 475.78,329.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475.04,329.48 475.19,329.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475.04,329.04 475.78,329.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="481.53,329.48 481.68,329.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="481.53,329.04 482.12,329.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.13,176.42 378.13,172.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.35,176.42 378.35,176.14" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="380.01,176.42 380.01,172.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="379.79,176.42 379.79,172.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.82,175.92 378.82,172.8" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="379.04,176.14 379.04,172.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.35,172.58 379.04,172.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.13,175.92 378.82,175.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.13,172.8 378.82,172.8" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.35,176.14 379.04,176.14" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.35,172.58 378.35,172.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="490.48,256.24 490.48,265" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="508.46,274.17 501.56,274.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.06,274.17 490.48,274.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.06,274.61 490.04,274.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.06,274.17 491.06,274.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="501.56,274.17 501.56,274.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.15,274.17 495.15,274.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="490.04,270.08 490.04,274.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="490.48,270.08 490.48,274.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="490.04,265 490.48,265" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="490.04,270.08 490.48,270.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="455.55,359.57 455.55,370.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="455.1,359.57 455.1,370.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,182.71 327.84,171.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="328.28,182.71 328.28,171.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,189.12 328.28,189.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,182.71 327.84,189.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="328.28,182.71 328.28,189.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="328.28,200.35 328.28,206.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,200.35 327.84,206.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,200.35 327.84,199.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,194.62 327.84,194.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,211.61 327.84,206.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,193.97 327.84,193.32" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="328.28,193.32 328.28,194.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="328.28,199.05 328.28,200.35" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,212.11 327.84,212.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,212.76 328.28,212.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,223.37 327.84,227.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,216.96 328.28,216.96" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,223.37 327.84,216.96" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="328.28,223.37 328.28,216.96" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="328.28,206.54 328.28,212.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="328.28,223.37 328.28,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="370.53,334.26 370.97,334.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="370.97,334.26 370.97,333.97" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="370.53,334.26 370.53,333.97" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="342.1,254.44 344.09,254.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="342.54,254.94 344.09,254.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="482.12,331.09 489.01,331.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="482.12,331.53 489.01,331.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="489.01,335.29 489.45,335.29" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="489.01,331.53 489.01,335.29" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="508.46,396.18 489.06,396.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="508.46,395.68 488.81,395.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="488.32,395.68 487.68,395.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="487.68,395.68 487.68,396.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="488.62,396.18 488.62,397.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="489.06,396.18 489.06,397.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="488.62,396.18 487.68,396.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="489.06,407.88 489.06,415.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="488.62,407.88 488.62,415.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="455.24,346.03 455.68,346.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="421.2,340.65 421.64,340.65" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="421.2,349.05 421.64,349.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="421.64,349.05 421.64,355.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="421.2,349.05 421.2,355.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="334.28,307.32 338.02,307.32" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.97,305.45 345.97,281.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.09,281.68 334.72,281.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.09,281.24 334.72,281.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.52,305.45 345.52,281.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="334.72,306.88 338.02,306.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="334.28,307.32 334.28,280.25" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="331.52,280.25 331.52,279.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="334.72,306.88 334.72,281.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="342.44,307.32 344.09,307.32" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="342.44,306.88 344.09,306.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.97,307.32 345.97,316.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="380.01,307.32 380.01,316.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.97,305.45 378.13,305.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.97,305.89 378.13,305.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.52,307.32 345.52,316.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="379.56,307.32 379.56,316.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.97,316.06 360.56,316.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.52,316.5 360.56,316.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="364.98,316.5 380.01,316.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="364.98,316.06 379.56,316.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="414.05,281.68 414.05,287.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="414.05,307.32 414.05,313.85" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="284.24,330.57 286.28,330.57 286.28,332.92 284.24,332.92 284.24,330.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="413.6,281.68 413.6,287.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="284.43,305.32 286.42,305.32 286.42,307.31 284.43,307.31 284.43,305.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="413.6,307.32 413.6,313.85" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,279.81 389.3,279.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="384.88,279.81 380.01,279.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,280.25 393.71,280.25" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.27,280.25 389.07,280.25" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="385.1,280.25 380.01,280.25" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="413.6,292.85 393.71,292.85" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="413.6,293.29 393.71,293.29" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,305.89 393.71,305.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,306.33 393.71,306.33" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="413.6,318.93 393.71,318.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="414.05,319.37 393.27,319.37" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.71,280.25 393.71,292.85" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="286.44,281.69 283.85,281.69 283.85,279.64 286.44,279.64 286.44,281.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="393.71,293.29 393.71,305.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.71,306.33 393.71,318.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.27,280.25 393.27,316.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.27,316.5 393.27,319.37" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="414.05,298.37 414.05,305.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="413.6,298.37 413.6,305.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="413.6,293.29 413.6,293.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="414.05,292.18 414.05,293.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="413.6,292.18 413.6,292.85" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="414.1,318.27 413.6,318.27" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="414.1,313.85 413.6,313.85" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="414.05,318.27 414.05,319.37" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="413.6,318.27 413.6,318.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.13,305.45 378.13,281.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.57,305.45 378.57,281.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.13,281.68 369.07,281.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.13,279.81 369.07,279.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.13,281.24 369.51,281.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.13,280.25 369.51,280.25" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.62,279.81 348.62,281.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.18,280.25 348.18,281.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.04,279.81 353.04,281.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.48,280.25 353.48,281.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.62,281.68 345.97,281.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.62,279.81 345.97,279.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.18,281.24 345.97,281.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.18,280.25 345.97,280.25" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.62,280.99 348.62,280.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.04,280.99 353.04,280.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.37,273.25 344.59,273.25" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.37,271.3 344.59,271.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,279.81 412.17,261.13" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,256.93 412.17,256.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,254.17 412.17,242.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,241.62 412.17,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,227.7 412.17,214.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,213.77 412.17,203.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,202.06 412.17,200.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,199.96 412.17,186.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,186.14 412.17,178.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.61,227.7 412.61,203.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.61,254.17 412.61,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.61,279.81 412.61,261.13" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.61,256.93 412.61,256.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.61,202.06 412.61,178.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="396.31,171.39 396.31,172.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="395.87,171.39 395.87,172.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,176.42 412.17,172.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.61,176.42 412.61,172.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,227.7 393.94,227.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,228.14 393.94,228.14" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,214.21 393.94,214.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,213.77 393.94,213.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,200.4 393.94,200.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,199.96 393.94,199.96" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,186.58 393.94,186.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,186.14 393.94,186.14" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,241.62 393.94,241.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,242.06 393.94,242.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.33,279.81 361.33,281.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.89,280.25 360.89,281.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="369.07,279.81 369.07,281.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="369.51,280.25 369.51,281.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.33,281.68 353.04,281.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.33,279.81 353.04,279.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.89,281.24 353.48,281.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.89,280.25 353.48,280.25" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,256.49 393.06,256.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.17,256.04 393.5,256.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.94,254.61 393.5,254.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.06,256.49 393.06,254.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.94,254.61 393.94,247.15" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.5,256.04 393.5,254.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.5,254.17 393.5,247.15" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.5,254.17 393.06,254.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.37,256.04 344.09,256.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.37,255.6 342.1,255.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="342.54,255.6 344.09,255.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="355.41,256.04 355.41,254.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.97,255.6 354.97,254.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.97,254.61 354.97,254.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.53,254.17 355.41,254.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.47,254.61 380.01,254.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.13,254.61 361.82,254.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.13,254.17 362.1,254.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.66,254.17 361.38,254.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.82,255.6 361.82,254.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.38,256.04 361.38,254.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.47,255.6 380.01,255.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.13,255.6 361.82,255.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.13,256.04 361.38,256.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.09,279.81 331.52,279.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.09,280.25 334.72,280.25" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="334.28,280.25 332.06,280.25" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="334.72,281.24 334.72,280.25" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.59,273.25 344.59,271.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.97,255.6 354.97,255.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.97,256.04 355.41,256.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="342.1,255.6 342.1,254.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="342.54,255.6 342.54,254.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.09,176.42 344.09,172.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.97,176.42 345.97,172.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.52,176.42 345.52,172.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.53,176.42 344.53,172.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.5,222.39 393.5,212.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.94,222.39 393.94,214.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.94,213.77 393.94,212.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.94,180.84 393.94,172.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.5,180.84 393.5,172.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.5,194.65 393.5,185.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.94,194.65 393.94,186.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.94,186.14 393.94,185.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.94,208.47 393.94,200.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.94,199.96 393.94,199.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.5,208.47 393.5,199.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.91,229.58 387.47,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.02,229.58 380.01,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.13,229.58 370.5,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="370.06,229.58 362.1,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.47,229.13 380.01,229.13" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="333.59,227.54 344.09,227.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="334.03,227.98 344.09,227.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="355.25,227.54 355.25,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.22,227.54 361.22,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.22,227.54 387.91,227.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="355.25,229.58 353.92,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.81,227.98 354.81,229.13" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.66,227.98 361.66,229.13" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.81,229.13 353.92,229.13" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.66,227.98 378.13,227.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.02,232.23 386.25,232.23" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.02,232.67 386.25,232.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.91,229.58 387.91,227.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.47,229.13 387.47,227.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.22,227.54 361.22,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="362.1,229.58 362.1,232.23" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.66,229.58 361.22,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.66,229.58 361.66,233.33" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="370.06,229.58 370.06,232.23" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="379.07,232.23 379.07,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="370.5,229.58 370.5,232.23" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.62,232.23 378.62,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="380.01,227.98 387.47,227.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.13,229.13 361.66,229.13" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="370.06,232.23 369.28,232.23" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.62,232.23 377.68,232.23" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="362.87,232.23 362.87,232.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="369.28,232.23 369.28,232.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="362.87,232.67 362.1,232.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="362.87,232.23 362.1,232.23" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="371.27,232.23 371.27,232.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="377.68,232.23 377.68,232.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="379.84,232.23 379.84,232.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="386.25,232.23 386.25,232.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="371.27,232.67 369.28,232.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="371.27,232.23 370.5,232.23" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="379.84,232.67 377.68,232.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="379.84,232.23 379.07,232.23" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="362.1,233.33 361.66,233.33" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="362.1,237.31 361.66,237.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="362.1,237.31 362.1,254.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.66,237.31 361.66,254.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="362.1,232.67 362.1,233.33" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.02,232.23 387.02,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.02,237.31 387.47,237.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.02,233.33 387.47,233.33" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.47,233.33 387.47,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.02,233.33 387.02,232.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.91,256.04 387.91,254.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="380.01,254.17 387.02,254.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="380.01,256.04 387.91,256.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.47,254.17 387.47,237.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.47,255.6 387.47,254.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.02,254.17 387.02,237.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.47,254.17 387.91,254.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.94,227.7 393.94,226.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.94,241.62 393.94,240.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.94,236.32 393.94,228.14" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.5,236.32 393.5,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.5,227.54 393.5,226.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.5,247.37 393.94,247.37" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.94,242.95 393.94,242.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.5,242.95 393.5,240.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="325.94,254.44 325.94,253.34" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="326.38,254.44 326.38,253.34" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="311.93,229.58 325.94,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="326.38,229.58 328.28,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="311.93,229.08 327.84,229.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,228.19 327.84,229.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="333.59,227.54 333.59,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="334.03,227.98 334.03,229.13" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.97,227.98 354.81,227.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.09,229.13 334.03,229.13" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.09,229.58 334.47,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="334.03,229.58 333.59,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.09,227.54 355.25,227.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.91,235.69 345.91,241.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.91,246.35 345.91,246.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.47,235.69 345.47,241.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.47,246.35 345.47,246.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="334.47,229.58 334.47,234.8" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="334.03,229.58 334.03,234.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="334.47,234.8 326.38,234.8" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="334.03,234.36 326.38,234.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="326.38,234.36 326.38,233.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="326.38,230.13 326.38,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="326.38,240.85 326.38,234.8" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="325.94,240.85 325.94,234.11" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="325.94,230.11 325.94,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="326.38,240.85 326.38,239.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="325.94,240.85 325.94,239.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="326.38,252.01 326.38,248.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="325.94,252.01 325.94,248.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.66,260.02 343.66,271.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.1,260.02 344.1,271.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.66,260.02 344.1,260.02" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.15,171.45 378.07,171.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.94,172.6 396.31,172.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="395.87,172.16 393.5,172.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.01,330.71 308.01,335.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.01,349.93 308.01,351.75" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.01,363.33 308.01,365.1" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.01,377.34 308.01,377.34" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.51,349.93 308.51,350.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.51,351.38 308.51,351.75" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.51,363.33 308.51,364.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.51,364.83 308.51,365.1" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.51,376.01 308.51,376.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.84,376.81 359.22,376.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.05,376.81 347.97,376.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="347.48,376.81 345.48,376.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.34,377.31 359.22,377.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.11,376.74 410.12,376.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="399.51,376.74 398.85,376.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.35,376.74 397.69,376.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="411.79,377.24 410.12,377.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="399.51,377.24 397.69,377.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.35,359.57 398.35,376.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.85,359.57 398.85,376.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.65,377.3 412.65,359.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.11,376.74 412.11,359.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="384.59,376.74 383.63,376.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="371.69,376.74 371.03,376.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="385.75,377.24 383.63,377.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="370.53,344.87 370.53,344.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="370.53,345.48 370.53,377.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="371.03,344.87 371.03,355.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="371.03,359.57 371.03,376.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="384.59,359.57 384.59,376.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="385.09,359.57 385.09,376.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="385.75,376.74 385.09,376.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="371.69,377.24 370.53,377.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.61,359.57 353.57,359.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.34,359.08 353.57,359.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.49,359.08 333.64,359.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="371.03,344.87 370.53,344.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.57,344.98 370.53,344.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.57,345.48 370.53,345.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.57,344.98 353.57,333.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="334.14,377.34 308.01,377.34" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.48,330.71 308.73,330.71" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="309.84,331.14 309.84,307.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="309.81,306.67 310.05,306.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="300.06,307.21 305.64,307.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="300.6,306.67 305.64,306.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="305.64,306.67 305.64,307.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="283.7,300.96 295.27,300.96" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="283.7,301.5 295.27,301.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="299.62,300.96 300.06,300.96" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="299.62,301.5 300.06,301.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="300.06,281.05 300.06,300.96" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="300.06,301.5 300.06,307.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="286.44,281.05 300.06,281.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="300.6,280.51 300.6,306.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="286.44,280.51 300.6,280.51" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="295.27,300.96 295.27,301.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="299.62,300.96 299.62,301.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="309.81,307.21 309.84,307.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="333.64,352.02 333.1,352.02" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="333.64,357.76 333.1,357.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.46,433.48 344.46,431.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.85,433.48 344.85,430.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.37,423.43 348.69,423.43" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.91,423.97 348.69,423.97" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.05,423.43 353.99,423.43" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.05,423.97 353.45,423.97" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.99,423.43 353.99,435.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.45,423.97 353.45,435.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="346.02,433.48 344.85,433.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.46,433.48 343.37,433.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.37,433.48 343.37,435.47" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="346.02,433.48 346.02,435.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.37,431.09 344.46,431.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.91,430.7 344.85,430.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.37,431.09 343.37,423.43" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.91,430.7 343.91,423.97" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.69,423.43 348.69,423.97" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.05,423.43 353.05,423.97" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.37,435.27 341.66,435.27" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="362.27,435.36 353.99,435.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.45,435.36 346.02,435.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="362.27,435.47 362.27,435.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="341.66,435.47 341.66,435.27" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="380.01,316.05 393.27,316.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="380.01,316.5 393.27,316.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="318.05,397.76 335.67,397.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="335.67,408.57 335.67,408.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="335.67,408.08 318.05,408.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.17,397.26 336.17,398.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.17,408.57 336.17,406.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="335.73,408.08 335.73,406.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.17,404.11 336.17,402.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="335.73,404.11 335.73,402.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="321.32,279.81 325.68,279.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="321.32,280.35 325.14,280.35" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="331.52,280.72 330.65,280.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="326.36,280.72 325.68,280.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="332.06,281.26 330.65,281.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="326.36,281.26 325.14,281.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="325.68,279.81 325.68,280.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="325.14,280.35 325.14,281.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="331.52,280.25 331.52,280.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="332.06,280.25 332.06,281.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="326.36,280.72 326.36,281.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="330.65,280.72 330.65,281.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.37,271.3 336.37,273.25" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.49,359.57 333.64,359.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.61,359.07 404.57,359.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="328.28,199.05 327.84,199.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.5,227.54 393.11,227.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.11,227.54 393.11,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="393.11,229.58 393.5,229.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.51,350.77 336.49,350.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.51,351.38 333.1,351.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="341.66,435.27 343.37,435.27" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.17,417.95 336.38,417.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="337.23,435.47 337.23,435.27" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="337.23,435.27 336.17,435.27" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="371.03,360.05 384.59,360.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="309.81,307.21 309.81,306.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.01,322.68 308.73,322.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.01,377.34 308.01,376.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="303.98,309.28 303.56,309.69 303.73,310.52 303.75,310.4 303.85,310.18 303.97,310.06 304.12,310.02 304.25,310.11 304.37,310.33 304.41,310.51 304.44,310.81 304.41,311.07 304.3,311.29 304.18,311.41 304.03,311.45 303.96,311.4 303.88,311.27" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="304.59,310 305.34,309.24" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="305.65,307.61 305.55,307.82 305.53,308.17 305.61,308.65 305.68,308.91 305.84,309.31 305.99,309.49 306.14,309.45 306.22,309.37 306.33,309.15 306.34,308.81 306.26,308.32 306.19,308.06 306.03,307.66 305.88,307.48 305.73,307.52 305.65,307.61" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="306.39,307.42 306.37,307.33 306.36,307.11 306.38,306.98 306.44,306.81 306.61,306.64 306.71,306.65 306.78,306.7 306.87,306.83 306.92,307 306.92,307.22 306.91,307.57 306.73,308.86 307.31,308.28" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="307.35,307.24 308.1,306.49" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="308.65,306.94 308.15,305.1 309.23,306.36 308.74,304.52" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="404.79,381.18 404.28,381.48 404.23,382.32 404.28,382.2 404.43,382.03 404.59,381.94 404.74,381.94 404.84,382.06 404.89,382.3 404.89,382.49 404.84,382.79 404.74,383.03 404.59,383.21 404.43,383.3 404.28,383.3 404.23,383.23 404.18,383.08" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="405.2,382.04 406.12,381.51" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="406.84,380 406.68,380.18 406.58,380.51 406.53,381 406.53,381.27 406.58,381.69 406.68,381.91 406.84,381.91 406.94,381.85 407.09,381.67 407.19,381.34 407.24,380.86 407.24,380.58 407.19,380.16 407.09,379.94 406.94,379.94 406.84,380" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="407.6,380.01 407.6,379.92 407.65,379.71 407.7,379.59 407.81,379.44 408.01,379.32 408.11,379.35 408.16,379.42 408.22,379.57 408.22,379.75 408.16,379.96 408.06,380.29 407.55,381.5 408.27,381.08" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="408.57,380.09 409.49,379.56" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="409.9,380.14 409.9,378.23 410.62,379.73 410.62,377.82" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="411.03,379.49 411.03,377.58 411.69,377.2" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="411.03,378.49 411.44,378.25" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="411.03,379.49 411.69,379.11" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="411.29,421.52 410.87,421.94 411.04,422.77 411.06,422.64 411.16,422.43 411.29,422.3 411.43,422.27 411.56,422.36 411.68,422.58 411.72,422.75 411.75,423.06 411.72,423.32 411.61,423.53 411.49,423.66 411.34,423.69 411.28,423.65 411.19,423.51" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="411.9,422.24 412.66,421.49" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="412.96,419.85 412.86,420.06 412.84,420.41 412.92,420.89 412.99,421.16 413.15,421.55 413.3,421.73 413.45,421.69 413.54,421.61 413.64,421.4 413.65,421.05 413.57,420.57 413.5,420.31 413.34,419.91 413.19,419.73 413.04,419.77 412.96,419.85" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="413.7,419.66 413.68,419.58 413.67,419.36 413.69,419.23 413.75,419.06 413.92,418.89 414.03,418.89 414.09,418.94 414.18,419.07 414.23,419.25 414.23,419.47 414.22,419.81 414.04,421.11 414.62,420.53" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="414.66,419.48 415.41,418.73" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="416.12,417.02 415.99,416.93 415.84,416.97 415.67,417.14 415.57,417.35 415.53,417.61 415.58,417.78 415.67,417.92 415.73,417.96 415.84,417.97 416.14,417.89 416.25,417.9 416.31,417.94 416.4,418.08 416.47,418.34 416.43,418.6 416.33,418.81 416.17,418.98 416.02,419.02 415.89,418.93" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="416.79,418.35 416.3,416.51 416.84,415.97" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="416.53,417.39 416.87,417.05" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="416.79,418.35 417.34,417.81" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="301.22,280.28 300.8,280.69 300.97,281.53 300.99,281.4 301.09,281.18 301.22,281.06 301.37,281.02 301.5,281.11 301.61,281.34 301.66,281.51 301.69,281.82 301.65,282.08 301.55,282.29 301.42,282.41 301.27,282.45 301.21,282.4 301.12,282.27" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="301.84,281 302.59,280.25" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="302.89,278.61 302.79,278.82 302.78,279.17 302.85,279.65 302.92,279.91 303.08,280.31 303.24,280.49 303.39,280.45 303.47,280.37 303.57,280.15 303.58,279.81 303.51,279.33 303.44,279.06 303.28,278.67 303.12,278.49 302.97,278.52 302.89,278.61" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="303.68,277.81 303.58,278.03 303.59,278.24 303.63,278.42 303.72,278.55 303.83,278.56 304.02,278.48 304.17,278.44 304.3,278.53 304.39,278.67 304.46,278.93 304.47,279.15 304.45,279.28 304.35,279.49 304.18,279.66 304.03,279.7 303.96,279.65 303.88,279.52 303.8,279.25 303.8,279.03 303.84,278.78 303.94,278.56 304.08,278.31 304.14,278.14 304.14,277.92 304.09,277.74 304,277.61 303.85,277.65 303.68,277.81" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="304.31,277.19 304.9,276.6 304.8,279.03 305.39,278.45" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="305.15,276.35 305.73,275.77 305.64,278.2 306.22,277.61" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="306.26,276.57 307.01,275.82" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="307.56,276.28 307.07,274.43 308.15,275.69 307.65,273.85" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="307.98,273.51 308.69,275.15 308.4,273.1 309.11,274.73 308.82,272.68" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="309.08,272.86 309.14,272.69 309.2,272.3 309.69,274.15" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="463.78,370.85 463.27,371.15 463.22,371.99 463.27,371.87 463.43,371.69 463.58,371.6 463.73,371.61 463.83,371.73 463.89,371.97 463.89,372.15 463.83,372.46 463.73,372.7 463.58,372.88 463.43,372.97 463.27,372.96 463.22,372.9 463.17,372.75" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="464.96,370.63 464.91,370.47 464.81,370.35 464.7,370.32 464.5,370.44 464.4,370.59 464.29,370.83 464.24,371.04 464.19,371.34 464.19,371.8 464.24,372.04 464.29,372.19 464.4,372.31 464.5,372.35 464.7,372.23 464.81,372.08 464.91,371.84 464.96,371.63" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="465.32,370.42 465.32,370.33 465.37,370.12 465.42,370 465.52,369.85 465.73,369.73 465.83,369.76 465.88,369.82 465.93,369.97 465.93,370.16 465.88,370.37 465.78,370.7 465.27,371.9 465.98,371.49" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="466.8,369.11 466.29,370.68 467.06,370.23" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="466.8,369.11 466.8,371.02" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="302.19,283.23 301.77,283.65 301.94,284.48 301.96,284.35 302.06,284.14 302.19,284.01 302.34,283.98 302.47,284.07 302.58,284.29 302.63,284.47 302.65,284.77 302.62,285.03 302.52,285.24 302.39,285.37 302.24,285.41 302.18,285.36 302.09,285.23" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="302.8,283.95 303.56,283.2" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="303.86,281.56 303.76,281.78 303.74,282.12 303.82,282.6 303.89,282.87 304.05,283.26 304.2,283.44 304.35,283.41 304.44,283.32 304.54,283.11 304.55,282.76 304.48,282.28 304.4,282.02 304.25,281.62 304.09,281.44 303.94,281.48 303.86,281.56" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="304.65,280.77 304.55,280.98 304.56,281.2 304.6,281.38 304.69,281.51 304.8,281.51 304.99,281.43 305.14,281.4 305.27,281.49 305.36,281.62 305.43,281.89 305.43,282.1 305.42,282.23 305.31,282.45 305.15,282.61 305,282.65 304.93,282.6 304.84,282.47 304.77,282.21 304.77,281.99 304.8,281.73 304.91,281.52 305.05,281.26 305.11,281.09 305.1,280.87 305.06,280.7 304.97,280.56 304.82,280.6 304.65,280.77" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="305.28,280.14 305.86,279.56 305.77,281.99 306.36,281.4" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="306.11,279.31 306.7,278.72 306.61,281.15 307.19,280.57" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="307.23,279.53 307.98,278.77" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="308.53,279.23 308.03,277.39 309.11,278.65 308.62,276.8" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="308.95,276.47 309.66,278.1 309.37,276.05 310.07,277.69 309.79,275.63" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="310.11,275.86 310.09,275.78 310.09,275.56 310.1,275.43 310.16,275.26 310.33,275.09 310.44,275.09 310.5,275.14 310.59,275.27 310.64,275.45 310.64,275.67 310.63,276.01 310.45,277.31 311.03,276.73" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="327.59,280.68 327.17,281.09 327.34,281.93 327.36,281.8 327.46,281.58 327.59,281.46 327.74,281.42 327.87,281.51 327.98,281.73 328.03,281.91 328.06,282.22 328.02,282.47 327.92,282.69 327.79,282.81 327.65,282.85 327.58,282.8 327.49,282.67" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="328.21,281.4 328.96,280.65" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="329.17,279.65 329.15,279.57 329.14,279.35 329.16,279.22 329.22,279.05 329.39,278.88 329.5,278.89 329.56,278.93 329.65,279.07 329.7,279.24 329.7,279.46 329.69,279.81 329.51,281.1 330.09,280.52" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="330.35,277.92 329.93,278.34 330.1,279.17 330.12,279.04 330.22,278.83 330.35,278.7 330.49,278.67 330.63,278.76 330.74,278.98 330.78,279.15 330.81,279.46 330.78,279.72 330.68,279.93 330.55,280.06 330.4,280.09 330.34,280.05 330.25,279.91" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="330.96,278.64 331.72,277.89" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="332.26,278.35 331.77,276.5 332.85,277.76 332.35,275.92" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="332.69,275.58 333.39,277.22 333.1,275.17 333.81,276.8 333.52,274.75" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="408.84,262.08 408.42,262.49 408.59,263.32 408.61,263.2 408.71,262.98 408.84,262.86 408.99,262.82 409.12,262.91 409.23,263.13 409.28,263.31 409.3,263.61 409.27,263.87 409.17,264.09 409.04,264.21 408.89,264.25 408.83,264.2 408.74,264.07" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="409.46,262.79 410.21,262.04" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="410.42,261.05 410.39,260.96 410.39,260.75 410.41,260.62 410.47,260.45 410.63,260.28 410.74,260.28 410.81,260.33 410.9,260.46 410.94,260.64 410.95,260.86 410.94,261.2 410.75,262.5 411.34,261.92" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="411.59,259.32 411.18,259.74 411.35,260.57 411.37,260.44 411.47,260.23 411.59,260.1 411.74,260.06 411.87,260.16 411.98,260.38 412.03,260.55 412.06,260.86 412.02,261.12 411.92,261.33 411.8,261.46 411.65,261.49 411.58,261.45 411.49,261.31" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="412.21,260.04 412.96,259.29" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="413.51,259.74 413.01,257.9 414.09,259.16 413.6,257.32" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="444.97,273.36 444.45,273.66 444.4,274.51 444.45,274.39 444.61,274.21 444.76,274.12 444.91,274.12 445.02,274.24 445.07,274.49 445.07,274.67 445.02,274.97 444.91,275.21 444.76,275.39 444.61,275.48 444.45,275.48 444.4,275.41 444.35,275.26" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="446.14,273.14 446.09,272.99 445.99,272.86 445.89,272.83 445.68,272.95 445.58,273.1 445.48,273.34 445.43,273.55 445.37,273.85 445.37,274.31 445.43,274.55 445.48,274.7 445.58,274.83 445.68,274.86 445.89,274.74 445.99,274.59 446.09,274.35 446.14,274.14" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="446.45,272.87 446.55,272.72 446.7,272.36 446.7,274.27" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="447.88,271.95 447.83,271.8 447.68,271.8 447.57,271.86 447.42,272.04 447.32,272.37 447.27,272.85 447.27,273.31 447.32,273.64 447.42,273.76 447.57,273.77 447.63,273.74 447.78,273.56 447.88,273.32 447.93,273.01 447.93,272.92 447.88,272.68 447.78,272.56 447.63,272.55 447.57,272.58 447.42,272.76 447.32,273 447.27,273.31" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="483.12,383.85 482.7,384.27 482.87,385.1 482.89,384.97 482.99,384.76 483.11,384.63 483.26,384.6 483.39,384.69 483.5,384.91 483.55,385.09 483.58,385.39 483.54,385.65 483.44,385.86 483.32,385.99 483.17,386.03 483.1,385.98 483.01,385.85" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="484.19,383.33 484.1,383.2 483.97,383.11 483.87,383.1 483.7,383.27 483.64,383.44 483.6,383.7 483.61,383.92 483.64,384.22 483.76,384.66 483.87,384.88 483.96,385.02 484.09,385.11 484.19,385.11 484.36,384.95 484.42,384.77 484.46,384.51 484.45,384.3" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="484.49,383.04 484.46,382.95 484.46,382.73 484.48,382.6 484.54,382.43 484.7,382.27 484.81,382.27 484.87,382.32 484.96,382.45 485.01,382.63 485.02,382.84 485,383.19 484.82,384.49 485.4,383.9" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="485.66,381.31 485.24,381.72 485.41,382.56 485.43,382.43 485.53,382.21 485.66,382.09 485.81,382.05 485.94,382.14 486.05,382.36 486.1,382.54 486.13,382.84 486.09,383.1 485.99,383.32 485.86,383.44 485.72,383.48 485.65,383.43 485.56,383.3" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="356.49,170.97 356.08,171.39 356.25,172.22 356.26,172.09 356.37,171.88 356.49,171.75 356.64,171.72 356.77,171.81 356.88,172.03 356.93,172.21 356.96,172.51 356.92,172.77 356.82,172.98 356.69,173.11 356.55,173.15 356.48,173.1 356.39,172.97" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="357.57,170.45 357.48,170.32 357.35,170.23 357.24,170.22 357.08,170.39 357.02,170.56 356.98,170.82 356.99,171.04 357.01,171.34 357.13,171.78 357.24,172 357.33,172.14 357.46,172.23 357.57,172.23 357.74,172.07 357.8,171.89 357.83,171.63 357.83,171.42" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="357.8,170.11 357.86,169.94 357.91,169.55 358.41,171.4" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="358.46,169.01 358.91,168.55 358.85,169.5 358.98,169.38 359.08,169.38 359.15,169.43 359.26,169.65 359.31,169.83 359.34,170.13 359.3,170.39 359.2,170.6 359.07,170.73 358.93,170.77 358.86,170.72 358.77,170.59" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="454.7,181.65 454.28,182.07 454.45,182.9 454.47,182.77 454.57,182.56 454.69,182.44 454.84,182.4 454.97,182.49 455.09,182.71 455.13,182.89 455.16,183.19 455.13,183.45 455.02,183.67 454.9,183.79 454.75,183.83 454.68,183.78 454.6,183.65" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="455.77,181.13 455.69,181 455.56,180.91 455.45,180.9 455.28,181.07 455.22,181.24 455.18,181.5 455.19,181.72 455.22,182.02 455.34,182.46 455.45,182.68 455.54,182.82 455.67,182.91 455.78,182.91 455.94,182.75 456,182.58 456.04,182.32 456.03,182.1" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="456,180.79 456.06,180.62 456.12,180.23 456.61,182.08" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="457.08,179.27 456.66,179.69 456.83,180.52 456.85,180.39 456.95,180.18 457.07,180.06 457.22,180.02 457.35,180.11 457.47,180.33 457.51,180.51 457.54,180.81 457.51,181.07 457.4,181.29 457.28,181.41 457.13,181.45 457.06,181.4 456.98,181.27" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="338.23,435.67 337.81,436.08 337.98,436.92 338,436.79 338.1,436.57 338.23,436.45 338.38,436.41 338.51,436.5 338.62,436.73 338.67,436.9 338.7,437.21 338.66,437.47 338.56,437.68 338.43,437.8 338.28,437.84 338.22,437.79 338.13,437.66" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="339.31,435.15 339.22,435.01 339.09,434.92 338.98,434.92 338.82,435.08 338.76,435.25 338.72,435.51 338.72,435.73 338.75,436.04 338.87,436.47 338.98,436.7 339.07,436.83 339.2,436.92 339.31,436.93 339.48,436.76 339.54,436.59 339.57,436.33 339.57,436.11" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="339.6,434.85 339.58,434.77 339.57,434.55 339.59,434.42 339.65,434.25 339.82,434.08 339.92,434.08 339.99,434.13 340.08,434.26 340.13,434.44 340.13,434.66 340.12,435 339.94,436.3 340.52,435.72" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="340.28,433.62 340.86,433.04 340.94,435.3" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="482.89,357.16 482.47,357.58 482.64,358.41 482.66,358.28 482.76,358.07 482.88,357.94 483.03,357.91 483.16,358 483.28,358.22 483.32,358.4 483.35,358.7 483.32,358.96 483.21,359.17 483.09,359.3 482.94,359.34 482.87,359.29 482.79,359.16" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="483.97,356.64 483.88,356.51 483.75,356.41 483.64,356.41 483.47,356.58 483.41,356.75 483.38,357.01 483.38,357.22 483.41,357.53 483.53,357.97 483.64,358.19 483.73,358.32 483.86,358.42 483.97,358.42 484.13,358.25 484.19,358.08 484.23,357.82 484.22,357.61" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="484.26,356.35 484.23,356.26 484.23,356.04 484.25,355.91 484.31,355.74 484.47,355.57 484.58,355.58 484.65,355.63 484.73,355.76 484.78,355.93 484.79,356.15 484.77,356.5 484.59,357.79 485.18,357.21" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="485.03,355.47 485.09,355.3 485.14,354.91 485.64,356.75" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="460.33,356.39 459.91,356.81 460.08,357.64 460.1,357.51 460.2,357.3 460.32,357.17 460.47,357.13 460.6,357.22 460.72,357.45 460.76,357.62 460.79,357.93 460.76,358.19 460.65,358.4 460.53,358.52 460.38,358.56 460.31,358.52 460.23,358.38" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="461.4,355.87 461.32,355.73 461.19,355.64 461.08,355.64 460.91,355.8 460.85,355.97 460.81,356.23 460.82,356.45 460.85,356.76 460.97,357.2 461.08,357.42 461.17,357.55 461.3,357.64 461.41,357.65 461.57,357.48 461.63,357.31 461.67,357.05 461.66,356.83" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="461.7,355.57 461.67,355.49 461.67,355.27 461.69,355.14 461.75,354.97 461.91,354.8 462.02,354.81 462.09,354.85 462.17,354.99 462.22,355.16 462.23,355.38 462.21,355.73 462.03,357.02 462.62,356.44" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="462.53,354.74 462.51,354.65 462.5,354.43 462.52,354.3 462.58,354.13 462.75,353.97 462.86,353.97 462.92,354.02 463.01,354.15 463.06,354.33 463.06,354.54 463.05,354.89 462.87,356.19 463.45,355.6" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="456.93,356.39 456.51,356.81 456.68,357.64 456.7,357.51 456.8,357.3 456.92,357.17 457.07,357.13 457.2,357.22 457.31,357.45 457.36,357.62 457.39,357.93 457.35,358.19 457.25,358.4 457.13,358.52 456.98,358.56 456.91,358.52 456.82,358.38" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="458,355.87 457.91,355.73 457.78,355.64 457.68,355.64 457.51,355.8 457.45,355.97 457.41,356.23 457.42,356.45 457.45,356.76 457.57,357.2 457.68,357.42 457.77,357.55 457.9,357.64 458,357.65 458.17,357.48 458.23,357.31 458.27,357.05 458.26,356.83" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="458.3,355.57 458.27,355.49 458.27,355.27 458.29,355.14 458.35,354.97 458.51,354.8 458.62,354.81 458.68,354.85 458.77,354.99 458.82,355.16 458.83,355.38 458.81,355.73 458.63,357.02 459.21,356.44" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="459.05,354.26 459.51,353.8 459.45,354.75 459.58,354.63 459.68,354.63 459.75,354.68 459.86,354.9 459.91,355.07 459.94,355.38 459.9,355.64 459.8,355.85 459.67,355.98 459.53,356.01 459.46,355.97 459.37,355.83" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="393.37,431.91 393.29,431.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.28,430.72 393.35,430.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.62,431.39 395.62,431.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.42,431.39 395.42,431.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.24,430.27 395.27,430.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.29,430.46 393.97,430.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.27,430.29 395.29,430.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.29,430.31 395.31,430.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.31,430.33 395.33,430.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.62,431.24 395.62,431.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.42,431.24 395.42,431.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.4,430.35 395.42,430.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.42,430.35 395.43,430.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.43,430.36 395.45,430.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.45,430.36 395.46,430.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.46,430.37 395.47,430.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.47,430.38 395.49,430.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.52,430.46 395.48,430.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.55,430.55 395.52,430.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.57,430.66 395.55,430.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.62,431.08 395.61,430.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.61,430.93 395.59,430.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.59,430.79 395.57,430.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.35,430.6 395.32,430.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.29,430.46 395.3,430.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.3,430.44 395.3,430.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.3,430.42 395.31,430.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.31,430.4 395.32,430.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.32,430.39 395.33,430.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.33,430.38 395.35,430.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.35,430.37 395.36,430.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.36,430.36 395.38,430.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.38,430.35 395.4,430.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.32,430.52 395.29,430.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.42,431.1 395.41,430.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.37,430.71 395.35,430.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.41,430.96 395.39,430.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.39,430.83 395.37,430.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.35,430.61 393.43,430.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.43,430.5 393.53,430.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.53,430.42 393.64,430.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.64,430.35 393.76,430.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.76,430.25 393.76,430.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.86,430.35 393.97,430.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.76,430.14 393.76,430.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.76,430.12 393.76,430.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.76,430.1 393.77,430.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.77,430.09 393.78,430.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.78,430.07 393.8,430.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.8,430.06 393.81,430.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.81,430.05 393.83,430.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.83,430.04 393.85,430.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.85,430.04 393.86,430.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.76,430.25 393.76,430.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.76,430.28 393.78,430.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.78,430.31 393.81,430.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.81,430.34 393.85,430.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.85,430.35 393.86,430.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.15,430.14 395.14,430.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.14,430.1 395.12,430.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.12,430.07 395.09,430.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.09,430.05 395.06,430.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.06,430.04 395.04,430.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.15,430.25 395.15,430.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.14,430.25 395.14,430.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.14,430.26 395.14,430.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.14,430.28 395.13,430.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.13,430.3 395.12,430.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.12,430.31 395.11,430.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.11,430.33 395.09,430.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.09,430.34 395.08,430.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.08,430.35 395.06,430.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.06,430.35 395.04,430.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.15,430.25 395.18,430.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.18,430.25 395.21,430.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.21,430.26 395.24,430.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.04,430.35 393.86,430.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.04,430.03 393.86,430.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.28,432.19 395.25,432.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="394.04,432.03 395.29,432.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.34,432.11 395.33,432.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.33,432.14 395.3,432.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.3,432.17 395.28,432.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.49,432.08 395.48,432.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.48,432.1 395.47,432.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.47,432.11 395.45,432.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.45,432.12 395.44,432.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.44,432.13 395.42,432.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.42,432.13 395.4,432.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.52,432.02 395.55,431.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.48,432.08 395.52,432.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.59,431.69 395.61,431.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.55,431.93 395.57,431.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.57,431.82 395.59,431.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.32,431.97 395.35,431.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.29,432.03 395.32,431.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.39,431.66 395.41,431.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.35,431.88 395.37,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.37,431.78 395.39,431.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.4,432.13 395.38,432.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.38,432.13 395.36,432.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.36,432.13 395.35,432.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.35,432.12 395.33,432.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.33,432.11 395.32,432.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.32,432.1 395.31,432.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.31,432.08 395.3,432.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.3,432.06 395.29,432.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.29,432.05 395.29,432.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.61,431.55 395.62,431.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.41,431.53 395.42,431.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.94,432.13 394.04,432.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.82,432.21 393.69,432.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.69,432.16 393.57,432.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.57,432.09 393.46,432.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.46,432.01 393.37,431.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.94,432.45 393.92,432.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.92,432.45 393.9,432.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.9,432.44 393.88,432.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.88,432.44 393.87,432.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.87,432.43 393.86,432.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.86,432.41 393.84,432.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.84,432.4 393.84,432.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.84,432.38 393.83,432.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.83,432.36 393.83,432.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.83,432.24 393.83,432.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.94,432.13 393.9,432.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.9,432.14 393.87,432.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.87,432.16 393.84,432.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.84,432.19 393.83,432.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.83,432.22 393.83,432.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.15,432.24 395.15,432.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.04,432.45 395.08,432.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.08,432.44 395.11,432.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.11,432.43 395.13,432.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.13,432.4 395.14,432.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.14,432.36 395.15,432.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.25,432.21 395.22,432.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.22,432.23 395.18,432.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.18,432.24 395.15,432.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.04,432.13 395.06,432.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.06,432.14 395.08,432.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.08,432.14 395.09,432.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.09,432.15 395.11,432.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.11,432.16 395.12,432.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.12,432.17 395.13,432.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.13,432.19 395.14,432.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.14,432.2 395.14,432.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.14,432.22 395.14,432.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.04,432.45 393.94,432.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.04,432.13 393.94,432.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.19,431.39 393.19,431.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.19,431.09 393.2,430.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.2,430.96 393.23,430.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.23,430.84 393.28,430.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.24,431.66 393.21,431.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.29,431.79 393.24,431.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.21,431.53 393.19,431.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.69,429.75 391.64,429.77 391.6,429.81 391.59,429.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.59,432.67 391.6,432.72 391.64,432.76 391.69,432.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.59,432.67 391.59,431.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.59,431.59 391.59,430.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.59,430.6 391.59,429.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="392.64,432.77 392.69,432.76 392.73,432.72 392.74,432.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="392.74,432.67 392.74,431.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="392.74,431.59 392.74,430.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="392.74,430.6 392.74,429.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="392.13,429.75 392.13,429.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="392.13,433.34 392.13,432.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="392.64,432.77 391.69,432.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="392.74,429.86 392.73,429.81 392.69,429.77 392.64,429.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="392.64,429.75 391.69,429.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="392.13,433.34 391.52,433.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.19,433.34 390.52,433.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="390.19,433.34 389.58,433.34 389.58,432.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.58,432.59 389.58,431.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.58,431.59 389.58,430.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.58,430.6 389.58,429.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.58,429.6 389.58,429.19 390.19,429.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="390.52,429.19 391.19,429.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.52,429.19 392.13,429.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.53,423.76 388.53,422.1 385.99,422.1 385.99,423.76 388.53,423.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.99,423.76 388.53,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.84,423.36 385.84,422.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.53,433.7 388.53,435.36 385.99,435.36 385.99,433.7 388.53,433.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.99,433.7 388.53,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.84,434.1 385.84,434.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="390.36,433.7 390.36,435.36 392.9,435.36 392.9,433.7 390.36,433.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="392.9,433.7 390.36,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.05,434.1 393.05,434.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.99,421.82 385.99,422.1 385.99,421.82 389.31,421.82 385.99,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.31,421.82 389.31,422.1 389.31,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.31,422.1 385.99,422.1 389.31,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.99,421.82 385.99,422.1 385.99,421.82 389.31,421.82 385.99,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.31,421.82 389.31,422.1 389.31,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.31,422.1 385.99,422.1 389.31,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.68,421.82 382.68,422.1 382.68,421.82 385.99,421.82 382.68,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.99,421.82 385.99,422.1 385.99,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.99,422.1 382.68,422.1 385.99,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.68,421.82 382.68,422.1 382.68,421.82 385.99,421.82 382.68,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.99,421.82 385.99,422.1 385.99,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.99,422.1 382.68,422.1 385.99,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.81,432.71 385.88,432.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.89,431.52 385.82,431.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.56,432.19 383.56,432.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.76,432.19 383.75,432.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.93,431.07 383.91,431.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.88,431.26 385.2,431.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.91,431.09 383.88,431.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.88,431.11 383.86,431.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.86,431.13 383.84,431.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.56,432.04 383.56,431.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.75,432.04 383.76,431.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.77,431.15 383.76,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.76,431.15 383.74,431.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.74,431.16 383.73,431.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.73,431.16 383.71,431.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.71,431.17 383.7,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.7,431.18 383.69,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.66,431.26 383.69,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.63,431.35 383.66,431.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.6,431.46 383.63,431.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.56,431.88 383.57,431.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.57,431.73 383.58,431.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.58,431.59 383.6,431.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.82,431.4 383.85,431.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.88,431.26 383.88,431.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.88,431.24 383.87,431.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.87,431.22 383.87,431.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.87,431.21 383.86,431.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.86,431.19 383.84,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.84,431.18 383.83,431.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.83,431.17 383.81,431.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.81,431.16 383.79,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.79,431.15 383.77,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.85,431.32 383.88,431.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.76,431.9 383.77,431.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.8,431.51 383.82,431.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.77,431.76 383.78,431.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.78,431.63 383.8,431.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.82,431.41 385.74,431.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.74,431.31 385.64,431.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.64,431.22 385.53,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.53,431.15 385.42,431.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.42,431.05 385.42,430.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.31,431.15 385.2,431.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.42,430.94 385.41,430.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.41,430.92 385.41,430.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.41,430.9 385.4,430.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.4,430.89 385.39,430.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.39,430.87 385.38,430.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.38,430.86 385.36,430.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.36,430.85 385.35,430.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.35,430.84 385.33,430.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.33,430.84 385.31,430.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.42,431.05 385.41,431.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.41,431.08 385.39,431.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.39,431.11 385.36,431.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.36,431.14 385.33,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.33,431.15 385.31,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.03,430.94 384.04,430.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.04,430.9 384.05,430.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.05,430.87 384.08,430.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.08,430.85 384.12,430.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.12,430.84 384.13,430.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.03,431.05 384.03,430.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.03,431.05 384.03,431.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.03,431.06 384.04,431.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.04,431.08 384.04,431.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.04,431.1 384.05,431.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.05,431.11 384.07,431.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.07,431.13 384.08,431.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.08,431.14 384.1,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.1,431.15 384.12,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.12,431.15 384.13,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.03,431.05 384,431.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384,431.05 383.96,431.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.96,431.06 383.93,431.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.13,431.15 385.31,431.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.13,430.83 385.31,430.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.9,432.99 383.93,433.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.13,432.83 383.88,432.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.83,432.91 383.85,432.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.85,432.94 383.87,432.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.87,432.97 383.9,432.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.68,432.88 383.69,432.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.69,432.9 383.71,432.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.71,432.91 383.72,432.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.72,432.92 383.74,432.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.74,432.93 383.76,432.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.76,432.93 383.77,432.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.66,432.82 383.63,432.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.69,432.88 383.66,432.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.58,432.49 383.57,432.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.63,432.73 383.6,432.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.6,432.62 383.58,432.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.85,432.77 383.82,432.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.88,432.83 383.85,432.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.78,432.46 383.77,432.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.82,432.68 383.8,432.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.8,432.58 383.78,432.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.77,432.93 383.79,432.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.79,432.93 383.81,432.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.81,432.93 383.83,432.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.83,432.92 383.84,432.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.84,432.91 383.86,432.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.86,432.9 383.87,432.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.87,432.88 383.87,432.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.87,432.86 383.88,432.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.88,432.85 383.88,432.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.57,432.35 383.56,432.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.77,432.33 383.76,432.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.24,432.93 385.13,432.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.36,433.01 385.49,432.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.49,432.96 385.61,432.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.61,432.89 385.71,432.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.71,432.81 385.81,432.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.24,433.25 385.26,433.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.26,433.25 385.27,433.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.27,433.25 385.29,433.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.29,433.24 385.31,433.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.31,433.23 385.32,433.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.32,433.21 385.33,433.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.33,433.2 385.34,433.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.34,433.18 385.34,433.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.34,433.16 385.34,433.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.34,433.04 385.34,433.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.24,432.93 385.27,432.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.27,432.94 385.31,432.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.31,432.96 385.33,432.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.33,432.99 385.34,433.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.34,433.02 385.34,433.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.03,433.04 384.03,433.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.13,433.25 384.1,433.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.1,433.25 384.07,433.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.07,433.23 384.04,433.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.04,433.2 384.03,433.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.03,433.16 384.03,433.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.93,433.01 383.96,433.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.96,433.03 383.99,433.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.99,433.04 384.03,433.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.13,432.93 384.12,432.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.12,432.94 384.1,432.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.1,432.94 384.08,432.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.08,432.95 384.07,432.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.07,432.96 384.05,432.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.05,432.97 384.04,432.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.04,432.99 384.04,433" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.04,433 384.03,433.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.03,433.02 384.03,433.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.13,433.25 385.24,433.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.13,432.93 385.24,432.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.98,432.19 385.98,431.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.98,431.89 385.97,431.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.97,431.77 385.94,431.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.94,431.64 385.89,431.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.93,432.46 385.97,432.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.88,432.59 385.93,432.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.97,432.33 385.98,432.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.31,435.36 389.31,428.73 385.99,428.73 385.99,435.36 389.31,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.81,426.07 385.88,425.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.89,424.89 385.82,424.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.56,425.56 383.56,425.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.76,425.56 383.75,425.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.93,424.44 383.91,424.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.88,424.63 385.2,424.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.91,424.45 383.88,424.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.88,424.48 383.86,424.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.86,424.5 383.84,424.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.56,425.41 383.56,425.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.75,425.41 383.76,425.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.77,424.52 383.76,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.76,424.52 383.74,424.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.74,424.53 383.73,424.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.73,424.53 383.71,424.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.71,424.54 383.7,424.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.7,424.55 383.69,424.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.66,424.63 383.69,424.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.63,424.72 383.66,424.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.6,424.83 383.63,424.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.56,425.25 383.57,425.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.57,425.1 383.58,424.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.58,424.96 383.6,424.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.82,424.77 383.85,424.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.88,424.63 383.88,424.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.88,424.61 383.87,424.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.87,424.59 383.87,424.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.87,424.57 383.86,424.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.86,424.56 383.84,424.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.84,424.55 383.83,424.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.83,424.54 383.81,424.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.81,424.53 383.79,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.79,424.52 383.77,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.85,424.69 383.88,424.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.76,425.27 383.77,425.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.8,424.88 383.82,424.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.77,425.13 383.78,424.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.78,424.99 383.8,424.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.82,424.77 385.74,424.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.74,424.67 385.64,424.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.64,424.59 385.53,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.53,424.52 385.42,424.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.42,424.42 385.42,424.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.31,424.52 385.2,424.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.42,424.31 385.41,424.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.41,424.29 385.41,424.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.41,424.27 385.4,424.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.4,424.26 385.39,424.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.39,424.24 385.38,424.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.38,424.23 385.36,424.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.36,424.22 385.35,424.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.35,424.21 385.33,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.33,424.2 385.31,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.42,424.42 385.41,424.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.41,424.45 385.39,424.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.39,424.48 385.36,424.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.36,424.51 385.33,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.33,424.52 385.31,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.03,424.31 384.04,424.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.04,424.27 384.05,424.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.05,424.24 384.08,424.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.08,424.22 384.12,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.12,424.2 384.13,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.03,424.42 384.03,424.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.03,424.42 384.03,424.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.03,424.43 384.04,424.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.04,424.45 384.04,424.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.04,424.47 384.05,424.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.05,424.48 384.07,424.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.07,424.5 384.08,424.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.08,424.51 384.1,424.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.1,424.51 384.12,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.12,424.52 384.13,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.03,424.42 384,424.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384,424.42 383.96,424.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.96,424.43 383.93,424.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.13,424.52 385.31,424.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.13,424.2 385.31,424.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.9,426.36 383.93,426.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.13,426.2 383.88,426.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.83,426.28 383.85,426.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.85,426.31 383.87,426.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.87,426.34 383.9,426.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.68,426.25 383.69,426.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.69,426.27 383.71,426.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.71,426.28 383.72,426.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.72,426.29 383.74,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.74,426.3 383.76,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.76,426.3 383.77,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.66,426.19 383.63,426.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.69,426.25 383.66,426.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.58,425.86 383.57,425.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.63,426.1 383.6,425.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.6,425.98 383.58,425.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.85,426.13 383.82,426.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.88,426.2 383.85,426.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.78,425.83 383.77,425.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.82,426.05 383.8,425.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.8,425.95 383.78,425.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.77,426.3 383.79,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.79,426.3 383.81,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.81,426.3 383.83,426.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.83,426.29 383.84,426.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.84,426.28 383.86,426.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.86,426.26 383.87,426.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.87,426.25 383.87,426.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.87,426.23 383.88,426.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.88,426.22 383.88,426.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.57,425.72 383.56,425.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.77,425.7 383.76,425.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.24,426.3 385.13,426.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.36,426.38 385.49,426.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.49,426.33 385.61,426.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.61,426.26 385.71,426.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.71,426.18 385.81,426.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.24,426.62 385.26,426.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.26,426.62 385.27,426.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.27,426.61 385.29,426.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.29,426.61 385.31,426.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.31,426.6 385.32,426.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.32,426.58 385.33,426.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.33,426.57 385.34,426.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.34,426.55 385.34,426.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.34,426.53 385.34,426.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.34,426.41 385.34,426.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.24,426.3 385.27,426.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.27,426.31 385.31,426.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.31,426.33 385.33,426.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.33,426.36 385.34,426.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.34,426.39 385.34,426.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.03,426.41 384.03,426.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.13,426.62 384.1,426.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.1,426.61 384.07,426.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.07,426.6 384.04,426.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.04,426.57 384.03,426.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.03,426.53 384.03,426.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.93,426.38 383.96,426.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.96,426.4 383.99,426.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.99,426.41 384.03,426.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.13,426.3 384.12,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.12,426.3 384.1,426.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.1,426.31 384.08,426.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.08,426.32 384.07,426.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.07,426.33 384.05,426.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.05,426.34 384.04,426.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.04,426.36 384.04,426.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.04,426.37 384.03,426.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.03,426.39 384.03,426.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.13,426.62 385.24,426.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="384.13,426.3 385.24,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.98,425.56 385.98,425.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.98,425.26 385.97,425.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.97,425.13 385.94,425.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.94,425.01 385.89,424.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.93,425.83 385.97,425.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.88,425.96 385.93,425.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.97,425.7 385.98,425.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.31,428.73 389.31,422.1 385.99,422.1 385.99,428.73 389.31,428.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="392.9,421.82 392.9,422.1 392.9,421.82 389.58,421.82 392.9,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.58,422.1 389.58,421.82 389.58,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.58,422.1 392.9,422.1 389.58,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="392.9,421.82 392.9,422.1 392.9,421.82 389.58,421.82 392.9,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.58,422.1 389.58,421.82 389.58,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.58,422.1 392.9,422.1 389.58,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.58,435.36 389.58,428.73 392.9,428.73 392.9,435.36 389.58,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.36,425.78 393.29,425.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.28,424.6 393.34,424.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.61,425.27 395.61,425.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.41,425.27 395.41,425.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.23,424.15 395.26,424.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.29,424.34 393.96,424.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.26,424.16 395.29,424.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.29,424.19 395.31,424.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.31,424.21 395.33,424.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.61,425.12 395.61,424.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.41,425.12 395.41,424.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.39,424.23 395.41,424.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.41,424.23 395.43,424.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.43,424.24 395.44,424.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.44,424.24 395.46,424.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.46,424.25 395.47,424.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.47,424.26 395.48,424.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.51,424.34 395.48,424.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.54,424.43 395.51,424.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.56,424.54 395.54,424.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.61,424.96 395.6,424.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.6,424.81 395.58,424.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.58,424.67 395.56,424.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.34,424.48 395.32,424.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.29,424.34 395.29,424.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.29,424.32 395.29,424.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.29,424.3 395.3,424.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.3,424.28 395.31,424.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.31,424.27 395.32,424.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.32,424.26 395.34,424.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.34,424.25 395.36,424.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.36,424.24 395.37,424.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.37,424.23 395.39,424.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.32,424.4 395.29,424.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.41,424.98 395.4,424.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.37,424.59 395.34,424.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.4,424.84 395.39,424.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.39,424.7 395.37,424.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.34,424.48 393.43,424.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.43,424.38 393.52,424.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.52,424.3 393.63,424.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.63,424.23 393.75,424.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.75,424.13 393.75,424.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.86,424.23 393.96,424.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.75,424.02 393.75,424" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.75,424 393.76,423.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.76,423.98 393.77,423.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.77,423.97 393.78,423.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.78,423.95 393.79,423.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.79,423.94 393.8,423.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.8,423.93 393.82,423.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.82,423.92 393.84,423.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.84,423.91 393.86,423.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.75,424.13 393.76,424.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.76,424.16 393.78,424.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.78,424.19 393.8,424.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.8,424.22 393.84,424.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.84,424.23 393.86,424.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.14,424.02 395.13,423.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.13,423.98 395.11,423.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.11,423.95 395.09,423.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.09,423.93 395.05,423.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.05,423.91 395.03,423.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.14,424.13 395.14,424.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.14,424.13 395.14,424.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.14,424.14 395.13,424.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.13,424.16 395.12,424.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.12,424.18 395.11,424.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.11,424.19 395.1,424.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.1,424.21 395.09,424.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.09,424.22 395.07,424.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.07,424.22 395.05,424.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.05,424.23 395.03,424.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.14,424.13 395.17,424.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.17,424.13 395.2,424.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.2,424.14 395.23,424.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.03,424.23 393.86,424.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.03,423.91 393.86,423.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.27,426.07 395.24,426.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="394.04,425.91 395.29,425.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.34,425.99 395.32,426.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.32,426.02 395.3,426.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.3,426.05 395.27,426.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.48,425.96 395.47,425.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.47,425.98 395.46,425.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.46,425.99 395.45,426" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.45,426 395.43,426.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.43,426.01 395.41,426.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.41,426.01 395.39,426.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.51,425.9 395.54,425.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.48,425.96 395.51,425.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.58,425.57 395.6,425.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.54,425.81 395.56,425.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.56,425.69 395.58,425.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.32,425.85 395.34,425.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.29,425.91 395.32,425.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.39,425.54 395.4,425.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.34,425.76 395.37,425.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.37,425.66 395.39,425.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.39,426.01 395.37,426.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.37,426.01 395.36,426.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.36,426.01 395.34,426" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.34,426 395.32,425.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.32,425.99 395.31,425.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.31,425.97 395.3,425.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.3,425.96 395.29,425.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.29,425.94 395.29,425.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.29,425.93 395.29,425.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.6,425.43 395.61,425.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.4,425.41 395.41,425.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.93,426.01 394.04,425.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.81,426.09 393.68,426.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.68,426.04 393.56,425.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.56,425.97 393.45,425.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.45,425.89 393.36,425.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.93,426.33 393.91,426.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.91,426.33 393.89,426.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.89,426.32 393.88,426.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.88,426.32 393.86,426.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.86,426.31 393.85,426.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.85,426.29 393.84,426.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.84,426.28 393.83,426.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.83,426.26 393.82,426.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.82,426.24 393.82,426.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.82,426.12 393.82,426.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.93,426.01 393.89,426.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.89,426.02 393.86,426.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.86,426.04 393.84,426.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.84,426.07 393.83,426.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.83,426.1 393.82,426.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.14,426.12 395.14,426.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.03,426.33 395.07,426.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.07,426.32 395.1,426.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.1,426.31 395.12,426.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.12,426.28 395.14,426.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.14,426.24 395.14,426.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.24,426.09 395.21,426.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.21,426.11 395.17,426.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.17,426.12 395.14,426.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.03,426.01 395.05,426.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.05,426.01 395.07,426.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.07,426.02 395.09,426.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.09,426.03 395.1,426.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.1,426.04 395.11,426.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.11,426.05 395.12,426.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.12,426.07 395.13,426.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.13,426.08 395.14,426.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.14,426.1 395.14,426.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.03,426.33 393.93,426.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="395.03,426.01 393.93,426.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.19,425.27 393.19,424.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.19,424.97 393.2,424.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.2,424.84 393.23,424.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.23,424.72 393.28,424.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.23,425.54 393.2,425.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.29,425.67 393.23,425.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.2,425.41 393.19,425.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.58,428.73 389.58,422.1 392.9,422.1 392.9,428.73 389.58,428.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.31,428.73 389.58,428.73 389.31,428.73 389.31,422.1 389.31,428.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.31,422.1 389.58,422.1 389.31,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.58,422.1 389.58,428.73 389.58,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.31,435.36 389.58,435.36 389.31,435.36 389.31,428.73 389.31,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.31,428.73 389.58,428.73 389.31,428.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.58,428.73 389.58,435.36 389.58,428.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.8,428.73 372.07,428.73 371.8,428.73 371.8,422.1 371.8,428.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.8,422.1 372.07,422.1 371.8,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.07,422.1 372.07,428.73 372.07,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.8,435.47 372.07,435.47 371.8,435.47 371.8,428.73 371.8,435.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.8,428.73 372.07,428.73 371.8,428.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.07,428.73 372.07,435.47 372.07,428.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.39,421.82 375.39,422.1 375.39,421.82 372.07,421.82 375.39,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.07,422.1 372.07,421.82 372.07,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.07,422.1 375.39,422.1 372.07,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.39,421.82 375.39,422.1 375.39,421.82 372.07,421.82 375.39,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.07,422.1 372.07,421.82 372.07,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.07,422.1 375.39,422.1 372.07,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.7,421.82 378.7,422.1 378.7,421.82 375.39,421.82 378.7,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.39,422.1 375.39,421.82 375.39,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.39,422.1 378.7,422.1 375.39,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.48,421.82 368.48,422.1 368.48,421.82 371.8,421.82 368.48,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.8,421.82 371.8,422.1 371.8,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.8,422.1 368.48,422.1 371.8,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.48,421.82 368.48,422.1 368.48,421.82 371.8,421.82 368.48,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.8,421.82 371.8,422.1 371.8,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.8,422.1 368.48,422.1 371.8,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.17,421.82 365.17,422.1 365.17,421.82 368.48,421.82 365.17,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.48,421.82 368.48,422.1 368.48,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.48,422.1 365.17,422.1 368.48,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="365.17,421.82 365.17,422.1 365.17,421.82 368.48,421.82 365.17,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.48,421.82 368.48,422.1 368.48,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.48,422.1 365.17,422.1 368.48,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.87,421.82 357.87,422.1 357.87,421.82 354.56,421.82 357.87,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.56,422.1 354.56,421.82 354.56,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.56,422.1 357.87,422.1 354.56,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.87,421.82 357.87,422.1 357.87,421.82 354.56,421.82 357.87,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.56,422.1 354.56,421.82 354.56,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.56,422.1 357.87,422.1 354.56,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.19,421.82 361.19,422.1 361.19,421.82 357.87,421.82 361.19,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.87,422.1 357.87,421.82 357.87,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.87,422.1 361.19,422.1 357.87,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.56,428.73 354.28,428.73 354.56,428.73 354.56,422.1 354.56,428.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.28,422.1 354.56,422.1 354.28,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.28,422.1 354.28,428.73 354.28,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.56,435.36 354.28,435.36 354.56,435.36 354.56,428.73 354.56,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.28,428.73 354.56,428.73 354.28,428.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.28,428.73 354.28,435.36 354.28,428.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="284.75,326.6 284.75,328.26 287.29,328.26 287.29,326.6 284.75,326.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.29,326.6 284.75,328.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="287.44,327 287.44,327.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="284.63,323.62 287.29,323.62 287.29,328.26 284.63,328.26 284.63,323.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.9,322.35 286.9,320.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.79,322.35 286.79,320.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.68,322.35 286.68,320.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.57,323.34 286.57,319.37 284.59,319.37 284.59,323.34 286.57,323.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.57,323.34 286.57,319.37 284.59,319.37 284.59,323.34 286.57,323.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.33,315.13 296.33,315.41 296.33,315.13 300.96,315.13 296.33,315.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.96,315.13 300.96,315.41 300.96,315.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.96,315.41 296.33,315.41 300.96,315.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.23,315.41 300.96,315.41 301.23,315.41 301.23,323.34 301.23,315.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="301.23,323.34 300.96,323.34 301.23,323.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.96,323.34 300.96,315.41 300.96,323.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="286.42,323.34 286.42,323.62 286.42,323.34 289.72,323.34 286.42,323.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.72,323.34 289.72,323.62 289.72,323.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.72,323.62 286.42,323.62 289.72,323.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="289.72,323.34 289.72,323.62 289.72,323.34 293.69,323.34 289.72,323.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.69,323.34 293.69,323.62 293.69,323.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.69,323.62 289.72,323.62 293.69,323.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.66,323.34 297.66,323.62 297.66,323.34 300.96,323.34 297.66,323.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.96,323.34 300.96,323.62 300.96,323.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="300.96,323.62 297.66,323.62 300.96,323.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="293.69,323.34 293.69,323.62 293.69,323.34 297.65,323.34 293.69,323.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.65,323.34 297.65,323.62 297.65,323.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="297.65,323.62 293.69,323.62 297.65,323.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="488.32,384.47 488.81,384.47" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="488.32,388.89 488.81,388.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="488.81,384.47 488.81,383.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="488.81,395.68 488.81,388.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="489.97,434.72 489.89,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.83,434.72 490.74,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,427.71 509.73,427.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,415.83 509.73,415.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,414.89 509.73,414.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,402.92 509.73,403.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,402.07 509.73,402.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,390.19 509.73,390.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,389.25 509.73,389.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,383.53 509.07,383.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,383.08 509.07,383.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,377.37 509.73,377.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,376.43 509.73,376.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,364.55 509.73,364.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,363.61 509.73,363.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,357.83 509.07,357.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.07,357.44 509.07,357.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,351.64 509.73,351.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,350.79 509.73,350.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,338.91 509.73,338.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,338.05 509.73,337.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,326.09 509.73,326" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,325.23 509.73,325.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,313.27 509.73,313.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,312.41 509.73,312.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,300.45 509.73,300.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,299.51 509.73,299.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,287.63 509.73,287.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,286.69 509.73,286.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,274.81 509.73,274.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,273.87 509.73,273.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,261.99 509.73,261.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.73,261.05 509.73,261.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.12,384.25 482.12,383.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.29,383.58 482.29,384.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.25,358.61 480.25,356.73 482.12,356.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.63,347 480.63,339.93 480.36,339.93 480.36,338.16 481.24,338.16 481.24,332.97 480.25,332.97 480.25,332.03 469.58,332.03 469.58,347 480.63,347" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.13,409.55 478.39,409.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="478.39,409.55 478.39,398.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="463.13,409.55 463.13,398.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.8,409.55 448.09,409.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.8,409.89 448.09,409.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.8,398.61 473.82,398.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="463.13,398.94 473.82,398.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="448,393.93 448,382.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="448.33,393.93 448,393.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="478.72,398.86 478.39,398.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="478.72,409.89 478.72,398.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="463.02,409.89 478.72,409.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.82,398.94 473.82,398.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="452.14,398.98 452.14,398.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="447.75,398.65 452.14,398.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="448.09,398.98 452.14,398.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="447.75,408.01 447.75,398.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="448.09,409.55 448.09,398.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.8,409.55 462.8,398.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.8,409.89 463.02,409.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.89,394 473.89,394.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="478.28,394.33 473.89,394.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="477.95,394 473.89,394" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="478.28,383.23 478.28,394.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="477.95,383.23 477.95,394" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="463.46,383.23 463.46,394.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="448.33,383.23 448.33,393.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="455.11,382.9 448,382.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="455.11,383.23 448.33,383.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="458.72,394.32 458.72,393.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="463.46,394.32 458.72,394.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="463.13,393.99 458.72,393.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="463.13,383.23 463.13,393.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="475.13,185.53 475.13,184.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="477.43,356.73 480.25,356.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="412.33,381.66 411.79,381.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.65,377.3 411.79,377.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.33,424.14 412.33,433.71" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.33,409.99 412.33,419.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.33,384.36 412.33,408.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="412.33,381.66 412.33,382.37" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="411.79,377.3 411.79,377.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="411.79,419.72 411.79,381.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="411.79,435.47 411.79,424.14" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="437.81,434.6 413.94,434.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="445.88,261.44 445.88,254.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="446.21,261.44 445.88,261.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="446.21,254.17 446.21,261.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.82,419.72 412.33,419.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.82,424.14 412.33,424.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="404.15,360.9 404.82,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.48,360.9 406.81,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.47,360.9 408.8,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.46,360.9 410.78,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.45,360.9 412.11,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.02,429.72 417.95,429.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="417.94,430.91 418,431.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.27,430.23 420.27,430.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.07,430.24 420.07,430.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.9,431.36 419.92,431.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.95,431.17 418.63,431.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.92,431.34 419.95,431.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.95,431.32 419.97,431.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.97,431.29 419.99,431.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.27,430.39 420.27,430.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.07,430.38 420.07,430.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.05,431.27 420.07,431.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.07,431.27 420.09,431.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.09,431.27 420.1,431.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.1,431.26 420.12,431.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.12,431.25 420.13,431.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.13,431.24 420.14,431.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.17,431.16 420.14,431.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.2,431.07 420.17,431.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.23,430.96 420.2,431.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.27,430.54 420.26,430.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.26,430.69 420.25,430.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.25,430.83 420.23,430.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.01,431.02 419.98,431.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.95,431.17 419.95,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.95,431.18 419.96,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.96,431.2 419.96,431.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.96,431.22 419.97,431.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.97,431.23 419.99,431.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.99,431.25 420,431.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420,431.26 420.02,431.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.02,431.27 420.04,431.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.04,431.27 420.05,431.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.98,431.1 419.95,431.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.07,430.53 420.06,430.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.03,430.92 420.01,431.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.06,430.67 420.05,430.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.05,430.8 420.03,430.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418,431.02 418.09,431.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.09,431.12 418.19,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.19,431.2 418.29,431.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.29,431.28 418.41,431.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.41,431.38 418.41,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.52,431.27 418.63,431.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.41,431.48 418.42,431.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.42,431.5 418.42,431.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.42,431.52 418.43,431.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.43,431.54 418.44,431.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.44,431.55 418.45,431.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.45,431.57 418.47,431.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.47,431.58 418.48,431.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.48,431.58 418.5,431.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.5,431.59 418.52,431.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.41,431.38 418.42,431.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.42,431.34 418.44,431.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.44,431.31 418.47,431.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.47,431.29 418.5,431.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.5,431.27 418.52,431.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.8,431.48 419.79,431.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.79,431.52 419.78,431.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.78,431.55 419.75,431.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.75,431.58 419.71,431.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.71,431.59 419.69,431.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.8,431.38 419.8,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.8,431.38 419.8,431.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.8,431.36 419.79,431.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.79,431.34 419.79,431.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.79,431.32 419.78,431.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.78,431.31 419.76,431.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.76,431.3 419.75,431.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.75,431.29 419.73,431.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.73,431.28 419.71,431.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.71,431.27 419.69,431.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.8,431.38 419.83,431.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.83,431.38 419.86,431.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.86,431.37 419.9,431.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.69,431.27 418.52,431.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.69,431.59 418.52,431.59" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.93,429.43 419.9,429.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.7,429.6 419.95,429.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420,429.52 419.98,429.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.98,429.49 419.96,429.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.96,429.46 419.93,429.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.15,429.54 420.14,429.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.14,429.53 420.12,429.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.12,429.51 420.11,429.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.11,429.5 420.09,429.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.09,429.5 420.07,429.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.07,429.49 420.05,429.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.17,429.61 420.2,429.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.14,429.54 420.17,429.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.25,429.94 420.26,430.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.2,429.7 420.23,429.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.23,429.81 420.25,429.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.98,429.66 420.01,429.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.95,429.6 419.98,429.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.05,429.96 420.06,430.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.01,429.74 420.03,429.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.03,429.84 420.05,429.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.05,429.49 420.04,429.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.04,429.49 420.02,429.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.02,429.5 420,429.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420,429.5 419.99,429.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.99,429.52 419.97,429.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.97,429.53 419.96,429.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.96,429.54 419.96,429.56" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.96,429.56 419.95,429.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.95,429.58 419.95,429.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.26,430.08 420.27,430.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.06,430.1 420.07,430.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.59,429.49 418.7,429.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.47,429.41 418.34,429.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.34,429.46 418.22,429.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.22,429.53 418.12,429.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.12,429.62 418.02,429.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.59,429.17 418.57,429.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.57,429.17 418.56,429.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.56,429.18 418.54,429.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.54,429.19 418.52,429.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.52,429.2 418.51,429.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.51,429.21 418.5,429.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.5,429.23 418.49,429.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.49,429.24 418.49,429.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.49,429.26 418.49,429.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.49,429.38 418.49,429.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.59,429.49 418.56,429.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.56,429.48 418.52,429.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.52,429.47 418.5,429.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.5,429.44 418.49,429.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="418.49,429.4 418.49,429.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.8,429.38 419.8,429.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.69,429.17 419.73,429.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.73,429.18 419.76,429.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.76,429.2 419.79,429.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.79,429.23 419.8,429.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.8,429.26 419.8,429.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.9,429.41 419.87,429.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.87,429.4 419.84,429.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.84,429.39 419.8,429.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.69,429.49 419.71,429.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.71,429.49 419.73,429.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.73,429.48 419.75,429.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.75,429.48 419.76,429.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.76,429.47 419.78,429.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.78,429.45 419.79,429.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.79,429.44 419.79,429.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.79,429.42 419.8,429.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.8,429.4 419.8,429.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.69,429.17 418.59,429.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.69,429.49 418.59,429.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="417.85,430.23 417.85,430.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="417.85,430.53 417.86,430.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="417.86,430.66 417.89,430.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="417.89,430.79 417.94,430.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="417.89,429.96 417.86,430.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="417.95,429.83 417.89,429.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="417.86,430.09 417.85,430.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="416.24,431.76 416.25,431.82 416.29,431.86 416.35,431.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="416.35,428.85 416.29,428.86 416.25,428.9 416.24,428.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="416.24,428.96 416.24,429.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="416.24,430.03 416.24,430.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="416.24,431.02 416.24,431.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="417.4,428.96 417.38,428.9 417.34,428.86 417.29,428.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="417.4,428.96 417.4,429.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="417.4,430.03 417.4,430.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="417.4,431.02 417.4,431.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="416.78,431.87 416.78,432.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="416.78,428.28 416.78,428.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="417.29,428.85 416.35,428.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="417.29,431.87 417.34,431.86 417.38,431.82 417.4,431.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="417.29,431.87 416.35,431.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="416.78,428.28 416.17,428.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="415.84,428.28 415.18,428.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="414.85,428.28 414.24,428.28 414.24,428.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="414.24,429.03 414.24,429.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="414.24,430.03 414.24,430.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="414.24,431.02 414.24,431.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="414.24,432.02 414.24,432.44 414.85,432.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="415.18,432.44 415.84,432.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="416.17,432.44 416.78,432.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.54,425.05 422.2,425.05 422.2,427.59 420.54,427.59 420.54,425.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.54,427.59 422.2,425.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.94,427.74 421.82,427.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="417.55,424.94 417.55,427.59 422.2,427.59 422.2,424.94 417.55,424.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="417.55,424.94 417.55,432.9 414.24,432.9 414.24,424.94 417.55,424.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.2,424.67 404.38,425.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.2,424.01 403.67,424.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.55,424.01 403.2,424.01 403.2,426.66 400.55,426.66 400.55,424.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.34,429.84 404.26,429.72" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.25,428.65 404.32,428.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.58,429.33 406.59,429.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.38,429.32 406.39,429.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.21,428.2 406.24,428.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.26,428.39 404.94,428.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.24,428.22 406.26,428.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.26,428.24 406.28,428.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.28,428.27 406.3,428.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.59,429.17 406.58,429.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.39,429.18 406.38,429.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.37,428.29 406.38,428.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.38,428.29 406.4,428.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.4,428.29 406.42,428.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.42,428.3 406.43,428.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.43,428.31 406.44,428.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.44,428.32 406.45,428.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.49,428.4 406.45,428.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.51,428.49 406.49,428.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.54,428.6 406.51,428.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.58,429.02 406.57,428.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.57,428.87 406.56,428.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.56,428.73 406.54,428.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.32,428.54 406.29,428.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.26,428.39 406.26,428.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.26,428.37 406.27,428.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.27,428.36 406.28,428.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.28,428.34 406.29,428.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.29,428.32 406.3,428.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.3,428.31 406.32,428.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.32,428.3 406.33,428.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.33,428.29 406.35,428.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.35,428.29 406.37,428.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.29,428.45 406.26,428.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.38,429.03 406.38,428.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.34,428.64 406.32,428.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.38,428.89 406.36,428.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.36,428.76 406.34,428.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.32,428.54 404.4,428.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.4,428.44 404.5,428.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.5,428.35 404.61,428.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.61,428.28 404.73,428.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.73,428.18 404.73,428.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.83,428.29 404.94,428.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.73,428.08 404.73,428.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.73,428.06 404.73,428.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.73,428.04 404.74,428.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.74,428.02 404.75,428.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.75,428.01 404.77,427.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.77,427.99 404.78,427.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.78,427.98 404.8,427.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.8,427.98 404.81,427.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.81,427.97 404.83,427.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.73,428.18 404.73,428.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.73,428.22 404.75,428.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.75,428.25 404.78,428.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.78,428.27 404.81,428.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.81,428.29 404.83,428.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,428.08 406.11,428.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,428.04 406.09,428.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.09,428.01 406.06,427.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.06,427.98 406.03,427.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.03,427.97 406.01,427.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,428.18 406.11,428.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,428.18 406.11,428.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,428.2 406.11,428.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,428.22 406.1,428.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.1,428.23 406.09,428.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.09,428.25 406.08,428.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.08,428.26 406.06,428.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.06,428.27 406.04,428.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.04,428.28 406.03,428.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.03,428.29 406.01,428.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,428.18 406.15,428.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.15,428.18 406.18,428.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.18,428.19 406.21,428.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.01,428.29 404.83,428.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.01,427.97 404.83,427.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.25,430.13 406.22,430.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.01,429.96 406.26,429.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.31,430.04 406.29,430.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.29,430.07 406.27,430.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.27,430.1 406.25,430.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.46,430.02 406.45,430.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.45,430.03 406.44,430.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.44,430.04 406.42,430.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.42,430.05 406.4,430.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.4,430.06 406.39,430.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.39,430.07 406.37,430.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.49,429.95 406.51,429.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.45,430.02 406.49,429.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.56,429.62 406.57,429.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.51,429.86 406.54,429.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.54,429.75 406.56,429.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.29,429.9 406.32,429.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.26,429.96 406.29,429.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.36,429.6 406.38,429.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.32,429.82 406.34,429.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.34,429.71 406.36,429.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.37,430.07 406.35,430.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.35,430.07 406.33,430.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.33,430.06 406.32,430.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.32,430.05 406.3,430.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.3,430.04 406.29,430.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.29,430.03 406.28,430.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.28,430.02 406.27,430" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.27,430 406.26,429.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.26,429.98 406.26,429.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.57,429.48 406.58,429.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.38,429.46 406.38,429.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.91,430.07 405.01,429.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.79,430.14 404.66,430.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.66,430.1 404.54,430.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.54,430.03 404.43,429.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.43,429.94 404.34,429.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.91,430.39 404.89,430.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.89,430.38 404.87,430.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.87,430.38 404.85,430.37" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.85,430.37 404.84,430.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.84,430.36 404.82,430.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.82,430.35 404.81,430.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.81,430.33 404.81,430.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.81,430.32 404.8,430.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.8,430.3 404.8,430.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.8,430.17 404.8,430.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.91,430.07 404.87,430.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.87,430.07 404.84,430.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.84,430.09 404.81,430.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.81,430.12 404.8,430.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.8,430.16 404.8,430.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,430.17 406.11,430.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.01,430.39 406.04,430.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.04,430.38 406.08,430.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.08,430.36 406.1,430.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.1,430.33 406.11,430.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,430.3 406.11,430.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.22,430.15 406.18,430.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.18,430.16 406.15,430.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.15,430.17 406.11,430.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.01,430.07 406.03,430.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.03,430.07 406.04,430.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.04,430.08 406.06,430.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.06,430.08 406.08,430.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.08,430.09 406.09,430.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.09,430.11 406.1,430.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.1,430.12 406.11,430.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,430.14 406.11,430.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.11,430.16 406.11,430.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.01,430.39 404.91,430.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.01,430.07 404.91,430.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.16,429.33 404.16,429.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.16,429.03 404.17,428.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.17,428.9 404.2,428.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.2,428.77 404.25,428.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.21,429.6 404.17,429.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.26,429.72 404.21,429.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.17,429.46 404.16,429.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.66,427.69 402.61,427.7 402.57,427.74 402.55,427.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.55,430.6 402.57,430.66 402.61,430.7 402.66,430.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.55,430.6 402.55,429.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.55,429.53 402.55,428.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.55,428.53 402.55,427.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.6,430.71 403.66,430.7 403.7,430.66 403.71,430.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.71,430.6 403.71,429.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.71,429.53 403.71,428.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.71,428.53 403.71,427.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.1,427.69 403.1,427.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.1,431.28 403.1,430.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.6,430.71 402.66,430.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.71,427.79 403.7,427.74 403.66,427.7 403.6,427.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.6,427.69 402.66,427.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.1,431.28 402.49,431.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.16,431.28 401.49,431.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.16,431.28 400.55,431.28 400.55,430.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.55,430.52 400.55,429.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.55,429.53 400.55,428.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.55,428.53 400.55,427.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.55,427.54 400.55,427.12 401.16,427.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.49,427.12 402.16,427.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.49,427.12 403.1,427.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.85,434.51 408.51,434.51 408.51,431.97 406.85,431.97 406.85,434.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.85,431.97 408.51,434.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.25,431.82 408.13,431.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.28,423.73 400.55,423.73 400.28,423.73 400.28,422.1 400.28,423.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.28,422.1 400.55,422.1 400.28,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.55,422.1 400.55,423.73 400.55,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.47,432.26 411.43,432.07 411.3,431.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.98,431.91 408.86,432.07 408.82,432.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.98,434.07 408.98,431.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.3,431.91 411.3,434.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.82,434.19 408.82,432.25" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.82,434.19 408.86,434.32 408.97,434.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.98,434.07 409.03,434.21 409.14,434.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.14,434.29 410.14,434.4 411.14,434.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.14,434.29 411.26,434.21 411.3,434.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.47,432.26 411.47,434.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.97,434.41 410.14,434.57 411.32,434.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.32,434.41 411.43,434.32 411.47,434.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.98,431.91 411.3,431.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.87,434.62 403.87,431.97 408.51,431.97 408.51,434.62 403.87,434.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.87,434.62 403.87,426.66 400.55,426.66 400.55,434.62 403.87,434.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.18,423.73 407.18,424.01 407.18,423.73 403.87,423.73 407.18,423.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.87,424.01 403.87,423.73 403.87,424.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.87,424.01 407.18,424.01 403.87,424.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.18,423.73 407.18,424.01 407.18,423.73 403.87,423.73 407.18,423.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.87,424.01 403.87,423.73 403.87,424.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.87,424.01 407.18,424.01 403.87,424.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="398.48,424.97 398.7,424.97 398.7,422.32 398.48,422.32 398.48,424.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="397.26,423.54 397.26,423.76 399.92,423.76 399.92,423.54 397.26,423.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="398.48,423.64 398.51,423.57 398.59,423.53 398.67,423.57 398.7,423.64 398.67,423.72 398.59,423.75 398.51,423.72 398.48,423.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.87,423.73 403.87,424.01 403.87,423.73 400.55,423.73 403.87,423.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.55,424.01 400.55,423.73 400.55,424.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.55,424.01 403.87,424.01 400.55,424.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.87,423.73 403.87,424.01 403.87,423.73 400.55,423.73 403.87,423.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.55,424.01 400.55,423.73 400.55,424.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.55,424.01 403.87,424.01 400.55,424.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="396.96,421.82 396.96,422.1 396.96,421.82 400.28,421.82 396.96,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.28,421.82 400.28,422.1 400.28,421.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.28,422.1 396.96,422.1 400.28,422.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.28,434.57 400.55,434.57 400.28,434.57 400.28,424.01 400.28,434.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.28,424.01 400.55,424.01 400.28,424.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.55,424.01 400.55,434.57 400.55,424.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.61,359.87 398.35,359.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.85,359.57 404.57,359.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="387.61,359.57 398.35,359.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="380.24,433.6 377.5,433.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="386.65,406.94 386.64,406.89 386.6,406.85 386.55,406.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="386.55,409.86 386.6,409.85 386.64,409.81 386.65,409.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="386.65,409.75 386.65,409.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="386.65,408.68 386.65,408.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="386.65,407.68 386.65,406.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.5,409.75 385.51,409.81 385.55,409.85 385.6,409.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.5,409.75 385.5,409.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.5,408.68 385.5,408.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.5,407.68 385.5,406.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="386.11,406.84 386.11,406.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="386.11,410.43 386.11,409.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.6,409.86 386.55,409.86" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.6,406.84 385.55,406.85 385.51,406.89 385.5,406.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.6,406.84 386.55,406.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="386.11,410.43 386.72,410.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.05,410.43 387.71,410.43" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.05,410.43 388.66,410.43 388.66,410.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.66,409.67 388.66,409.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.66,408.68 388.66,408.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.66,407.68 388.66,407.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="388.66,406.69 388.66,406.27 388.05,406.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.71,406.27 387.05,406.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="386.72,406.27 386.11,406.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.03,409.91 403.03,410.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.59,406.88 402.54,406.9 402.5,406.94 402.48,406.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.48,409.8 402.5,409.85 402.54,409.89 402.59,409.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.48,409.8 402.48,409.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.48,408.73 402.48,408.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.48,407.73 402.48,406.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.53,409.91 403.59,409.89 403.63,409.85 403.64,409.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.64,409.8 403.64,409.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.64,408.73 403.64,408.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.64,407.73 403.64,406.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.03,406.88 403.03,406.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.53,409.91 402.59,409.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.64,406.99 403.63,406.94 403.59,406.9 403.53,406.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.53,406.88 402.59,406.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.03,410.47 402.42,410.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.09,410.47 401.42,410.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.09,410.47 400.48,410.47 400.48,410.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.48,409.72 400.48,409.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.48,408.73 400.48,408.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.48,407.73 400.48,407.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="400.48,406.74 400.48,406.32 401.09,406.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.42,406.32 402.09,406.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.42,406.32 403.03,406.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.25,433.29 369.86,433.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.19,433.29 370.86,433.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.19,433.29 371.8,433.29 371.8,432.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.8,432.54 371.8,431.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.8,431.55 371.8,430.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.8,430.55 371.8,429.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.8,429.56 371.8,429.14 371.19,429.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.86,429.14 370.19,429.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.86,429.14 369.25,429.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.18,429.7 374.13,429.72 374.09,429.76 374.07,429.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.07,432.62 374.09,432.67 374.13,432.71 374.18,432.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.07,432.62 374.07,431.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.07,431.55 374.07,430.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.07,430.55 374.07,429.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.12,432.73 375.18,432.71 375.22,432.67 375.23,432.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.23,432.62 375.23,431.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.23,431.55 375.23,430.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.23,430.55 375.23,429.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.62,429.7 374.62,429.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.62,433.29 374.62,432.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.12,432.73 374.18,432.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.23,429.81 375.22,429.76 375.18,429.72 375.12,429.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.12,429.7 374.18,429.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.62,433.29 374.01,433.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.68,433.29 373.01,433.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.68,433.29 372.07,433.29 372.07,432.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.07,432.54 372.07,431.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.07,431.55 372.07,430.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.07,430.55 372.07,429.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="372.07,429.56 372.07,429.14 372.68,429.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="373.01,429.14 373.68,429.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.01,429.14 374.62,429.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.81,366.87 405.09,367.03 404.52,367.49 404.2,368.16 404.2,368.9 404.52,369.56 405.09,370.02 405.81,370.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.39,370.18 392.11,370.02 392.69,369.56 393.01,368.9 393.01,368.16 392.69,367.49 392.11,367.03 391.39,366.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="393.05,360.9 392.38,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="391.72,360.9 390.4,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="389.73,360.9 388.41,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="387.74,360.9 386.42,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="385.75,360.9 385.09,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.63,361.38 377.3,361.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="377.96,361.38 379.29,361.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="379.95,361.38 381.28,361.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="381.94,361.38 383.27,361.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="383.93,361.38 384.59,361.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="378.29,367.35 377.57,367.51 377,367.97 376.68,368.64 376.68,369.37 377,370.04 377.57,370.5 378.29,370.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.69,377.26 371.69,376.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.86,350.39 353.57,350.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="352.86,354.81 353.57,354.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="352.86,350.39 352.86,333.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="352.86,355.76 352.86,354.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.57,350.39 353.57,345.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.57,355.76 353.57,354.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.84,376.81 360.84,359.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.34,377.31 361.34,359.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.52,170.72 355.73,170.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.52,170.94 355.73,170.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.52,171.16 355.73,171.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.52,171.39 355.73,171.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.46,354.81 352.95,354.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.46,350.39 352.95,350.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.42,376.69 352.22,376.69 352.22,376.88 352.17,376.88 352.17,377.1 352.22,377.1 352.22,377.31 352.42,377.31 352.42,377.1 352.48,377.1 352.48,376.88 352.42,376.88 352.42,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.22,376.69 359.02,376.69 359.02,376.88 358.97,376.88 358.97,377.1 359.02,377.1 359.02,377.31 359.22,377.31 359.22,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.45,388.73 369.45,389.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.02,385.71 368.96,385.72 368.92,385.76 368.91,385.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.91,388.63 368.92,388.68 368.96,388.72 369.02,388.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.91,388.63 368.91,387.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.91,387.55 368.91,386.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.91,386.56 368.91,385.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.96,388.73 370.01,388.72 370.05,388.68 370.07,388.63" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.07,388.63 370.07,387.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.07,387.55 370.07,386.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.07,386.56 370.07,385.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.45,385.71 369.45,385.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.96,388.73 369.02,388.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.07,385.82 370.05,385.76 370.01,385.72 369.96,385.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.96,385.71 369.02,385.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.45,389.3 368.84,389.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.51,389.3 367.85,389.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.52,389.3 366.91,389.3 366.91,388.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.91,388.55 366.91,387.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.91,387.55 366.91,386.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.91,386.56 366.91,385.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="366.91,385.56 366.91,385.14 367.52,385.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="367.85,385.14 368.51,385.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.84,385.14 369.45,385.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.41,411.82 363.47,411.8 363.51,411.76 363.52,411.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.5,411.71 360.51,411.76 360.55,411.8 360.61,411.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.61,411.82 361.35,411.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.68,411.82 362.34,411.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.67,411.82 363.41,411.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.61,410.66 360.55,410.67 360.51,410.71 360.5,410.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.61,410.66 361.35,410.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.68,410.66 362.34,410.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.67,410.66 363.41,410.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.52,411.27 364.09,411.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.93,411.27 360.5,411.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.5,410.77 360.5,411.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.52,410.77 363.51,410.71 363.47,410.67 363.41,410.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.52,410.77 363.52,411.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.93,411.27 359.93,411.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.93,412.21 359.93,412.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="359.93,413.21 359.93,413.82 360.35,413.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.68,413.82 361.35,413.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.68,413.82 362.34,413.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="362.67,413.82 363.33,413.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.67,413.82 364.09,413.82 364.09,413.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="364.09,412.88 364.09,412.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="364.09,411.88 364.09,411.27" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.79,429.81 369.78,429.76 369.74,429.72 369.69,429.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.69,432.73 369.74,432.71 369.78,432.67 369.79,432.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.79,432.62 369.79,431.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.79,431.55 369.79,430.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.79,430.55 369.79,429.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.64,432.62 368.65,432.67 368.69,432.71 368.74,432.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.64,432.62 368.64,431.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.64,431.55 368.64,430.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.64,430.55 368.64,429.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.25,429.7 369.25,429.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="369.25,433.29 369.25,432.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.74,432.73 369.69,432.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.74,429.7 368.69,429.72 368.65,429.76 368.64,429.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="368.74,429.7 369.69,429.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="352.88,360.9 353.54,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.21,360.9 355.53,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="356.2,360.9 357.52,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.18,360.9 359.51,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.17,360.9 360.84,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="354.54,366.87 353.82,367.03 353.24,367.49 352.92,368.16 352.92,368.9 353.24,369.56 353.82,370.02 354.54,370.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="334.14,376.4 334.14,377.34" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.51,376.49 333.1,376.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.32,319.43 336.32,350.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.51,364.83 333.1,364.83" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.51,364.22 333.1,364.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.49,319.43 326.21,319.43" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.49,330.12 336.49,319.43" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.99,318.92 336.99,330.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="326.21,318.92 336.99,318.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.05,377.31 345.48,377.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="333.64,359.57 333.64,376.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="333.64,357.76 333.64,359.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="333.64,351.31 333.64,352.02" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="337.13,355.76 337.13,333.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.49,350.77 336.49,333.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="321.58,417.77 335.69,417.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.38,408.57 336.38,409.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="317.55,408.57 336.38,408.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="335.69,409.02 318.19,409.02" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="335.69,413.49 336.38,413.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.38,409.18 335.69,409.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="347.48,376.81 347.48,359.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="347.97,376.81 347.97,359.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="333.1,364.83 333.1,376.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="333.1,357.76 333.1,364.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="333.1,351.38 333.1,352.02" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="335.69,413.49 335.69,417.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="335.69,409.02 335.69,409.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="334.14,376.4 333.64,376.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="334.14,376.69 334.33,376.69 334.33,376.88 334.39,376.88 334.39,377.1 334.33,377.1 334.33,377.31 334.14,377.31 334.14,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.69,376.69 338.49,376.69 338.49,376.88 338.44,376.88 338.44,377.1 338.49,377.1 338.49,377.31 338.69,377.31 338.69,377.1 338.74,377.1 338.74,376.88 338.69,376.88 338.69,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.48,376.69 345.29,376.69 345.29,376.88 345.23,376.88 345.23,377.1 345.29,377.1 345.29,377.31 345.48,377.31 345.48,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.05,376.69 348.25,376.69 348.25,376.88 348.3,376.88 348.3,377.1 348.25,377.1 348.25,377.31 348.05,377.31 348.05,376.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.52,360.9 340.18,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="340.85,360.9 342.17,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="342.83,360.9 344.16,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="344.82,360.9 346.15,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.81,360.9 347.48,360.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="341.18,366.87 340.46,367.03 339.88,367.49 339.56,368.16 339.56,368.9 339.88,369.56 340.46,370.02 341.18,370.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="328.28,194.62 327.84,194.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.24,331.36 308.24,332.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="309.94,332.52 308.24,332.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="309.94,331.36 308.24,331.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="309.94,332.75 308.01,332.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="309.94,331.14 308.01,331.14" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="310.97,319.43 310.97,330.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="318.19,414.26 318.19,409.02" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="317.55,414.25 317.55,408.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.51,332.75 308.51,335.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="320.27,281.68 320.27,284.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.1,426.41 308.09,426.35 308.05,426.31 307.99,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.99,429.32 308.05,429.31 308.09,429.27 308.1,429.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="308.1,429.22 308.1,428.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="308.1,428.14 308.1,427.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="308.1,427.15 308.1,426.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="306.94,429.22 306.96,429.27 307,429.31 307.05,429.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="306.94,429.22 306.94,428.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="306.94,428.14 306.94,427.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="306.94,427.15 306.94,426.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.56,426.3 307.56,425.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.56,429.89 307.56,429.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.05,429.32 307.99,429.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.05,426.3 307,426.31 306.96,426.35 306.94,426.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.05,426.3 307.99,426.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="307.56,429.89 308.17,429.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="308.5,429.89 309.16,429.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.49,429.89 310.1,429.89 310.1,429.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="310.1,429.14 310.1,428.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="310.1,428.14 310.1,427.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="310.1,427.15 310.1,426.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="310.1,426.15 310.1,425.73 309.49,425.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="309.16,425.73 308.5,425.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="308.17,425.73 307.56,425.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.27,383.94 326.49,383.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.16,383.83 324.19,383.91 324.27,383.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.6,384.05 326.57,383.97 326.49,383.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.6,384.05 326.6,391.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.13,383.85 324.13,391.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.13,391.7 324.16,391.78 324.24,391.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.04,383.61 327.04,391.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="326.94,391.81 327.01,391.78 327.04,391.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.27,383.5 326.94,383.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.27,383.5 324.19,383.53 324.16,383.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="327.04,383.61 327.01,383.53 326.94,383.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.16,383.83 324.16,383.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.13,383.85 324.16,383.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.24,391.81 326.94,391.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="324.13,387.78 326.6,387.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="296.89,409.1 296.35,409.1" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="296.69,408.79 296.35,408.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="296.69,408.01 296.69,408.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="296.89,409.91 296.89,409.1" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="298.88,409.91 296.89,409.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="298.88,408.45 298.88,409.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="302.2,254.97 302.29,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.35,254.97 301.43,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,261.13 282.45,261.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,261.99 282.45,261.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,338.05 282.45,337.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,351.73 282.45,351.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.45,350.79 282.45,350.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.12,434.72 301.04,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.98,434.72 301.9,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.96,382.15 296.35,382.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.72,382.15 294.96,382.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.59,300.96 284.59,281.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="284.59,305.32 284.59,301.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="284.59,330.57 284.59,307.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="284.59,356.2 284.59,332.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="284.59,379.29 284.59,358.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="297.21,381.28 297.21,382.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="285.95,381.28 297.21,381.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="297.22,430.88 296.35,430.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="297.22,409.91 297.22,430.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="297.22,384.35 297.22,408.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+</svg>

+ 12327 - 0
src/components/Map/MainMapComponent/images/FirstFloorC.svg

@@ -0,0 +1,12327 @@
+<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="223.39 149.02 327.6 308.1">
+  <title>Produce by Acme CAD Converter</title>
+  <desc>Produce by Acme CAD Converter</desc>
+<polyline points="397.14,169.68 399.11,169.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.14,171.65 399.11,171.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.11,169.68 399.11,171.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.14,169.68 397.14,171.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="362.6,245.61 363.4,245.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="325.84,309.98 327.11,309.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,320.16 325.84,323.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.11,309.98 327.11,320.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.11,322.36 327.11,320.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,320.16 327.11,320.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.53,320.86 327.11,320.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.81,319.47 327.81,320.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.53,320.86 326.53,322.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.05,305.43 309.26,305.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.05,306.13 309.26,306.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.59,306.13 325.84,306.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.59,305.43 325.84,305.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.59,306.13 317.59,305.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.26,306.13 309.26,305.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.53,322.36 327.11,322.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,323.06 327.81,323.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.81,323.06 327.81,320.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.14,169.68 397.14,165.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.98,165.84 397.98,168.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.21,165.61 398.21,169.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.88,169.68 398.88,165.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.11,169.68 399.11,165.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.98,168.92 397.14,168.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.21,169.15 397.37,169.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.37,169.68 397.37,169.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.34,332.46 516.89,332.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="516.89,332.46 516.89,333.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.67,333.38 516.89,333.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.91,304.83 468.91,302.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.97,265.76 468.97,270.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.43,266.22 469.43,269.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.97,270.39 471.63,270.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.17,266.22 471.17,269.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.43,269.93 471.17,269.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.97,265.76 471.63,265.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.43,266.22 471.17,266.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.49,169.69 363.45,169.69 363.45,171.65 361.49,171.65 361.49,169.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.79,169.69 434.75,169.69 434.75,171.65 432.79,171.65 432.79,169.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.45,169.69 470.41,169.69 470.41,171.65 468.45,171.65 468.45,169.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.45,196.54 470.41,196.54 470.41,198.5 468.45,198.5 468.45,196.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.79,196.54 434.75,196.54 434.75,198.5 432.79,198.5 432.79,196.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.15,196.54 399.11,196.54 399.11,198.5 397.15,198.5 397.15,196.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.49,196.54 363.45,196.54 363.45,198.5 361.49,198.5 361.49,196.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.45,223.4 470.41,223.4 470.41,225.36 468.45,225.36 468.45,223.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.79,223.4 434.75,223.4 434.75,225.36 432.79,225.36 432.79,223.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.15,223.4 399.11,223.4 399.11,225.36 397.15,225.36 397.15,223.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.49,223.4 363.45,223.4 363.45,225.36 361.49,225.36 361.49,223.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.79,251.12 434.75,251.12 434.75,253.08 432.79,253.08 432.79,251.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.15,251.12 399.11,251.12 399.11,253.08 397.15,253.08 397.15,251.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.45,277.98 470.41,277.98 470.41,279.94 468.45,279.94 468.45,277.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.79,277.98 434.75,277.98 434.75,279.94 432.79,279.94 432.79,277.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.15,277.98 399.11,277.98 399.11,279.94 397.15,279.94 397.15,277.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.49,277.98 363.45,277.98 363.45,279.94 361.49,279.94 361.49,277.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.45,304.83 470.41,304.83 470.41,306.79 468.45,306.79 468.45,304.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.79,304.83 434.75,304.83 434.75,306.79 432.79,306.79 432.79,304.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.15,304.83 399.11,304.83 399.11,306.79 397.15,306.79 397.15,304.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.49,304.83 363.45,304.83 363.45,306.79 361.49,306.79 361.49,304.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.45,331.69 470.41,331.69 470.41,333.65 468.45,333.65 468.45,331.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.79,331.69 434.75,331.69 434.75,333.65 432.79,333.65 432.79,331.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.15,331.69 399.11,331.69 399.11,333.65 397.15,333.65 397.15,331.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.49,331.69 363.45,331.69 363.45,333.65 361.49,333.65 361.49,331.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,331.69 505.78,331.69 505.78,333.65 503.82,333.65 503.82,331.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.44,332.46 506.44,333.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="530.96,299.5 530.96,298.96" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="525.03,299.5 525.03,298.96" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="325.84,331.69 327.8,331.69 327.8,333.65 325.84,333.65 325.84,331.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.45,331.69 470.41,331.69 470.41,333.65 468.45,333.65 468.45,331.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.79,331.69 434.75,331.69 434.75,333.65 432.79,333.65 432.79,331.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.15,331.69 399.11,331.69 399.11,333.65 397.15,333.65 397.15,331.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.49,331.69 363.45,331.69 363.45,333.65 361.49,333.65 361.49,331.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,331.69 327.8,331.69 327.8,333.65 325.84,333.65 325.84,331.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.79,358.54 434.75,358.54 434.75,360.5 432.79,360.5 432.79,358.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.15,358.54 399.11,358.54 399.11,360.5 397.15,360.5 397.15,358.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.49,358.54 363.45,358.54 363.45,360.5 361.49,360.5 361.49,358.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,358.54 327.8,358.54 327.8,360.5 325.84,360.5 325.84,358.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.24,306.13 317.24,306.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.36,306.13 317.24,306.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.49,306.13 309.61,306.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.61,306.13 309.61,306.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.61,305.43 309.61,301.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.49,305.43 309.49,301.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.49,301.5 309.61,301.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.61,301.5 313.42,305.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.24,305.43 317.24,301.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.36,305.43 317.36,301.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.36,301.5 317.24,301.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.24,301.5 313.42,305.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.49,305.43 309.26,305.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.26,305.43 309.26,306.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.26,306.13 309.49,306.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.49,306.13 309.49,305.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.59,305.43 317.36,305.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.36,305.43 317.36,306.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.36,306.13 317.59,306.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.59,306.13 317.59,305.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.17,266.22 469.43,269.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.43,266.22 471.17,269.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="521.61,319.31 519.97,319.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.61,321.41 519.97,321.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.89,319.2 519.97,319.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.89,321.52 519.97,321.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519.86,321.29 519.86,319.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519.75,321.29 519.75,319.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519.97,321.41 519.89,321.37 519.86,321.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519.97,321.52 519.81,321.46 519.75,321.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="520.91,320.36 520.97,320.22 521.11,320.16 521.26,320.22 521.32,320.36 521.26,320.5 521.11,320.56 520.97,320.5 520.91,320.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519.75,319.43 519.81,319.26 519.97,319.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519.86,319.43 519.89,319.34 519.97,319.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.73,321.29 521.73,319.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="522.12,321.29 522.12,319.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.73,321.29 521.69,321.37 521.61,321.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="522.12,321.29 522.05,321.46 521.89,321.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.83,320.36 521.86,320.3 521.92,320.27 521.99,320.3 522.01,320.36 521.99,320.42 521.92,320.45 521.86,320.42 521.83,320.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.83,320.73 521.86,320.67 521.92,320.64 521.99,320.67 522.01,320.73 521.99,320.8 521.92,320.82 521.86,320.8 521.83,320.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.83,319.99 521.86,319.92 521.92,319.9 521.99,319.92 522.01,319.99 521.99,320.05 521.92,320.08 521.86,320.05 521.83,319.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.89,319.2 522.05,319.26 522.12,319.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.61,319.31 521.69,319.34 521.73,319.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="522.34,318.6 519.56,318.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519.56,318.6 519.56,332.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="432.17,359.58 432.35,360.25 432.79,360.78 433.42,361.08 434.11,361.08 434.74,360.78 435.18,360.25 435.36,359.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="435.36,359.46 435.18,358.79 434.74,358.26 434.11,357.96 433.42,357.96 432.79,358.26 432.35,358.79 432.17,359.46" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="432.17,332.73 432.35,333.4 432.79,333.93 433.42,334.22 434.11,334.22 434.74,333.93 435.18,333.4 435.36,332.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="435.36,332.61 435.18,331.94 434.74,331.4 434.11,331.11 433.42,331.11 432.79,331.4 432.35,331.94 432.17,332.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="432.17,359.46 432.29,359.46 432.29,359.58 432.17,359.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="435.36,359.46 435.24,359.46 435.24,359.58 435.36,359.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="432.17,332.61 432.29,332.61 432.29,332.73 432.17,332.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="435.36,332.61 435.24,332.61 435.24,332.73 435.36,332.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="432.44,359.32 432.44,359.72 432.29,359.72 432.29,359.32 432.44,359.32" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="435.09,359.32 435.09,359.72 435.24,359.72 435.24,359.32 435.09,359.32" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="432.44,332.47 432.44,332.87 432.29,332.87 432.29,332.47 432.44,332.47" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="435.09,332.47 435.09,332.87 435.24,332.87 435.24,332.47 435.09,332.47" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.15,305.54 395.91,305.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="382.53,306.08 383.76,306.08 383.76,305.54 382.53,305.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="376.6,305.54 375.92,305.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.92,305.54 375.92,306.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="362.2,318.77 362.2,330.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.15,306.08 395.91,306.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="376.6,306.08 375.92,306.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="362.75,318.92 362.75,331.69" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.4,279.94 398.4,304.83" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="401.13,287.85 401.13,305.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="397.85,279.94 397.85,304.83" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="383.3,291.47 397.85,291.47" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="382.75,290.93 397.85,290.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="382.53,306.08 382.53,305.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="382.75,305.54 382.75,290.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="383.3,305.54 383.3,291.47" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.15,277.98 363.45,277.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.15,278.52 363.45,278.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.49,277.98 349.83,277.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.83,277.98 340.86,277.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="350.06,295.28 349.83,295.28" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.83,295.28 342.74,295.28" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.49,278.52 350.61,278.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="350.06,278.52 349.83,278.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.83,278.52 340.89,278.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="350.61,295.82 349.83,295.82" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.83,295.82 342.74,295.82" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="350.06,295.28 350.06,294.82" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="350.06,294.82 350.06,278.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="349.83,278.52 349.83,277.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="350.61,295.82 350.61,294.82" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="350.61,294.82 350.61,278.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="326.39,330.57 326.39,323.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="325.84,331.69 325.84,323.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="468.45,358.17 468.45,333.65" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469,333.65 469,358.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="468.45,306.79 468.45,331.69" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469,331.69 469,306.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="468.45,304.83 468.45,298.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.11,251.12 399.11,245.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.3,251.12 398.3,245.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.3,245.74 399.11,245.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="381.28,245.74 381.28,268.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="380.48,245.74 380.48,268.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.19,251 504.37,251" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.19,251.55 504.37,251.55" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.14,331.69 397.14,333.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.11,331.69 399.11,333.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.14,333.65 399.11,333.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.14,331.69 399.11,331.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.14,358.54 397.14,360.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.11,358.54 399.11,360.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.14,360.51 399.11,360.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.14,358.54 399.11,358.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.14,358.54 397.14,360.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.11,358.54 399.11,360.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.14,360.51 399.11,360.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.14,358.54 399.11,358.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.53,359.58 396.7,360.26 397.15,360.79 397.78,361.08 398.47,361.08 399.1,360.79 399.54,360.26 399.72,359.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="399.72,359.47 399.54,358.8 399.1,358.26 398.47,357.97 397.78,357.97 397.15,358.26 396.7,358.8 396.53,359.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="396.53,332.73 396.7,333.4 397.15,333.93 397.78,334.23 398.47,334.23 399.1,333.93 399.54,333.4 399.72,332.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="399.72,332.61 399.54,331.94 399.1,331.41 398.47,331.11 397.78,331.11 397.15,331.41 396.7,331.94 396.53,332.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="396.53,359.47 396.65,359.47 396.65,359.58 396.53,359.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="399.72,359.47 399.6,359.47 399.6,359.58 399.72,359.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="396.53,332.61 396.65,332.61 396.65,332.73 396.53,332.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="399.72,332.61 399.6,332.61 399.6,332.73 399.72,332.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="396.8,359.32 396.8,359.73 396.65,359.73 396.65,359.32 396.8,359.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="399.44,359.32 399.44,359.73 399.6,359.73 399.6,359.32 399.44,359.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="396.8,332.47 396.8,332.87 396.65,332.87 396.65,332.47 396.8,332.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="399.44,332.47 399.44,332.87 399.6,332.87 399.6,332.47 399.44,332.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="398.03,330.8 398.03,331.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="398.03,361.4 398.03,361.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="375.92,306.08 375.92,306.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.92,306.54 376.37,306.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.37,306.54 376.37,306.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.37,306.08 375.92,306.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.15,306.54 376.15,318.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.92,306.54 375.92,318.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.37,318.77 376.37,306.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.55,361.62 326.55,360.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.8,361.07 327.8,360.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.8,331.12 361.49,331.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="326.39,330.57 362.2,330.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="388.09,305.54 387.95,304.48 387.54,303.49 386.89,302.64 386.04,301.99 385.05,301.58 383.98,301.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.31,305.54 388.31,306.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.31,306.08 388.09,306.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.09,306.08 388.09,305.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.09,305.54 388.31,305.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.98,305.54 383.98,301.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.98,301.44 384.19,301.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="384.19,301.44 384.19,305.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="384.19,305.54 383.98,305.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.76,306.08 383.76,305.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.76,305.54 383.98,305.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.98,305.54 383.98,306.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.98,306.08 383.76,306.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.31,306.08 395.91,306.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.91,306.08 395.91,305.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.91,305.54 388.31,305.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.31,305.54 388.31,306.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.31,306.08 388.54,306.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.54,306.08 388.54,305.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.54,305.54 388.31,305.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.31,305.54 388.31,306.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.68,306.08 395.91,306.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.91,306.08 395.91,305.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.91,305.54 395.68,305.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.68,305.54 395.68,306.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.54,305.81 395.68,305.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="395.91,306.08 395.91,305.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="478.43,177.72 459.43,177.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="346.88,180.33 346.88,179.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.38,179.53 344.38,179.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.38,179.53 344.92,179.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.49,179.52 363.45,179.52 363.45,185.08 361.49,185.08 361.49,179.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="362.02,180.04 362.93,180.04 362.93,184.55 362.02,184.55 362.02,180.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="363.46,269.75 399.11,269.75" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="363.46,268.95 380.48,268.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="381.28,268.95 398.3,268.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="399.11,253.08 399.11,269.75" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.3,253.08 398.3,268.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="380.48,245.74 381.28,245.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.09,165.23 397.09,167.28 378.86,167.28 378.86,165.23 397.09,165.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="430.1,165.23 430.1,167.28 399.11,167.28 399.11,165.23 430.1,165.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="437.43,165.23 437.43,167.28 465.69,167.28 465.69,165.23 437.43,165.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="469.04,230.37 470.41,230.37 470.41,233.83 469.04,233.83 469.04,230.37" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469.59,230.92 469.86,230.92 469.86,233.29 469.59,233.29 469.59,230.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469.04,212.94 470.41,212.94 470.41,216.41 469.04,216.41 469.04,212.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469.59,213.49 469.86,213.49 469.86,215.86 469.59,215.86 469.59,213.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469.04,203.99 470.41,203.99 470.41,207.45 469.04,207.45 469.04,203.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469.59,204.54 469.86,204.54 469.86,206.91 469.59,206.91 469.59,204.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469.04,186.56 470.41,186.56 470.41,190.03 469.04,190.03 469.04,186.56" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469.59,187.11 469.86,187.11 469.86,189.48 469.59,189.48 469.59,187.11" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="468.45,195.04 470.41,195.04 470.41,196.54 468.45,196.54 468.45,195.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469,195.59 469.86,195.59 469.86,196.54 469,196.54 469,195.59" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="468.45,221.89 470.41,221.89 470.41,223.4 468.45,223.4 468.45,221.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469,222.44 469.86,222.44 469.86,223.4 469,223.4 469,222.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="374.02,256.19 374.02,268.95 369.92,268.95 369.92,256.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="374.02,256.19 373.3,255.62 372.43,255.32 371.51,255.32 370.64,255.62 369.92,256.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="387.74,256.19 387.74,268.95 391.84,268.95 391.84,256.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="391.84,256.19 391.12,255.62 390.25,255.32 389.33,255.32 388.46,255.62 387.74,256.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="433.94,357.93 433.6,357.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="433.6,357.93 433.6,334.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="433.6,334.26 433.94,334.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="433.94,334.26 433.94,357.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="397.15,179.52 399.11,179.52 399.11,185.08 397.15,185.08 397.15,179.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.67,180.04 398.59,180.04 398.59,184.55 397.67,184.55 397.67,180.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.15,196.54 397.15,192.95 399.11,192.95 399.11,196.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.69,196.54 397.69,193.49 398.56,193.49 398.56,196.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.49,196.54 361.49,192.95 363.45,192.95 363.45,196.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="362.04,196.54 362.04,193.49 362.91,193.49 362.91,196.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.49,225.36 361.49,228.95 363.45,228.95 363.45,225.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="362.04,225.36 362.04,228.41 362.91,228.41 362.91,225.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.49,208.17 363.45,208.17 363.45,213.73 361.49,213.73 361.49,208.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="362.02,208.69 362.93,208.69 362.93,213.21 362.02,213.21 362.02,208.69" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.15,208.17 399.11,208.17 399.11,213.73 397.15,213.73 397.15,208.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.67,208.69 398.59,208.69 398.59,213.21 397.67,213.21 397.67,208.69" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.15,225.36 397.15,228.95 399.11,228.95 399.11,225.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.69,225.36 397.69,228.41 398.56,228.41 398.56,225.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="432.79,196.54 432.79,192.95 434.75,192.95 434.75,196.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="433.33,196.54 433.33,193.49 434.2,193.49 434.2,196.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="432.79,179.52 434.75,179.52 434.75,185.08 432.79,185.08 432.79,179.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="433.31,180.04 434.23,180.04 434.23,184.55 433.31,184.55 433.31,180.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="432.79,208.17 434.75,208.17 434.75,213.73 432.79,213.73 432.79,208.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="433.31,208.69 434.23,208.69 434.23,213.21 433.31,213.21 433.31,208.69" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="432.79,225.36 432.79,228.95 434.75,228.95 434.75,225.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="433.33,225.36 433.33,228.41 434.2,228.41 434.2,225.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="326.55,361.85 327,361.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327,361.85 327,361.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327,361.62 326.55,361.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.55,361.62 326.55,361.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.55,377.12 326.55,376.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.55,376.66 327,376.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327,376.66 327,377.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327,377.12 326.55,377.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.78,376.66 326.78,361.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.55,376.89 326.55,361.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327,361.85 327,376.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.55,361.85 326.55,361.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.55,361.62 327,361.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327,361.62 327,361.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327,361.85 326.55,361.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.45,171.32 333.45,179.53 337.55,179.53 337.55,171.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.55,171.32 336.83,170.75 335.96,170.45 335.04,170.45 334.17,170.75 333.45,171.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="344.38,186.48 344.38,196.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,196.89 344.92,196.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,196.89 344.92,186.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,186.48 344.38,186.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,196.89 344.38,197.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,197.12 344.92,197.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,197.12 344.92,196.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,196.89 344.38,196.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.65,186.48 344.65,189.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.65,190.07 344.65,193.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.65,193.54 344.65,196.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.27,182.15 340.41,183.21 340.82,184.2 341.48,185.05 342.32,185.7 343.31,186.11 344.38,186.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,186.48 344.92,186.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,186.48 344.92,186.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,186.25 344.38,186.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,186.25 344.38,186.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,182.15 340.27,182.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.27,182.15 340.27,182.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.27,182.36 344.38,182.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,182.36 344.38,182.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,181.92 344.38,181.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,181.92 344.38,182.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,182.15 344.92,182.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,182.15 344.92,181.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,171.94 344.38,179.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,179.3 344.92,179.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,179.3 344.92,171.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,171.94 344.38,171.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,171.94 344.38,171.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,171.94 344.92,171.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,171.94 344.92,171.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,171.94 344.38,171.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,179.3 344.38,179.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,179.53 344.92,179.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,179.53 344.92,179.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,179.3 344.38,179.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.65,171.94 344.65,175.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.65,175.73 344.65,179.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.27,167.61 340.41,168.67 340.82,169.66 341.48,170.51 342.32,171.16 343.31,171.57 344.38,171.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,171.94 344.92,171.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,171.94 344.92,171.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,171.71 344.38,171.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,171.71 344.38,171.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,167.61 340.27,167.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.27,167.61 340.27,167.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.27,167.81 344.38,167.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,167.81 344.38,167.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,167.38 344.38,167.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,167.38 344.38,167.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,167.61 344.92,167.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,167.61 344.92,167.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="505.78,333.65 505.78,337.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="505.23,333.65 505.23,337.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="516.89,332.46 515.09,332.46" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="506.44,332.46 505.78,332.46" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="516.89,333.38 515.09,333.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="506.44,333.38 505.78,333.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="515.09,332.64 514.87,332.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.87,332.64 514.87,333.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.87,333.19 515.09,333.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="515.09,333.19 515.09,332.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.44,332.64 506.44,333.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.44,333.19 506.66,333.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.66,333.19 506.66,332.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.66,332.64 506.44,332.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="515.09,333.38 515.09,332.46" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="503.82,333.65 503.82,337.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="504.37,333.65 504.37,337.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="325.84,309.98 325.84,320.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="326.39,309.98 326.39,320.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.49,331.69 361.49,331.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.8,331.69 327.8,331.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="362.75,361.62 362.75,360.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.49,360.5 361.49,361.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.8,361.07 361.49,361.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="326.55,361.62 362.75,361.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.8,359.25 361.49,359.25" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.8,359.79 361.49,359.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.8,332.94 361.49,332.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.8,332.39 361.49,332.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="435.36,359.46 435.18,358.79 434.74,358.26 434.11,357.96 433.42,357.96 432.79,358.26 432.35,358.79 432.17,359.46" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="432.17,359.58 432.35,360.25 432.79,360.78 433.42,361.08 434.11,361.08 434.74,360.78 435.18,360.25 435.36,359.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="432.17,359.58 432.29,359.58 432.29,359.46 432.17,359.46" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="435.36,359.58 435.24,359.58 435.24,359.46 435.36,359.46" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="432.44,359.72 432.44,359.32 432.29,359.32 432.29,359.72 432.44,359.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="435.09,359.72 435.09,359.32 435.24,359.32 435.24,359.72 435.09,359.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="396.53,332.73 396.71,333.4 397.15,333.93 397.78,334.22 398.47,334.22 399.1,333.93 399.55,333.4 399.72,332.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="399.72,332.61 399.55,331.94 399.1,331.4 398.47,331.11 397.78,331.11 397.15,331.4 396.71,331.94 396.53,332.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="396.53,332.61 396.65,332.61 396.65,332.73 396.53,332.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="399.72,332.61 399.6,332.61 399.6,332.73 399.72,332.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="396.81,332.47 396.81,332.87 396.65,332.87 396.65,332.47 396.81,332.47" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="399.45,332.47 399.45,332.87 399.6,332.87 399.6,332.47 399.45,332.47" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="399.72,359.46 399.55,358.79 399.1,358.26 398.47,357.96 397.78,357.96 397.15,358.26 396.71,358.79 396.53,359.46" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="396.53,359.58 396.71,360.25 397.15,360.78 397.78,361.08 398.47,361.08 399.1,360.78 399.55,360.25 399.72,359.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="396.53,359.58 396.65,359.58 396.65,359.46 396.53,359.46" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="399.72,359.58 399.6,359.58 399.6,359.46 399.72,359.46" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="396.81,359.72 396.81,359.32 396.65,359.32 396.65,359.72 396.81,359.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="399.45,359.72 399.45,359.32 399.6,359.32 399.6,359.72 399.45,359.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="328.45,359.02 339.57,359.02 339.57,359.25 328.45,359.25 328.45,359.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="349.73,359.02 360.85,359.02 360.85,359.25 349.73,359.25 349.73,359.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="340.48,359.02 348.82,359.02 348.82,359.25 340.48,359.25 340.48,359.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.45,333.17 339.57,333.17 339.57,332.94 328.45,332.94 328.45,333.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="349.73,333.17 360.85,333.17 360.85,332.94 349.73,332.94 349.73,333.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="340.48,333.17 348.82,333.17 348.82,332.94 340.48,332.94 340.48,333.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.6,306.08 376.6,305.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="325.61,326.4 325.84,326.4 325.84,331.87 325.61,331.87 325.61,326.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.61,320.02 325.84,320.02 325.84,325.49 325.61,325.49 325.61,320.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="344.38,180.56 344.38,180.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,180.33 344.92,180.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,180.33 344.92,180.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,180.56 344.38,180.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,180.56 344.92,181.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,181.92 344.38,180.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.65,180.56 344.65,181.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,165.45 344.92,167.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,167.38 344.38,165.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.65,165.45 344.65,167.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,180.33 346.88,180.33" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="325.52,179.53 346.88,179.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="346.88,197.92 346.88,197.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.81,197.92 346.88,197.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.81,197.12 346.88,197.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="346.88,215.52 346.88,214.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.38,214.72 344.38,214.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.38,214.72 344.92,214.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.38,221.67 344.38,233.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,233.01 344.92,233.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,233.01 344.92,221.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,221.67 344.38,221.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.65,221.67 344.65,225.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.65,225.56 344.65,229.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.65,229.34 344.65,233.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.27,217.34 340.41,218.4 340.82,219.39 341.48,220.24 342.32,220.89 343.31,221.3 344.38,221.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,221.67 344.92,221.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,221.67 344.92,221.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,221.44 344.38,221.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,221.44 344.38,221.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,217.34 340.27,217.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.27,217.34 340.27,217.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.27,217.55 344.38,217.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,217.55 344.38,217.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,217.11 344.38,217.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,217.11 344.38,217.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,217.34 344.92,217.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,217.34 344.92,217.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,215.75 344.38,215.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,215.52 344.92,215.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,215.52 344.92,215.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,215.75 344.38,215.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,215.75 344.92,217.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,217.11 344.38,215.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.65,215.75 344.65,217.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,215.52 346.88,215.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="325.52,214.72 346.88,214.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="346.88,234.04 346.88,233.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.38,233.24 344.38,233.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.38,233.24 344.92,233.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.38,240.19 344.38,247.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,247.47 344.92,240.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,240.19 344.38,240.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.65,240.19 344.65,243.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.65,243.95 344.65,247.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.27,235.86 340.41,236.92 340.82,237.91 341.48,238.76 342.32,239.41 343.31,239.82 344.38,239.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,240.19 344.92,240.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,240.19 344.92,239.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,239.96 344.38,239.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,239.96 344.38,240.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,235.86 340.27,235.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.27,235.86 340.27,236.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.27,236.07 344.38,236.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,236.07 344.38,235.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,235.63 344.38,235.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,235.63 344.38,235.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,235.86 344.92,235.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,235.86 344.92,235.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,234.27 344.38,234.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,234.04 344.92,234.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,234.04 344.92,234.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,234.27 344.38,234.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,234.27 344.92,235.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,235.63 344.38,234.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.65,234.27 344.65,235.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,234.04 346.88,234.04" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="325.52,233.24 346.88,233.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.38,233.24 344.38,233.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,233.01 344.92,233.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,233.01 344.92,233.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,233.24 344.38,233.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,204.08 344.38,214.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,214.49 344.92,214.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,214.49 344.92,204.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,204.08 344.38,204.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,214.49 344.38,214.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,214.72 344.92,214.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,214.72 344.92,214.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,214.49 344.38,214.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.65,204.08 344.65,207.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.65,207.66 344.65,210.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.65,211.13 344.65,214.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.27,199.75 340.41,200.81 340.82,201.8 341.48,202.65 342.32,203.3 343.31,203.71 344.38,203.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,204.08 344.92,204.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,204.08 344.92,203.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,203.85 344.38,203.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,203.85 344.38,204.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,199.75 340.27,199.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.27,199.75 340.27,199.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.27,199.95 344.38,199.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,199.95 344.38,199.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,199.52 344.38,199.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,199.52 344.38,199.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,199.75 344.92,199.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,199.75 344.92,199.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,198.15 344.38,197.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,197.92 344.92,197.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,197.92 344.92,198.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,198.15 344.38,198.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,198.15 344.92,199.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,199.52 344.38,198.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.65,198.15 344.65,199.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.45,188.92 333.45,197.12 337.55,197.12 337.55,188.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.55,188.92 336.83,188.35 335.96,188.05 335.04,188.05 334.17,188.35 333.45,188.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.45,206.51 333.45,214.72 337.55,214.72 337.55,206.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.55,206.51 336.83,205.94 335.96,205.64 335.04,205.64 334.17,205.94 333.45,206.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.45,225.03 333.45,233.24 337.55,233.24 337.55,225.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.55,225.03 336.83,224.46 335.96,224.16 335.04,224.16 334.17,224.46 333.45,225.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="333.45,243.07 333.45,251.27 337.55,251.27 337.55,243.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.55,243.07 336.83,242.49 335.96,242.19 335.04,242.19 334.17,242.49 333.45,243.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="344.38,175.5 344.38,175.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,175.73 344.92,175.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,175.73 344.92,175.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,175.5 344.38,175.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,193.32 344.38,193.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,193.54 344.92,193.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,193.54 344.92,193.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,193.32 344.38,193.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,189.84 344.38,190.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,190.07 344.92,190.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,190.07 344.92,189.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,189.84 344.38,189.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,210.9 344.38,211.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,211.13 344.92,211.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,211.13 344.92,210.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,210.9 344.38,210.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,207.43 344.38,207.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,207.66 344.92,207.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,207.66 344.92,207.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,207.43 344.38,207.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,229.34 344.38,229.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,229.12 344.92,229.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,229.12 344.92,229.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,229.34 344.38,229.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,225.56 344.38,225.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,225.34 344.92,225.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,225.34 344.92,225.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,225.56 344.38,225.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,243.72 344.38,243.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,243.95 344.92,243.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,243.95 344.92,243.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,243.72 344.38,243.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.61,248.25 380.25,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.25,248.25 380.25,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.25,247.7 369.61,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.61,247.7 369.61,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.61,247.98 373.09,247.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.31,247.98 376.55,247.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.78,247.98 380.25,247.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="365.28,252.35 366.34,252.21 367.33,251.8 368.18,251.15 368.83,250.3 369.24,249.31 369.38,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.61,248.25 369.61,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.61,247.7 369.38,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.38,247.7 369.38,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.38,248.25 369.61,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="365.28,248.25 365.28,252.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="365.28,252.35 365.49,252.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="365.49,252.35 365.49,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="365.49,248.25 365.28,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="365.05,247.7 365.05,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="365.05,248.25 365.28,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="365.28,248.25 365.28,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="365.28,247.7 365.05,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.63,247.7 365.05,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="365.05,248.25 363.63,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.63,247.98 365.05,247.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.78,248.25 376.55,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.55,248.25 376.55,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.55,247.7 376.78,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.78,247.7 376.78,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.31,248.25 373.09,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.09,248.25 373.09,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.09,247.7 373.31,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.31,247.7 373.31,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.48,248.25 380.25,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.25,248.25 380.25,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.25,247.7 380.48,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.48,247.7 380.48,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.44,248.25 398.08,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.08,248.25 398.08,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.08,247.7 387.44,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.44,247.7 387.44,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.44,247.98 390.91,247.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.14,247.98 394.37,247.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="394.6,247.98 398.08,247.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.11,252.35 384.17,252.21 385.16,251.8 386.01,251.15 386.66,250.3 387.07,249.31 387.21,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.44,248.25 387.44,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.44,247.7 387.21,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.21,247.7 387.21,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="387.21,248.25 387.44,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.11,248.25 383.11,252.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.11,252.35 383.31,252.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.31,252.35 383.31,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.31,248.25 383.11,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.88,247.7 382.88,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.88,248.25 383.11,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.11,248.25 383.11,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.11,247.7 382.88,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="381.51,248.25 381.28,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="381.28,248.25 381.28,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="381.28,247.7 381.51,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="381.51,247.7 381.51,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="381.51,247.7 382.88,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.88,248.25 381.51,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="381.51,247.98 382.88,247.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="394.6,248.25 394.37,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="394.37,248.25 394.37,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="394.37,247.7 394.6,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="394.6,247.7 394.6,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.14,248.25 390.91,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.91,248.25 390.91,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.91,247.7 391.14,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.14,247.7 391.14,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.3,248.25 398.08,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.08,248.25 398.08,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.08,247.7 398.3,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.3,247.7 398.3,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.4,247.57 363.4,245.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="362.6,247.57 362.6,245.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="461.17,241.86 459.21,241.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="461.17,242.66 459.21,242.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="459.21,241.86 459.21,242.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="459.43,177.74 459.43,178.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.83,277.98 343.83,278.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.83,277.98 343.83,278.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="350.06,294.82 350.06,295.28" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.14,331.69 397.14,333.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.11,331.69 399.11,333.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.14,333.65 399.11,333.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.14,331.69 399.11,331.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.14,358.54 397.14,360.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.11,358.54 399.11,360.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.14,360.51 399.11,360.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.14,358.54 399.11,358.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.14,358.54 397.14,360.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.11,358.54 399.11,360.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.14,360.51 399.11,360.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.14,358.54 399.11,358.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.23,340.63 417.44,336.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.81,342.04 415.02,339.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="421.23,340.63 421.23,351.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="420.82,340.8 420.82,351.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="420.24,341.04 420.24,351.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.81,342.04 417.81,350.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="410.35,329.75 406.66,333.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.23,337.21 420.82,340.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="410.35,329.75 417.52,336.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.44,331.79 415.47,338.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.85,331.38 415.88,338.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.82,337.62 420.24,341.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.92,349.97 420.24,349.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.92,349.88 420.24,349.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.92,346.1 420.24,346.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.92,346.18 420.24,346.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.92,346.1 417.92,349.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.68,348.52 417.98,349.82 417.92,349.88 416.61,348.58 416.68,348.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.92,348.03 417.22,348.18 416.61,348.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.68,347.55 417.98,346.25 417.92,346.18 416.61,347.49 416.68,347.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.61,347.49 417.22,347.89 417.92,348.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.92,342.22 420.24,342.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.92,342.31 420.24,342.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.92,346.1 420.24,346.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.92,346.01 420.24,346.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.92,346.1 417.92,342.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.68,343.68 417.98,342.37 417.92,342.31 416.61,343.62 416.68,343.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.61,343.62 417.22,344.02 417.92,344.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.68,344.64 417.98,345.95 417.92,346.01 416.61,344.7 416.68,344.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.92,344.16 417.22,344.3 416.61,344.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.85,331.38 406.8,333.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.5,331.85 406.86,333.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.8,333.42 406.86,333.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.76,341.84 419.4,340.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.19,339.26 417.52,336.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.25,339.32 416.88,337.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.7,341.78 419.34,340.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.92,342.22 417.92,342" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="418.01,342.22 418.01,341.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.76,341.84 415.19,339.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.47,340.55 418.11,338.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.76,341.84 417.92,342" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.82,341.78 418.01,341.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.02,339.26 417.44,336.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="412.48,339.26 406.66,333.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.02,339.26 412.48,339.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="421.23,351.57 417.44,355.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.81,350.15 415.02,352.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="410.35,362.44 406.66,358.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.23,354.98 420.82,351.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="410.35,362.44 417.52,355.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.44,360.41 415.47,353.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.85,360.82 415.88,353.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.82,354.57 420.24,351.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.85,360.82 406.8,358.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.5,360.35 406.86,358.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.8,358.77 406.86,358.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.76,350.36 419.4,352" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.19,352.94 417.52,355.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.25,352.87 416.88,354.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.7,350.42 419.34,352.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.92,349.97 417.92,350.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="418.01,349.97 418.01,350.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.76,350.36 415.19,352.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.76,350.36 417.92,350.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.82,350.42 418.01,350.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.02,352.94 417.44,355.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="412.48,352.94 406.66,358.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.02,352.94 412.48,352.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="396.53,332.67 396.71,331.93 397.22,331.36 397.93,331.09 398.69,331.18 399.32,331.61 399.67,332.29 399.67,333.05 399.32,333.73 398.69,334.16 397.93,334.25 397.22,333.98 396.71,333.41 396.53,332.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="396.64,332.67 396.81,331.98 397.28,331.45 397.94,331.2 398.65,331.29 399.23,331.69 399.56,332.32 399.56,333.02 399.23,333.65 398.65,334.06 397.94,334.14 397.28,333.89 396.81,333.36 396.64,332.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="396.53,359.53 396.71,358.78 397.22,358.21 397.93,357.94 398.69,358.03 399.32,358.47 399.67,359.14 399.67,359.91 399.32,360.58 398.69,361.02 397.93,361.11 397.22,360.84 396.71,360.27 396.53,359.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="396.64,359.53 396.81,358.84 397.28,358.31 397.94,358.05 398.65,358.14 399.23,358.54 399.56,359.17 399.56,359.88 399.23,360.51 398.65,360.91 397.94,361 397.28,360.74 396.81,360.21 396.64,359.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="404.01,323.41 401.71,325.75 399.68,328.32 397.93,331.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="396.74,333.46 395.56,336.49 394.71,339.63 394.19,342.85 394.02,346.1 394.19,349.35 394.71,352.56 395.56,355.7 396.74,358.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="397.93,361.11 399.68,363.88 401.71,366.45 404.01,368.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="404.21,323.78 402.03,326.01 400.08,328.46 398.4,331.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="397.02,333.83 395.9,336.78 395.09,339.83 394.6,342.94 394.43,346.1 394.6,349.25 395.09,352.37 395.9,355.42 397.02,358.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="398.4,361.1 400.08,363.73 402.03,366.18 404.21,368.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="404.54,324.1 402.4,326.28 400.49,328.67 398.84,331.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="397.4,334.09 396.31,336.98 395.52,339.97 395.05,343.02 394.89,346.1 395.05,349.18 395.52,352.23 396.31,355.21 397.4,358.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="398.84,360.95 400.49,363.52 402.4,365.91 404.54,368.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.43,325.83 404.15,328.16 402.16,330.74 400.49,333.54 399.17,336.52 398.21,339.64 397.63,342.84 397.44,346.1 397.63,349.35 398.21,352.56 399.17,355.67 400.49,358.65 402.16,361.46 404.15,364.04 406.43,366.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.26,325.82 406.2,325.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.43,325.83 404.01,323.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.26,325.82 404.21,323.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.2,325.88 404.47,324.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.43,366.37 404.01,368.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="397.14,358.54 399.11,358.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.2,366.31 406.26,366.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.26,366.37 404.21,368.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.2,366.31 404.47,368.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="345.15,247.57 345.15,245.52 362.43,245.52 362.43,247.57 345.15,247.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.28,316.3 325.28,313.03 323.6,313.03 323.6,316.3 325.28,316.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.28,317.65 325.28,311.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.55,311.02 323.63,311.84 322.98,312.88 322.63,314.06 322.63,315.28 322.98,316.46 323.63,317.5 324.55,318.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.55,311.02 325.28,311.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="324.55,318.32 325.28,317.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.15,261.57 449.19,261.57 449.19,263.53 451.15,263.53 451.15,261.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="450.61,262.12 449.74,262.12 449.74,262.98 450.61,262.98 450.61,262.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.15,288.43 449.19,288.43 449.19,290.38 451.15,290.38 451.15,288.43" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="450.61,288.97 449.74,288.97 449.74,289.84 450.61,289.84 450.61,288.97" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="399.11,269.75 401.84,269.75 401.84,247.88 399.11,247.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.61,299.5 525.03,299.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="530.96,299.5 533.2,299.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="472.61,298.96 525.03,298.96" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="530.96,298.96 533.2,298.96" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="468.45,270.39 468.45,265.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="468.45,298.46 468.45,293.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,293.64 469,298.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,293.64 469,293.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,293.42 468.45,293.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,293.42 468.45,293.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,293.64 469,293.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.73,293.64 468.73,298.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,298.69 469,298.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,298.46 468.45,298.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,298.46 468.45,298.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,298.69 469,298.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,295.47 469,291.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,291.1 469.23,291.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469.23,291.1 469.23,295.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469.23,295.47 469,295.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.97,265.76 468.45,265.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="468.97,270.39 468.45,270.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469,287.26 469,282.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,282.93 469.23,282.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469.23,282.93 469.23,287.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469.23,287.26 469,287.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,270.62 468.45,277.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,277.75 469,270.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,277.75 469,277.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,277.98 468.45,277.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,277.98 468.45,277.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,277.75 469,277.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.73,277.75 468.73,274.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.73,274.07 468.73,270.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,270.39 469,270.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,270.62 468.45,270.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,270.62 468.45,270.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,270.39 469,270.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,274.07 469,274.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,274.3 468.45,274.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,274.3 468.45,274.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,274.07 469,274.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,284.98 468.45,280.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,280.16 469,284.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,280.16 469,279.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,279.94 468.45,279.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,279.94 468.45,280.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,280.16 469,280.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.73,280.16 468.73,284.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,285.21 469,284.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,284.98 468.45,284.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,284.98 468.45,285.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,285.21 469,285.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,253.17 468.45,265.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,265.53 469,253.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,265.53 469,265.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,265.76 468.45,265.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,265.76 468.45,265.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,265.53 469,265.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.73,265.53 468.73,261.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.73,261.42 468.73,257.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.73,257.19 468.73,253.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,261.42 469,261.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,261.65 468.45,261.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,261.65 468.45,261.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,261.42 469,261.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,257.42 469,257.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,257.19 468.45,257.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,257.19 468.45,257.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,257.42 469,257.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.73,293.49 529.32,293.67 528,294.22 526.86,295.09 525.99,296.22 525.45,297.54 525.26,298.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.73,298.96 530.73,293.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.73,293.49 530.53,293.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.53,293.49 530.53,298.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.53,298.96 530.73,298.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="525.26,298.96 525.26,299.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="525.26,299.5 525.03,299.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="525.03,299.5 525.03,298.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="525.03,298.96 525.26,298.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.96,299.5 530.73,299.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.73,299.5 530.73,298.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.73,298.96 530.96,298.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.96,298.96 530.96,299.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,201.08 461.39,184.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,184.69 461.93,184.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,184.69 461.93,201.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,201.89 461.93,218.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,219.31 461.93,235.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,235.7 461.39,235.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,235.7 461.39,219.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,218.51 461.39,201.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.66,184.69 461.66,187.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.66,187.98 461.66,191.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.66,191.26 461.66,194.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.66,194.54 461.66,197.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.66,197.83 461.66,200.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.66,202.09 461.66,205.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.66,205.4 461.66,208.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.66,208.68 461.66,211.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.66,211.96 461.66,215.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.66,215.25 461.66,218.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.66,218.51 461.66,218.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.66,219.52 461.66,222.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.66,222.8 461.66,225.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.66,226.08 461.66,229.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.66,229.37 461.66,232.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.66,232.63 461.66,235.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,184.46 462.99,184.32 463.98,183.91 464.83,183.26 465.49,182.41 465.9,181.42 466.03,180.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,184.69 461.39,184.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,184.69 461.39,184.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,184.46 461.93,184.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,184.46 461.93,184.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,180.36 466.03,180.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.03,180.36 466.03,180.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.03,180.57 461.93,180.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,180.57 461.93,180.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,180.13 461.93,180.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,180.13 461.93,180.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,180.36 461.39,180.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,180.36 461.39,180.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,178.74 461.93,178.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,178.52 461.39,178.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,178.52 461.39,178.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,178.74 461.93,178.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,178.74 461.39,180.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,180.13 461.93,178.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.66,178.74 461.66,180.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.03,240.03 465.9,238.97 465.49,237.98 464.83,237.13 463.98,236.48 462.99,236.07 461.93,235.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,235.7 461.39,235.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,235.7 461.39,235.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,235.93 461.93,235.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,235.93 461.93,235.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,240.03 466.03,240.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.03,240.03 466.03,239.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.03,239.83 461.93,239.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,239.83 461.93,240.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,240.26 461.93,240.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,240.26 461.93,240.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,240.03 461.39,240.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,240.03 461.39,240.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,241.63 461.39,240.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,240.26 461.93,241.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.66,241.53 461.66,240.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,218.51 459.43,218.51" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="461.93,219.31 459.43,219.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="459.43,218.51 459.43,219.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="461.93,201.89 459.43,201.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="461.93,201.08 459.43,201.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="459.43,201.89 459.43,201.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="461.93,219.31 461.93,218.51" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="461.93,201.89 461.93,201.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="461.39,187.77 461.39,187.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,187.98 461.93,187.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,187.98 461.93,187.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,187.77 461.39,187.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,191.05 461.39,191.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,191.26 461.93,191.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,191.26 461.93,191.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,191.05 461.39,191.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,194.34 461.39,194.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,194.54 461.93,194.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,194.54 461.93,194.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,194.34 461.39,194.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,197.62 461.39,197.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,197.83 461.93,197.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,197.83 461.93,197.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,197.62 461.39,197.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,200.88 461.39,201.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,201.08 461.93,201.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,201.08 461.93,200.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,200.88 461.39,200.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,205.19 461.39,205.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,205.4 461.93,205.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,205.4 461.93,205.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,205.19 461.39,205.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,208.48 461.39,208.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,208.68 461.93,208.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,208.68 461.93,208.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,208.48 461.39,208.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,211.76 461.39,211.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,211.96 461.93,211.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,211.96 461.93,211.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,211.76 461.39,211.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,215.04 461.39,215.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,215.25 461.93,215.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,215.25 461.93,215.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,215.04 461.39,215.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,218.3 461.39,218.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,218.51 461.93,218.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,218.51 461.93,218.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,218.3 461.39,218.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,201.89 461.39,202.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,202.09 461.93,202.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,202.09 461.93,201.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,201.89 461.39,201.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,219.31 461.39,219.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,219.52 461.93,219.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,219.52 461.93,219.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,219.31 461.39,219.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,222.6 461.39,222.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,222.8 461.93,222.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,222.8 461.93,222.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,222.6 461.39,222.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,225.88 461.39,226.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,226.08 461.93,226.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,226.08 461.93,225.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,225.88 461.39,225.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,229.16 461.39,229.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,229.37 461.93,229.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,229.37 461.93,229.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,229.16 461.39,229.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,232.42 461.39,232.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,232.63 461.93,232.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,232.63 461.93,232.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,232.42 461.39,232.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.55,376.89 311.35,376.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="326.78,376.66 311.35,376.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.35,377.12 326.78,377.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="456.62,304.83 454.66,304.83 454.66,306.79 456.62,306.79 456.62,304.83" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="456.07,305.38 455.21,305.38 455.21,306.24 456.07,306.24 456.07,305.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="399.11,277.98 401.98,277.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="399.11,278.78 401.98,278.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="401.98,277.98 401.98,278.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="399.11,305.99 401.98,305.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="399.11,306.79 401.98,306.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="401.98,305.99 401.98,306.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="401.13,287.85 398.4,287.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="349.83,277.98 349.6,277.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.6,277.98 349.6,278.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.6,278.52 349.83,278.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.83,278.52 349.83,277.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.83,277.98 343.83,278.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.83,278.52 344.06,278.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.06,278.52 344.06,277.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.06,277.98 343.83,277.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.3,300.07 380.88,300.26 379.56,300.8 378.43,301.67 377.56,302.8 377.02,304.12 376.83,305.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.3,305.54 382.3,300.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.3,300.07 382.09,300.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.09,300.07 382.09,305.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.09,305.54 382.3,305.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.83,305.54 376.83,306.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.83,306.08 376.6,306.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.6,306.08 376.6,305.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.6,305.54 376.83,305.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.53,306.08 382.3,306.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.3,306.08 382.3,305.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.3,305.54 382.53,305.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.53,305.54 382.53,306.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.63,253.87 530.63,255.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="532.59,253.87 532.59,255.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.63,255.83 532.59,255.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.63,253.87 532.59,253.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.63,277.79 532.59,277.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.63,279.76 532.59,279.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="532.59,277.79 532.59,279.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.63,277.79 530.63,279.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,277.79 503.82,279.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,279.76 505.78,279.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,277.79 505.78,277.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,277.79 327.8,277.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,279.76 327.8,279.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,277.79 327.8,279.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,277.79 325.84,279.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,277.79 300.99,279.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.02,279.76 300.99,279.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.02,277.79 300.99,277.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.63,304.6 532.59,304.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.63,306.57 532.59,306.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="532.59,304.6 532.59,306.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.63,304.6 530.63,306.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,304.6 503.82,306.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,306.57 505.78,306.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,304.6 505.78,304.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.43,304.6 363.4,304.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.43,306.57 363.4,306.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.4,304.6 363.4,306.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.43,304.6 361.43,306.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,304.6 327.8,304.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,306.57 327.8,306.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,304.6 327.8,306.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,304.6 325.84,306.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.63,331.42 532.59,331.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.63,333.38 532.59,333.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="532.59,331.42 532.59,333.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.63,331.42 530.63,333.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.03,331.42 397.03,333.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.99,331.42 398.99,333.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.03,333.38 398.99,333.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.03,331.42 398.99,331.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.63,358.23 533.06,358.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.63,360.19 533.06,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.63,358.23 530.63,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,358.23 503.82,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.78,358.23 505.78,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,360.19 505.78,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,358.23 505.78,358.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.03,358.23 397.03,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.99,358.23 398.99,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.03,360.19 398.99,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.03,358.23 398.99,358.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.6,385.04 532.59,385.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="532.59,385.04 532.59,387.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.38,165.22 363.46,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.31,163.26 363.77,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.46,164.41 363.77,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.43,163.26 361.06,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.43,163.26 361.06,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.43,163.26 361.06,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.52,163.26 361.06,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.52,163.72 363.31,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.08,251.67 507.51,251.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.88,251.12 514.88,251.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.9,251.12 513.9,251.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.9,251.12 514.88,251.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.8,251.81 514.8,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.99,251.81 513.99,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.86,251.29 507.86,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.51,251.29 507.51,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.51,252.51 507.86,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="520.92,251.29 520.92,252.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="521.27,251.29 521.27,252.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="527.39,253.26 528.2,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="527.39,251.81 527.39,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.2,251.81 528.2,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="527.31,251.12 527.31,251.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.29,251.12 528.29,251.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,258.17 534.65,258.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,259.16 534.65,259.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,259.16 535.34,258.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,258.26 533.2,258.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,259.07 533.2,259.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.2,253.26 533.2,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,258.26 533.2,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.11,265.19 533.95,265.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.11,265.54 533.95,265.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,272.48 533.2,272.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,271.67 533.2,271.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,272.56 535.34,271.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,272.56 534.65,272.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,271.58 534.65,271.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,278.95 533.95,278.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,278.6 533.95,278.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,284.99 534.65,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,285.97 534.65,285.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,285.97 535.34,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,285.07 533.2,285.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,285.88 533.2,285.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,292.01 533.95,292.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,292.35 533.95,292.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.99,252.51 513.99,251.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.99,253.26 514.8,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.89,253.26 513.99,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.86,252.51 507.86,251.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.09,252.25 513.76,252.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.09,252.07 513.76,252.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.76,252.51 513.99,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.99,252.51 513.99,251.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.99,251.81 513.76,251.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.76,251.81 513.76,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="507.86,252.51 508.09,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.09,252.51 508.09,251.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.09,251.81 507.86,251.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="507.86,251.81 507.86,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="520.92,252.5 521.27,252.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="520.92,252.51 521.27,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="520.92,251.81 520.92,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.8,251.81 514.8,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="515.03,252.25 520.69,252.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="515.03,252.07 520.69,252.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="520.69,252.51 520.92,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="520.92,252.51 520.92,251.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="520.92,251.81 520.69,251.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="520.69,251.81 520.69,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.8,252.51 515.03,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="515.03,252.51 515.03,251.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="515.03,251.81 514.8,251.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.8,251.81 514.8,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.39,252.51 527.39,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="527.31,251.12 528.29,251.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="521.27,252.51 521.27,251.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="521.5,252.25 527.16,252.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="521.5,252.07 527.16,252.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.16,252.51 527.39,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.39,252.51 527.39,251.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.39,251.81 527.16,251.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.16,251.81 527.16,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="521.27,252.51 521.5,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="521.5,252.51 521.5,251.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="521.5,251.81 521.27,251.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="521.27,251.81 521.27,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="528.2,252.51 528.43,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="528.43,252.51 528.43,251.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="528.43,251.81 528.2,251.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="528.2,251.81 528.2,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.31,251.81 527.39,251.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.2,251.81 528.29,251.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,258.26 533.95,258.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,258.26 534.65,258.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,258.03 533.95,258.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,258.03 533.95,258.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,258.26 534.65,258.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,265.19 533.95,265.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,265.19 533.95,265.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,265.19 534.65,265.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,259.07 534.65,259.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,259.07 533.2,258.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,265.19 534.65,265.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.38,264.96 534.38,259.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,264.96 534.21,259.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,259.3 534.65,259.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,259.07 533.95,259.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,259.07 533.95,259.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,259.3 534.65,259.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,265.19 534.65,264.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,264.96 533.95,264.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,264.96 533.95,265.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,265.19 534.65,265.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,265.54 534.65,265.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,265.54 533.95,265.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,271.67 534.65,271.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.38,271.44 534.38,265.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,271.44 534.21,265.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,265.77 534.65,265.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,265.54 533.95,265.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,265.54 533.95,265.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,265.77 534.65,265.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,271.67 534.65,271.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,271.44 533.95,271.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,271.44 533.95,271.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,271.67 534.65,271.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,278.6 533.95,278.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,278.6 534.65,278.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,272.48 533.2,271.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,272.48 534.65,272.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,278.6 534.65,278.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.38,278.37 534.38,272.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,278.37 534.21,272.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,272.71 534.65,272.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,272.48 533.95,272.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,272.48 533.95,272.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,272.71 534.65,272.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,278.6 534.65,278.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,278.37 533.95,278.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,278.37 533.95,278.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,278.6 534.65,278.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,278.95 534.65,278.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,285.07 534.65,285.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.38,284.84 534.38,279.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,284.84 534.21,279.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,279.18 534.65,278.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,278.95 533.95,278.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,278.95 533.95,279.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,279.18 534.65,279.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,285.07 534.65,284.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,284.84 533.95,284.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,284.84 533.95,285.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,285.07 534.65,285.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,292.01 533.95,292.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,292.01 534.65,292.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,285.88 534.65,285.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,285.88 533.2,285.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,292.01 534.65,292.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.38,291.78 534.38,286.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,291.78 534.21,286.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,286.11 534.65,285.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,285.88 533.95,285.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,285.88 533.95,286.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,286.11 534.65,286.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,292.01 534.65,291.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,291.78 533.95,291.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,291.78 533.95,292.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,292.01 534.65,292.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,292.35 534.65,292.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,292.35 533.95,292.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,298.48 534.65,298.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.38,298.25 534.38,292.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,298.25 534.21,292.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,292.58 534.65,292.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,292.35 533.95,292.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,292.35 533.95,292.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,292.58 534.65,292.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,298.48 534.65,298.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,298.25 533.95,298.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,298.25 533.95,298.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,298.48 534.65,298.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.79,332.58 534.79,333.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,329.32 533.2,332.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,351.6 549.81,351.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,352.52 550.74,352.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="549.81,319.4 549.81,351.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="550.74,278.8 550.74,352.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,378.92 534.65,378.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,378.69 533.95,378.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,378.69 533.95,378.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,378.92 534.65,378.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,373.02 534.65,372.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,372.79 533.95,372.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,372.79 533.95,373.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,373.02 534.65,373.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.39,378.69 534.39,373.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,378.69 534.21,373.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,378.92 534.65,378.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.1,372.79 534.1,372.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.1,372.79 534.79,372.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,372.44 534.65,372.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,372.21 533.95,372.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,372.21 533.95,372.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,372.44 534.65,372.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,366.55 534.65,366.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,366.32 533.95,366.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,366.32 533.95,366.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,366.55 534.65,366.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.39,372.21 534.39,366.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,372.21 534.21,366.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.1,372.44 534.79,372.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,366.32 534.65,366.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.79,372.44 534.79,372.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,372.44 533.95,372.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,365.51 534.65,365.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,365.28 533.95,365.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,365.28 533.95,365.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,365.51 534.65,365.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,359.62 534.65,359.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,359.38 533.95,359.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,359.38 533.95,359.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,359.62 534.65,359.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.39,365.28 534.39,359.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,365.28 534.21,359.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,365.51 534.65,365.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.1,359.38 534.79,359.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.1,359.04 534.79,359.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.79,359.04 534.79,359.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.1,359.04 534.1,359.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,372.79 533.95,372.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,372.44 533.95,372.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,366.32 533.43,366.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,365.51 533.43,365.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,366.41 535.34,365.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,366.41 534.65,366.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,365.42 534.65,365.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,359.04 533.95,359.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,359.38 533.95,359.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,359.38 533.95,359.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.06,358.23 533.06,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,359.04 533.95,358.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,359.04 534.65,358.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,378.83 534.65,378.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,379.81 534.65,379.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,379.81 535.34,378.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,378.92 533.43,378.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,379.73 533.43,379.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,385.85 533.95,385.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,386.2 533.95,386.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,378.92 534.65,378.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,385.85 533.95,386.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,385.85 534.65,385.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,379.73 534.65,379.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,385.85 534.65,385.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.39,385.62 534.39,379.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,385.62 534.21,379.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,379.96 534.65,379.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,379.73 533.95,379.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,379.73 533.95,379.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,379.96 534.65,379.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,385.85 534.65,385.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,385.62 533.95,385.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,385.62 533.95,385.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,385.85 534.65,385.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,386.2 534.65,386.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,386.2 533.95,385.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,392.32 534.65,392.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.39,392.09 534.39,386.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,392.09 534.21,386.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,386.43 534.65,386.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,386.2 533.95,386.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,386.2 533.95,386.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,386.43 534.65,386.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,392.32 534.65,392.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,392.09 533.95,392.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,392.09 533.95,392.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,392.32 534.65,392.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,405.73 534.65,405.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,405.5 533.95,405.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,405.5 533.95,405.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,405.73 534.65,405.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,399.83 534.65,399.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,399.6 533.95,399.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,399.6 533.95,399.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,399.83 534.65,399.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.39,405.5 534.39,399.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,405.5 534.21,399.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,405.73 534.65,405.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,399.6 533.95,399.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,399.6 534.65,399.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,399.26 534.65,399.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,399.03 533.95,399.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,399.03 533.95,399.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,399.26 534.65,399.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,393.36 534.65,393.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,393.13 533.95,393.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,393.13 533.95,393.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,393.36 534.65,393.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.39,399.03 534.39,393.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,399.03 534.21,393.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,399.26 534.65,399.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,393.13 534.65,393.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,399.26 534.65,399.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,399.26 533.95,399.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,392.32 534.65,392.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.23,399.6 533.95,399.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.23,399.26 533.95,399.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,393.13 533.43,393.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,392.32 533.43,392.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,393.22 535.34,392.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,393.22 534.65,393.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,392.24 534.65,392.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,392.32 534.65,392.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,405.73 534.65,405.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,405.64 534.65,405.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,406.62 534.65,406.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,406.62 535.34,405.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,405.73 533.43,405.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,406.54 533.43,406.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,412.66 533.95,412.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,413.01 533.95,413.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,405.73 534.65,405.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,412.66 533.95,413.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,412.66 534.65,412.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,406.54 534.65,406.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,412.66 534.65,412.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.39,412.43 534.39,406.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,412.43 534.21,406.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,406.77 534.65,406.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,406.54 533.95,406.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,406.54 533.95,406.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,406.77 534.65,406.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,412.66 534.65,412.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,412.43 533.95,412.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,412.43 533.95,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,412.66 534.65,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,413.01 534.65,413.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,405.73 534.65,405.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,413.01 533.95,413.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,413.01 533.95,412.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,413.01 533.95,413.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.2,439.79 528.29,439.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="527.31,439.79 527.39,439.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.2,439.1 528.43,439.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="528.43,439.1 528.43,439.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="528.43,439.79 528.2,439.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="528.2,439.79 528.2,439.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,439.79 534.33,439.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="521.27,439.1 521.5,439.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="521.5,439.1 521.5,439.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="521.5,439.79 521.27,439.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="521.27,439.79 521.27,439.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.16,439.1 527.39,439.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.39,439.1 527.39,439.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.39,439.79 527.16,439.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.16,439.79 527.16,439.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="521.5,439.36 527.16,439.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="521.5,439.54 527.16,439.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="521.27,439.1 521.27,439.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="527.31,440.49 528.29,440.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="527.39,439.1 527.39,439.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.8,439.1 515.03,439.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="515.03,439.1 515.03,439.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="515.03,439.79 514.8,439.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.8,439.79 514.8,439.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="520.69,439.1 520.92,439.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="520.92,439.1 520.92,439.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="520.92,439.79 520.69,439.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="520.69,439.79 520.69,439.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="515.03,439.36 520.69,439.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="515.03,439.54 520.69,439.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.8,439.79 514.8,439.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="520.92,439.79 520.92,439.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="520.92,439.1 521.27,439.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="520.92,439.11 521.27,439.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.86,439.1 508.09,439.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.09,439.1 508.09,439.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.09,439.79 507.86,439.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="507.86,439.79 507.86,439.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.76,439.1 513.99,439.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.99,439.1 513.99,439.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.99,439.79 513.76,439.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="513.76,439.79 513.76,439.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.09,439.36 513.76,439.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.09,439.54 513.76,439.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="507.86,439.1 507.86,439.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.99,439.1 513.99,439.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.51,439.1 507.51,438.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,439.48 534.65,439.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,439.48 534.65,439.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,439.82 534.67,439.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.33,440.31 534.33,439.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.67,440.31 534.67,439.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.29,440.49 528.29,439.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="527.31,440.49 527.31,439.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.2,439.79 528.2,438.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="527.39,439.79 527.39,438.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="521.27,440.31 521.27,439.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="520.92,440.31 520.92,439.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.51,439.1 507.86,439.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.51,440.26 507.51,439.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.86,440.26 507.86,439.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.99,439.79 513.99,438.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.8,439.79 514.8,438.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.9,440.49 514.88,440.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.9,440.49 513.9,439.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.88,440.49 514.88,439.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.16,439.79 507.51,439.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.67,265.54 296.97,265.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.97,265.19 296.97,264.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.97,264.96 297.67,264.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.67,264.96 297.67,265.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.67,265.19 296.97,265.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.97,259.3 296.97,259.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.97,259.07 297.67,259.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.67,259.07 297.67,259.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.67,259.3 296.97,259.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.23,264.96 297.23,259.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.41,264.96 297.41,259.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.67,265.19 296.97,265.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.42,259.07 298.42,258.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.67,259.07 296.97,259.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.97,265.19 296.97,265.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.67,265.19 297.67,265.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.67,265.19 297.67,265.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.97,258.26 296.97,258.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.97,258.03 297.67,258.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.67,258.03 297.67,258.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.67,258.26 296.97,258.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.97,252.74 296.97,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.97,252.51 297.67,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.67,252.51 297.67,252.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.67,252.74 296.97,252.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.97,258.26 297.67,258.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.42,251.82 303.33,251.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.31,251.82 304.23,251.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.42,252.51 303.19,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.19,252.51 303.19,251.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.19,251.82 303.42,251.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.42,251.82 303.42,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.9,252.51 297.67,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.67,252.51 297.67,251.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.67,251.82 297.9,251.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.9,251.82 297.9,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.35,252.51 310.12,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.12,252.51 310.12,251.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.12,251.82 310.35,251.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.35,251.82 310.35,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.46,252.51 304.23,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.23,252.51 304.23,251.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.23,251.82 304.46,251.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.46,251.82 304.46,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.12,252.25 304.46,252.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.12,252.08 304.46,252.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.35,252.51 310.35,251.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.31,251.12 303.33,251.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.23,252.51 304.23,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="316.82,252.51 316.59,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.59,252.51 316.59,251.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.59,251.82 316.82,251.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.82,251.82 316.82,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.93,252.51 310.7,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.7,252.51 310.7,251.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.7,251.82 310.93,251.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.93,251.82 310.93,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.59,252.25 310.93,252.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.59,252.08 310.93,252.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.82,251.82 316.82,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.7,251.82 310.7,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.7,252.51 310.35,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.7,252.5 310.35,252.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.76,252.51 323.76,251.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.72,253.26 316.82,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.42,259.07 298.42,304.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.45,265.54 297.67,265.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.45,265.19 297.67,265.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.42,258.26 298.42,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.42,253.26 298.42,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.97,259.07 298.42,259.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.97,258.26 298.42,258.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.28,259.16 296.28,258.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.28,259.16 296.97,259.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.28,258.17 296.97,258.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.33,251.12 303.33,251.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.31,251.12 304.31,251.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.42,251.82 303.42,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.23,251.82 304.23,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.23,253.26 303.42,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.35,251.3 310.35,252.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.7,251.3 310.7,252.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.1,252.51 323.76,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.1,251.35 324.1,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.76,251.35 323.76,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.72,251.82 317.72,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="316.82,251.82 316.82,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.72,251.12 316.74,251.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.72,251.12 317.72,251.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="316.74,251.12 316.74,251.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,277.79 300.99,279.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,279.76 298.59,279.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,277.79 298.59,277.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.06,163.26 361.06,164.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.31,163.26 363.31,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.52,163.26 361.52,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.38,164.41 361.38,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.46,164.41 363.46,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.86,164.41 327.86,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.72,163.26 327.72,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.18,163.26 328.18,164.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,163.72 327.72,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.86,164.41 328.18,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.72,163.26 328.18,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.51,164.41 336.51,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.05,164.41 336.05,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.39,164.41 344.39,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.85,164.41 344.85,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.18,164.41 353.18,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.72,164.41 352.72,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.05,164.41 336.51,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.05,164.41 336.51,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.05,163.72 336.05,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.41,164.18 335.82,164.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.41,163.95 335.82,163.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.82,164.41 336.05,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.05,164.41 336.05,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.05,163.72 335.82,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.82,163.72 335.82,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.18,164.41 328.41,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.41,164.41 328.41,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.41,163.72 328.18,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.18,163.72 328.18,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.39,163.72 344.39,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.39,164.41 344.85,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.39,164.41 344.85,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.51,163.72 336.51,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.74,164.18 344.16,164.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.74,163.95 344.16,163.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.16,164.41 344.39,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.39,164.41 344.39,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.39,163.72 344.16,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.16,163.72 344.16,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.51,164.41 336.74,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.74,164.41 336.74,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.74,163.72 336.51,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.51,163.72 336.51,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.72,163.72 352.72,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.72,164.41 353.18,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.72,164.41 353.18,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.85,163.72 344.85,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.08,164.18 352.49,164.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.08,163.95 352.49,163.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.49,164.41 352.72,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.72,164.41 352.72,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.72,163.72 352.49,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.49,163.72 352.49,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.85,164.41 345.08,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.08,164.41 345.08,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.08,163.72 344.85,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.85,163.72 344.85,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.06,164.41 361.38,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.18,163.72 353.18,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.42,164.18 360.83,164.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.42,163.95 360.83,163.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.83,164.41 361.06,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.06,164.41 361.06,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.06,163.72 360.83,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.83,163.72 360.83,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.18,164.41 353.42,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.42,164.41 353.42,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.42,163.72 353.18,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.18,163.72 353.18,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="364,164.18 371.42,164.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="364,163.95 371.42,163.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.77,164.41 364,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="364,164.41 364,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="364,163.72 363.77,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.77,163.72 363.77,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.65,164.41 388.78,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.65,163.72 388.78,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.78,163.72 388.78,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.65,164.41 396.97,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.65,163.72 396.65,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.32,164.41 380.44,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.32,163.72 380.44,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.44,163.72 380.44,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.32,164.41 388.78,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.32,164.41 388.78,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.32,163.72 388.32,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.98,163.72 378.06,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.11,163.72 372.11,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.98,164.41 380.44,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.98,164.41 380.44,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.98,163.72 379.98,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="371.42,164.41 371.65,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.65,164.41 371.65,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.65,163.72 371.42,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.42,163.72 371.42,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.65,163.72 371.65,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="371.65,164.41 372.11,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="371.65,164.41 372.11,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.32,164.41 388.32,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.78,164.41 388.78,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.44,164.41 380.44,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.98,164.41 379.98,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="371.65,164.41 371.65,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.11,164.41 372.11,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.12,163.26 397.12,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.91,163.26 398.91,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.12,163.72 398.91,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.12,163.26 396.65,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.97,164.41 396.65,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.03,163.26 396.65,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.03,163.26 396.65,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.03,163.26 396.65,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.05,164.41 399.37,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.91,163.26 399.37,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.05,164.41 399.05,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.97,164.41 396.97,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.97,165.22 399.05,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.5,163.26 434.97,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.65,164.41 434.97,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.62,163.26 432.25,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.62,163.26 432.25,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.62,163.26 432.25,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.71,163.26 432.25,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.71,163.72 434.5,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.5,163.26 434.5,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.71,163.26 432.71,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.7,164.41 407.7,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.24,164.41 407.24,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.58,164.41 415.58,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.04,164.41 416.04,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.38,164.41 424.38,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="423.91,164.41 423.91,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.24,164.41 407.7,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.24,164.41 407.7,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.24,163.72 407.24,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.01,164.41 407.24,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.24,164.41 407.24,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.24,163.72 407.01,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.01,163.72 407.01,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.58,163.72 415.58,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.58,164.41 416.04,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.58,164.41 416.04,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.7,163.72 407.7,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.94,164.18 415.35,164.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.94,163.95 415.35,163.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.35,164.41 415.58,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.58,164.41 415.58,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.58,163.72 415.35,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.35,163.72 415.35,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.7,164.41 407.94,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.94,164.41 407.94,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.94,163.72 407.7,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.7,163.72 407.7,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.91,163.72 423.91,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="423.91,164.41 424.38,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="423.91,164.41 424.38,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.04,163.72 416.04,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.27,164.18 423.68,164.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.27,163.95 423.68,163.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.68,164.41 423.91,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.91,164.41 423.91,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.91,163.72 423.68,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.68,163.72 423.68,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.04,164.41 416.27,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.27,164.41 416.27,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.27,163.72 416.04,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.04,163.72 416.04,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.25,163.72 432.25,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.25,164.41 432.57,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.38,163.72 424.38,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.61,164.18 432.02,164.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.61,163.95 432.02,163.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.02,164.41 432.25,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.25,164.41 432.25,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.25,163.72 432.02,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.02,163.72 432.02,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.38,164.41 424.61,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.61,164.41 424.61,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.61,163.72 424.38,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.38,163.72 424.38,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.57,165.22 434.65,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.57,164.41 432.57,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.65,164.41 434.65,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.6,164.18 407.01,164.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.6,163.95 407.01,163.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.37,164.41 399.6,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.6,164.41 399.6,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.6,163.72 399.37,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.37,163.72 399.37,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.24,164.41 470.24,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.16,164.41 468.16,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.97,164.41 460.2,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.2,164.41 460.2,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.2,163.72 459.97,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.97,163.72 459.97,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.61,164.41 467.85,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.85,164.41 467.85,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.85,163.72 467.61,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.61,163.72 467.61,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.2,164.18 467.61,164.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.2,163.95 467.61,163.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.97,163.72 459.97,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="467.85,164.41 468.16,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="467.85,163.72 467.85,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.64,164.41 451.87,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.87,164.41 451.87,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.87,163.72 451.64,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.64,163.72 451.64,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.28,164.41 459.51,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.51,164.41 459.51,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.51,163.72 459.28,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.28,163.72 459.28,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.87,164.18 459.28,164.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.87,163.95 459.28,163.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.64,163.72 451.64,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.51,164.41 459.97,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.51,164.41 459.97,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.51,163.72 459.51,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="443.3,164.41 443.53,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.53,164.41 443.53,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.53,163.72 443.3,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.3,163.72 443.3,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="450.94,164.41 451.17,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.17,164.41 451.17,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.17,163.72 450.94,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="450.94,163.72 450.94,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.53,164.18 450.94,164.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.53,163.95 450.94,163.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.3,163.72 443.3,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.17,164.41 451.64,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.17,164.41 451.64,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.17,163.72 451.17,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="442.61,164.41 442.84,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.84,164.41 442.84,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.84,163.72 442.61,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.61,163.72 442.61,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.84,163.72 442.84,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="442.84,164.41 443.3,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="442.84,164.41 443.3,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.51,164.41 459.51,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.97,164.41 459.97,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.64,164.41 451.64,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.17,164.41 451.17,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="442.84,164.41 442.84,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="443.3,164.41 443.3,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.31,163.26 468.31,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.1,163.26 470.1,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.56,163.26 470.56,164.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="467.85,163.26 467.85,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.31,163.72 470.1,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.16,164.41 467.85,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.31,163.26 467.85,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.24,164.41 470.56,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.1,163.26 470.56,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.97,164.41 435.2,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="435.2,164.41 435.2,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="435.2,163.72 434.97,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.97,163.72 434.97,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="435.2,164.18 442.61,164.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="435.2,163.95 442.61,163.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.79,164.18 478.2,164.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.79,163.95 478.2,163.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.56,164.41 470.79,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.79,164.41 470.79,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.79,163.72 470.56,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.56,163.72 470.56,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.43,163.46 478.43,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.77,163.46 486.77,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.23,163.46 487.23,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="495.57,163.46 495.57,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="495.11,163.46 495.11,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.43,163.72 478.43,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.2,164.41 478.43,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.43,164.41 478.43,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.43,163.72 478.2,163.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.2,163.72 478.2,164.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.9,441.73 503.9,441.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.69,441.73 505.69,441.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.16,441.73 506.16,439.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.76,440.57 503.76,438.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="495.57,441.27 495.57,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.44,440.57 503.76,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.44,441.27 503.44,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.23,440.57 487.46,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="487.46,440.57 487.46,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="487.46,441.27 487.23,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="487.23,441.27 487.23,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.87,440.57 495.11,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.11,440.57 495.11,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.11,441.27 494.87,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.87,441.27 494.87,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="487.46,440.81 494.87,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="487.46,441.04 494.87,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="487.23,441.27 487.23,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="495.11,440.57 495.57,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="495.11,440.57 495.57,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="495.11,441.27 495.11,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.9,440.57 479.13,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.13,440.57 479.13,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.13,441.27 478.9,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.9,441.27 478.9,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.54,440.57 486.77,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.77,440.57 486.77,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.77,441.27 486.54,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.54,441.27 486.54,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.13,440.81 486.54,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.13,441.04 486.54,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.9,441.27 478.9,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.77,440.57 487.23,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.77,440.57 487.23,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.77,441.27 486.77,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.43,441.27 478.43,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.43,440.57 478.9,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.43,440.57 478.9,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="495.11,440.57 495.11,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="495.57,440.57 495.57,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.23,440.57 487.23,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.77,440.57 486.77,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.43,440.57 478.43,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.9,440.57 478.9,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.44,441.73 503.44,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.76,440.57 503.44,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.24,440.57 470.56,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.16,440.57 467.85,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="467.85,441.73 467.85,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.56,441.73 470.56,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.1,441.73 470.1,441.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.31,441.73 468.31,441.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="443.3,440.57 443.3,441.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="442.84,440.57 442.84,441.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.17,440.57 451.17,441.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.64,440.57 451.64,441.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.97,440.57 459.97,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.51,440.57 459.51,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="442.84,440.57 443.3,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="442.84,440.57 443.3,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="442.84,441.27 442.84,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.17,441.27 451.17,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.17,440.57 451.64,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.17,440.57 451.64,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="443.3,441.27 443.3,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="443.53,440.81 450.94,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.53,441.04 450.94,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="450.94,440.57 451.17,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.17,440.57 451.17,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.17,441.27 450.94,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="450.94,441.27 450.94,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.3,440.57 443.53,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.53,440.57 443.53,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.53,441.27 443.3,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.3,441.27 443.3,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.51,441.27 459.51,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.51,440.57 459.97,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.51,440.57 459.97,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.64,441.27 451.64,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.87,440.81 459.28,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.87,441.04 459.28,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.28,440.57 459.51,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.51,440.57 459.51,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.51,441.27 459.28,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.28,441.27 459.28,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.64,440.57 451.87,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.87,440.57 451.87,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.87,441.27 451.64,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.64,441.27 451.64,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.85,441.27 467.85,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="467.85,440.57 468.16,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.97,441.27 459.97,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.16,440.57 468.16,438.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.24,440.57 470.24,438.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.65,440.57 434.65,438.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.57,440.57 432.57,438.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.38,441.27 424.38,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.25,440.57 432.57,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.25,441.27 432.25,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.04,440.57 416.27,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.27,440.57 416.27,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.27,441.27 416.04,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.04,441.27 416.04,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.68,440.57 423.91,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.91,440.57 423.91,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.91,441.27 423.68,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="423.68,441.27 423.68,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.27,440.81 423.68,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.27,441.04 423.68,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.04,441.27 416.04,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="423.91,440.57 424.38,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="423.91,440.57 424.38,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="423.91,441.27 423.91,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.7,440.57 407.94,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.94,440.57 407.94,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.94,441.27 407.7,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.7,441.27 407.7,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.35,440.57 415.58,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.58,440.57 415.58,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.58,441.27 415.35,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.35,441.27 415.35,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.94,440.81 415.35,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.94,441.04 415.35,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.7,441.27 407.7,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.58,440.57 416.04,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.58,440.57 416.04,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.58,441.27 415.58,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.24,441.27 407.24,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.24,440.57 407.7,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.24,440.57 407.7,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="423.91,440.57 423.91,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.38,440.57 424.38,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.04,440.57 416.04,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.58,440.57 415.58,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.24,440.57 407.24,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.7,440.57 407.7,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.71,441.73 432.71,441.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.5,441.73 434.5,441.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.97,441.73 434.97,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.25,441.73 432.25,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.57,440.57 432.25,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.65,440.57 434.97,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.79,440.57 396.79,438.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.05,440.57 399.05,438.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.05,440.57 399.37,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.65,441.73 396.65,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.37,441.73 399.37,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.91,441.73 398.91,441.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.12,441.73 397.12,441.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.11,442.55 372.11,442.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="371.65,442.55 371.65,442.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.98,441.85 379.98,442.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.44,441.44 380.44,442.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.78,440.57 388.78,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.32,440.57 388.32,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.98,441.85 379.98,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.98,440.57 380.44,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.98,440.57 380.44,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.98,442.55 372.11,442.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.98,441.85 371.88,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.32,441.27 388.32,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.32,440.57 388.78,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.32,440.57 388.78,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.44,441.44 380.44,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.68,440.81 388.09,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.68,441.04 388.09,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.09,440.57 388.32,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.32,440.57 388.32,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.32,441.27 388.09,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.09,441.27 388.09,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.44,440.57 380.68,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.68,440.57 380.68,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.68,441.27 380.44,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.44,441.27 380.44,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.65,441.27 396.65,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.65,440.57 396.79,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.78,441.27 388.78,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="371.65,442.55 363.77,442.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="371.88,441.85 363.77,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.06,441.85 359.22,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.06,442.55 359.22,442.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.18,442.55 353.18,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.06,441.85 361.38,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.06,442.55 361.06,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.72,441.85 353.18,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.72,441.85 353.18,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.72,442.55 352.72,440.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.72,440.17 352.72,443.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.18,441.85 353.18,443.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.46,441.85 363.46,438.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.38,441.67 361.38,438.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.52,442.84 361.52,442.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.31,442.84 363.31,442.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.77,442.84 363.77,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.06,442.84 361.06,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.38,441.85 361.06,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.46,441.85 363.77,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.97,265.54 297.67,265.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.67,265.54 297.67,265.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.67,265.77 297.67,265.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.67,265.54 296.97,265.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.97,265.54 296.97,265.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.97,265.77 297.67,265.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.67,271.58 297.67,271.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.67,271.35 296.97,271.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.97,271.35 296.97,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.97,271.58 297.67,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.1,251.35 323.76,251.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.11,265.19 535.11,265.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.87,358.23 500.87,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.02,358.23 496.02,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,360.19 500.87,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.22,358.23 500.87,358.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.22,358.23 504.22,348.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.78,358.23 505.78,345.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.2,358.23 505.2,340.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.02,360.19 489.69,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.02,358.23 492.66,358.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="495.32,358.92 492.66,358.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="495.32,359.5 492.66,359.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,358.92 501.56,358.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,359.5 501.56,359.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="495.32,358.92 495.32,359.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.56,358.92 501.56,359.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.66,359.5 492.66,358.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="491.74,359.5 491.74,350.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.66,358.23 492.66,348.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.22,348.98 492.66,348.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.22,348.06 492.66,348.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.66,348.06 492.66,338.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.22,348.06 504.22,340.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.67,338.81 492.66,338.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.78,337.89 491.74,337.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.93,338.81 505.67,338.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="532.59,333.38 533.2,333.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="532.59,332.58 533.2,332.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.63,360.19 511.62,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.78,358.4 506.56,358.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.78,358.86 506.1,358.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.63,359.38 512.08,359.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.78,345.81 506.59,345.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.78,344.88 506.59,344.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.56,360.19 506.56,358.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,359.38 506.1,358.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.08,358.86 530.63,358.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.62,360.19 511.62,358.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.08,359.38 512.08,358.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,359.38 505.78,359.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.62,358.4 530.63,358.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.6,359.44 533.95,359.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.6,359.44 533.95,359.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="517.8,358.23 528.09,358.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="517.94,357.94 528.09,357.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="512.54,351.12 528.38,351.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="512.83,351.41 528.09,351.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="520.39,352.8 528.09,352.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="520.25,353.09 528.38,353.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="528.38,351.12 528.38,353.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="528.09,351.41 528.09,352.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="512.55,345.98 512.55,346.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="528.09,346.27 528.09,345.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="528.09,357.94 528.09,358.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="518.22,357.94 518.22,357.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="519.37,357.94 519.37,355.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="520.53,357.94 520.53,353.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="521.68,357.94 521.68,353.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="522.84,357.94 522.84,353.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.99,357.94 523.99,353.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="525.15,357.94 525.15,353.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="526.31,357.94 526.31,353.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="526.31,351.12 526.31,346.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="527.46,357.94 527.46,353.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="517.72,358.4 518.6,356.56 517.86,355.61 520.27,355.56 519.53,354.61 520.48,352.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="512.55,345.98 528.09,345.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="512.55,346.27 528.09,346.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="521.18,354.77 520.66,355.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="520.66,355.83 521.18,356.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="521.45,354.77 520.92,355.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="520.92,355.83 521.45,356.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="521.45,354.77 521.18,354.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="521.45,356.88 521.18,356.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M521.45 354.77L520.92 355.83 520.66 355.83 521.18 354.77 521.45 354.77Z" fill-rule="evenodd" fill="blue"/>
+<path d="M521.45 356.88L520.92 355.83 520.66 355.83 521.18 356.88 521.45 356.88Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="526.26,355.83 520.64,355.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="511.82,348.9 528.62,348.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="528.62,348.9 528.62,355.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="533.6,360.19 533.6,359.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.06,360.19 533.6,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.06,358.98 533.95,358.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.43,385.79 533.95,385.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.43,385.04 532.59,385.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="532.59,386.26 533.95,386.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.64,374.52 510.62,374.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.35,374.24 510.62,374.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.64,370.42 512.2,370.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.35,370.71 512.95,370.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.57,363.49 512.2,363.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.86,363.2 512.95,363.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.57,363.49 530.57,372.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.86,363.2 530.86,372.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.64,370.42 523.64,370.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.35,370.71 523.35,370.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.64,370.42 523.64,363.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="522.37,370.42 522.37,363.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="521.09,370.42 521.09,363.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="519.82,370.42 519.82,363.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="518.55,370.42 518.55,363.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="517.28,374.52 517.28,381.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="510.62,374.24 510.62,374.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="533.43,379.15 530.86,379.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="533.43,379.49 530.86,379.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="533.43,366.09 530.86,366.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="533.43,365.74 530.86,365.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="526.98,378.08 509.6,378.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.51,256.67 301.51,267.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.22,256.38 301.22,267.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,263.61 308.44,271.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.73,263.89 308.73,271.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.51,256.67 316.48,256.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.22,256.38 316.19,256.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,263.61 316.48,263.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.73,263.89 316.19,263.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,263.61 301.51,263.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,264.88 301.51,264.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,266.15 301.51,266.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,267.42 301.51,267.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,268.69 303.63,268.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,269.96 306.24,269.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.45,271.23 301.51,271.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308,272.5 301.51,272.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,273.78 301.51,273.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,275.05 301.51,275.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,276.32 301.51,276.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,277.59 301.51,277.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,278.86 301.51,278.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,280.13 301.51,280.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,281.4 301.51,281.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.22,284.47 301.51,284.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,284.47 308.73,284.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,263.61 308.44,256.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.71,263.61 309.71,256.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.99,263.61 310.99,256.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.26,263.61 312.26,256.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="313.53,263.61 313.53,256.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.92,266.63 304.98,267.16" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.98,267.16 306.04,266.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.92,266.37 304.98,266.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.98,266.89 306.04,266.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.92,266.37 303.92,266.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.04,266.37 306.04,266.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M303.92 266.37L303.92 266.63 304.98 267.16 304.98 266.89 303.92 266.37Z" fill-rule="evenodd" fill="blue"/>
+<path d="M306.04 266.37L306.04 266.63 304.98 267.16 304.98 266.89 306.04 266.37Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="304.98,260.04 304.98,267.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="361.43,169.68 361.43,171.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.43,171.64 363.4,171.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.43,169.68 363.4,169.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.22,242.43 468.22,250.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.19,250.98 470.19,252.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.22,252.94 470.19,252.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.22,250.98 470.19,250.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.03,250.98 397.03,252.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.99,250.98 398.99,252.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.03,252.94 398.99,252.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.03,250.98 398.99,250.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.43,250.98 363.4,250.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.43,252.94 363.4,252.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.4,250.98 363.4,252.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.43,250.98 361.43,252.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.24,165.22 468.16,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.38,165.22 326.62,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.77,163.26 363.77,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.65,163.26 396.65,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.37,163.26 399.37,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.25,163.26 432.25,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.97,163.26 434.97,164.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.16,165.22 434.65,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.57,165.22 399.05,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.97,165.22 378.06,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.37,250.86 505.81,250.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.37,253.26 507.89,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,242.08 507.25,242.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,241.62 507.25,241.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,249.94 507.25,249.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,250.4 507.25,250.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.25,250.4 507.25,249.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,250.4 506.1,249.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,225.26 505.81,225.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,223.3 505.81,223.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.81,225.44 505.81,225.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.81,223.3 505.81,223.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.91,223.59 506.91,224.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.81,249.94 506.73,249.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.81,250.86 505.81,249.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.89,253.26 507.89,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.08,250.4 507.08,251.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.81,249.94 505.81,225.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,250.4 506.1,249.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.08,242.08 507.08,249.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,233.3 507.25,233.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,233.76 507.25,233.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.08,233.76 507.08,241.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.91,223.59 507.25,223.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.81,223.13 507.25,223.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.25,223.59 507.25,223.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.25,224.98 507.25,225.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.81,225.44 507.25,225.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.91,224.98 507.25,224.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.08,225.44 507.08,233.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.91,198.16 507.25,198.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.81,198.63 507.25,198.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.25,198.16 507.25,198.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.25,196.78 507.25,196.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.81,196.31 507.25,196.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.91,196.78 507.25,196.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.91,196.78 506.91,198.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.81,196.49 505.81,196.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.81,198.63 505.81,198.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,196.49 505.81,196.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,198.45 505.81,198.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.73,198.63 506.73,206.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.08,198.63 507.08,206.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.81,223.13 505.81,198.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.81,196.31 505.81,180.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.73,249.94 506.73,249.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.25,242.08 507.25,241.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,242.08 506.1,241.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.73,242.08 506.1,242.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,242.08 506.1,241.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.73,249.94 506.1,249.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.53,249.71 506.53,242.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.3,249.71 506.3,242.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,242.31 506.73,242.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,242.08 506.1,242.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,242.08 506.1,242.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,242.31 506.73,242.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,249.94 506.73,249.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,249.71 506.1,249.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,249.71 506.1,249.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,249.94 506.73,249.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,233.76 506.1,233.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.73,233.76 506.1,233.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,233.76 506.1,233.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.25,233.76 507.25,233.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.73,241.62 506.1,241.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.53,241.39 506.53,233.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.3,241.39 506.3,233.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,233.99 506.73,233.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,233.76 506.1,233.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,233.76 506.1,233.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,233.99 506.73,233.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,241.62 506.73,241.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,241.39 506.1,241.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,241.39 506.1,241.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,241.62 506.73,241.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,225.44 506.1,225.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.73,233.3 506.1,233.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.53,233.07 506.53,225.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.3,233.07 506.3,225.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,225.67 506.73,225.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,225.44 506.1,225.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,225.44 506.1,225.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,225.67 506.73,225.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,233.3 506.73,233.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,233.07 506.1,233.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,233.07 506.1,233.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,233.3 506.73,233.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,206.48 506.73,206.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,206.25 506.1,206.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,206.25 506.1,206.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,206.48 506.73,206.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.53,206.25 506.53,198.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.3,206.25 506.3,198.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,206.48 506.1,206.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.73,198.63 506.1,198.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.73,214.81 506.73,214.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,214.57 506.1,214.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,214.57 506.1,214.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,214.81 506.73,214.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,207.18 506.73,206.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,206.95 506.1,206.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,206.95 506.1,207.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,207.18 506.73,207.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.53,214.57 506.53,207.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.3,214.57 506.3,207.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,214.81 506.1,214.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.25,206.95 507.25,206.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,206.95 506.1,206.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.73,206.95 506.1,206.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,206.95 506.1,206.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.73,215.5 506.73,215.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,215.27 506.1,215.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,215.27 506.1,215.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,215.5 506.73,215.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,215.27 506.1,214.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.73,215.27 506.1,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,215.27 506.1,214.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.25,215.27 507.25,214.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.81,198.63 507.25,198.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.08,206.95 507.08,214.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,206.95 507.25,206.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,206.48 507.25,206.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,214.81 507.25,214.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,215.27 507.25,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.73,223.13 506.73,222.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,222.9 506.1,222.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,222.9 506.1,223.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,223.13 506.73,223.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.53,222.9 506.53,215.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.3,222.9 506.3,215.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,198.86 506.73,198.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,198.63 506.1,198.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,198.63 506.1,198.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,198.86 506.73,198.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="507.08,215.27 507.08,223.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.73,206.95 506.73,214.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.08,206.95 507.08,214.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.73,180.13 506.73,187.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,188.46 507.25,188.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,187.99 507.25,187.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,179.67 507.25,179.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,180.13 507.25,180.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.25,188.46 507.25,187.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,188.46 506.1,187.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.73,188.46 506.1,188.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,188.46 506.1,187.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.73,188.69 506.73,188.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,188.46 506.1,188.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,188.46 506.1,188.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,188.69 506.73,188.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,180.13 506.1,179.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.73,180.13 506.1,180.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,180.13 506.1,179.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.25,180.13 507.25,179.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.73,187.99 506.1,187.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.53,187.76 506.53,180.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.3,187.76 506.3,180.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,180.37 506.73,180.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,180.13 506.1,180.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,180.13 506.1,180.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,180.37 506.73,180.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,187.99 506.73,187.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,187.76 506.1,187.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,187.76 506.1,187.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,187.99 506.73,187.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.53,196.08 506.53,188.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.3,196.08 506.3,188.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,196.31 506.73,196.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.73,196.08 506.1,196.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,196.08 506.1,196.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.1,196.31 506.73,196.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="507.08,188.46 507.08,196.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.08,180.13 507.08,187.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.54,180.13 324.54,187.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.54,188.46 324.54,196.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,172.04 324.88,171.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,171.81 325.52,171.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,171.81 325.52,172.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,172.04 324.88,172.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,196.31 324.88,196.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,196.08 325.52,196.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,196.08 325.52,196.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,196.31 324.88,196.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.09,196.08 325.09,188.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.32,196.08 325.32,188.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.81,171.81 324.36,171.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,179.67 324.88,179.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,179.44 325.52,179.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,179.44 325.52,179.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,179.67 324.88,179.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.09,179.44 325.09,172.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.32,179.44 325.32,172.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,179.67 325.52,179.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,171.81 325.52,171.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,187.99 324.88,187.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,187.76 325.52,187.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,187.76 325.52,187.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,187.99 324.88,187.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,180.37 324.88,180.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,180.13 325.52,180.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,180.13 325.52,180.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,180.37 324.88,180.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.09,187.76 325.09,180.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.32,187.76 325.32,180.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,187.99 325.52,187.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.36,180.13 324.36,179.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,180.13 325.52,179.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,180.13 325.52,180.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,180.13 325.52,179.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,188.69 324.88,188.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,188.46 325.52,188.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,188.46 325.52,188.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,188.69 324.88,188.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,188.46 325.52,187.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,188.46 325.52,188.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,188.46 325.52,187.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.36,188.46 324.36,187.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,180.13 324.36,180.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,179.67 324.36,179.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,187.99 324.36,187.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,188.46 324.36,188.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.54,206.95 324.54,214.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,206.95 324.88,214.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.54,215.27 324.54,223.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,198.86 324.88,198.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,198.63 325.52,198.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,198.63 325.52,198.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,198.86 324.88,198.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.09,222.9 325.09,215.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.32,222.9 325.32,215.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,223.13 324.88,222.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,222.9 325.52,222.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,222.9 325.52,223.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,223.13 324.88,223.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,215.27 324.36,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,214.81 324.36,214.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,206.48 324.36,206.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,206.95 324.36,206.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.54,206.95 324.54,214.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,198.63 324.36,198.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.36,215.27 324.36,214.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,215.27 325.52,214.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,215.27 325.52,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,215.5 324.88,215.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,215.27 325.52,215.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,215.27 325.52,215.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,215.5 324.88,215.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,206.95 325.52,206.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,206.95 325.52,206.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,206.95 325.52,206.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.36,206.95 324.36,206.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,214.81 325.52,214.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.09,214.57 325.09,207.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.32,214.57 325.32,207.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,207.18 324.88,206.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,206.95 325.52,206.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,206.95 325.52,207.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,207.18 324.88,207.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,214.81 324.88,214.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,214.57 325.52,214.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,214.57 325.52,214.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,214.81 324.88,214.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,198.63 325.52,198.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,206.48 325.52,206.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.09,206.25 325.09,198.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.32,206.25 325.32,198.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,206.48 324.88,206.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,206.25 325.52,206.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,206.25 325.52,206.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,206.48 324.88,206.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,233.3 324.88,233.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,233.07 325.52,233.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,233.07 325.52,233.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,233.3 324.88,233.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,225.67 324.88,225.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,225.44 325.52,225.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,225.44 325.52,225.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,225.67 324.88,225.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.09,233.07 325.09,225.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.32,233.07 325.32,225.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,233.3 325.52,233.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,225.44 325.52,225.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,241.62 324.88,241.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,241.39 325.52,241.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,241.39 325.52,241.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,241.62 324.88,241.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,233.99 324.88,233.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,233.76 325.52,233.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,233.76 325.52,233.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,233.99 324.88,233.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.09,241.39 325.09,233.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.32,241.39 325.32,233.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,241.62 325.52,241.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.36,233.76 324.36,233.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,233.76 325.52,233.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,233.76 325.52,233.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,233.76 325.52,233.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,249.94 324.88,249.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,249.71 325.52,249.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,249.71 325.52,249.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,249.94 324.88,249.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,242.31 324.88,242.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,242.08 325.52,242.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,242.08 325.52,242.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.52,242.31 324.88,242.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.09,249.71 325.09,242.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.32,249.71 325.32,242.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.88,249.94 325.52,249.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,242.08 325.52,241.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,242.08 325.52,242.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,242.08 325.52,241.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.36,242.08 324.36,241.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,249.94 324.88,249.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.54,171.81 324.54,179.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,196.31 325.81,180.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,179.53 325.81,171.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,223.13 325.81,215.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.54,198.63 324.54,206.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,171.35 324.36,171.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,171.81 324.36,171.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.36,171.35 324.36,171.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,171.81 325.81,171.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.26,169.68 328.26,171.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.26,169.68 326.62,169.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.26,171.64 325.81,171.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,198.45 325.81,198.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,196.49 325.81,196.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,198.63 325.81,198.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,196.49 325.81,196.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.71,196.78 324.71,198.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.71,196.78 324.36,196.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,196.31 324.36,196.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.36,196.78 324.36,196.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.36,198.16 324.36,198.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,198.63 324.36,198.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.71,198.16 324.36,198.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.54,225.44 324.54,233.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.71,224.98 324.36,224.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,225.44 324.36,225.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.36,224.98 324.36,225.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.36,223.59 324.36,223.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,223.13 324.36,223.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.71,223.59 324.36,223.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.54,233.76 324.54,241.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,233.76 324.36,233.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,233.3 324.36,233.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.54,242.08 324.54,249.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,250.4 325.52,249.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,249.94 325.81,234.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.54,250.4 324.54,251.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.76,253.26 323.76,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,251.27 325.81,249.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,249.94 324.88,249.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.71,223.59 324.71,224.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,223.3 325.81,223.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,225.44 325.81,225.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,223.3 325.81,223.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,225.26 325.81,225.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,250.4 325.52,249.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.36,250.4 324.36,249.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,250.4 324.36,250.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,249.94 324.36,249.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,241.62 324.36,241.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.52,242.08 324.36,242.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,253.26 323.76,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.76,252.51 323.76,251.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.1,252.51 323.76,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.1,251.3 324.1,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.76,251.3 323.76,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.54,251.67 324.1,251.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.88,163.72 324.88,171.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.62,169.68 326.62,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.35,165.11 325.35,169.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,165.11 325.81,169.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.71,177.13 505.46,177.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.64,180.13 505.64,179.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.87,179.21 505.64,179.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.87,178.52 503.87,179.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.43,178.52 503.87,178.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.1,180.13 505.64,180.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.08,171.26 507.26,171.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.08,171.78 507.26,171.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.08,163.46 507.08,171.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.08,171.78 507.08,179.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.24,165.22 478.43,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.44,163.46 503.44,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.9,163.46 503.9,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.43,164.41 478.43,172.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.71,165.11 479.71,172.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.71,165.11 505.46,165.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.49,179.67 505.64,179.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.26,179.9 500.26,178.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.49,179.67 500.49,178.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.26,179.9 505.64,179.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.08,163.46 503.9,163.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.05,163.26 336.51,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.05,163.37 328.18,163.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.39,163.37 336.51,163.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.72,163.26 353.18,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.72,163.37 344.85,163.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.85,163.26 344.39,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.06,163.37 353.18,163.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="371.65,163.37 363.77,163.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="371.65,163.26 372.11,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.98,163.26 380.44,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.32,163.26 388.78,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.24,163.26 407.7,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.58,163.26 416.04,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.58,163.37 407.7,163.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.24,163.37 399.37,163.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="423.91,163.26 424.38,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="423.91,163.37 416.04,163.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.25,163.37 424.38,163.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="442.84,163.26 443.3,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.17,163.26 451.64,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="442.84,163.37 434.97,163.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.17,163.37 443.3,163.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.77,163.26 487.23,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.51,163.37 451.64,163.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.51,163.26 459.97,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="467.85,163.37 459.97,163.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.43,163.37 470.56,163.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="495.11,163.26 495.57,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.77,163.46 478.43,163.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="495.11,163.46 487.23,163.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.44,163.46 495.57,163.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.43,163.26 478.9,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.26,171.26 507.26,171.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.44,163.26 503.9,163.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.46,165.11 505.46,177.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.9,163.26 478.9,163.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.43,163.46 478.43,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,165.11 325.35,165.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,169.68 325.35,169.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.62,196.49 326.62,180.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.62,179.53 326.62,171.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.62,223.3 326.62,215.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.28,372.09 526.47,372.84 527.24,371.91 527.8,374.25 528.57,373.33 531.41,373.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="534.65,413.24 534.65,413.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,413.01 533.95,413.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,413.01 533.95,413.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,413.24 534.65,413.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="528.43,439.36 533.95,439.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="528.43,439.53 533.95,439.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,439.1 533.95,439.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,439.1 534.65,439.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.22,433.8 534.22,439.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.38,433.8 534.38,439.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,252.51 534.65,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,252.51 533.95,251.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.67,251.35 534.67,251.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.33,251.35 534.33,251.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.11,251.79 534.67,251.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.11,252.13 534.65,252.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,252.13 534.65,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,251.81 534.33,251.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.43,252.08 533.95,252.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="528.43,252.24 533.95,252.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,258.03 534.21,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.38,258.03 534.38,252.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.84,441.56 443.3,441.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.17,441.56 451.64,441.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.98,442.84 380.44,442.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="371.65,442.84 372.11,442.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.06,442.84 361.52,442.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.31,442.84 363.77,442.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.67,251.82 297.29,251.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.97,252.13 296.97,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.45,252.13 296.97,252.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.45,251.79 296.94,251.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.29,251.3 297.29,251.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.94,251.3 296.94,251.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.67,252.51 297.67,251.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.67,252.51 296.97,252.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.24,258.03 297.24,252.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.4,258.03 297.4,252.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.19,252.08 297.9,252.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.19,252.25 297.9,252.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="507.86,440.26 507.51,440.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.67,251.35 534.33,251.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.11,252.13 535.11,251.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.43,171.81 492.14,171.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="485.43,170.42 500.86,170.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="485.25,170.25 501.03,170.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="485.25,171.99 492.22,171.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="487.86,171.99 487.86,177.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="489.14,171.99 489.14,177.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="490.41,171.99 490.41,177.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="491.68,171.99 491.68,177.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="492.95,174.4 492.95,177.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="494.22,171.99 494.22,173.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="495.49,171.99 495.49,173.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="496.76,171.99 496.76,177.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="498.03,171.99 498.03,177.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="500.86,170.42 500.86,171.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="501.03,170.25 501.03,171.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="501.77,174.56 501.77,167.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="501.77,167.75 484.07,167.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="497.3,173.51 496.77,174.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="496.77,174.56 497.3,175.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="497.57,173.51 497.04,174.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="497.04,174.56 497.57,175.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="497.57,173.51 497.3,173.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="497.57,175.62 497.3,175.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M497.57 173.51L497.3 173.51 496.77 174.56 497.04 174.56 497.57 173.51Z" fill-rule="evenodd" fill="blue"/>
+<path d="M497.57 175.62L497.3 175.62 496.77 174.56 497.04 174.56 497.57 175.62Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="501.77,174.56 496.76,174.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="503.82,338.81 492.66,348.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.66,338.81 504.22,348.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.02,358.23 500.87,358.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="316.82,253.26 304.23,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="491.74,359.5 489.69,359.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,285.88 533.2,298.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,285.07 533.2,278.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,259.07 533.2,271.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.8,253.26 527.39,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.78,344.88 505.78,337.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,279.76 336.53,279.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.63,318.3 337.63,312.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.63,295.07 342.74,295.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.63,295.99 341.81,295.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,305.47 336.53,305.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.4,304.55 336.53,304.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.63,311.25 341.81,311.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.63,312.17 341.81,312.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,319.22 342.74,319.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,277.79 325.84,296.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.4,279.76 327.4,291.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.63,318.3 341.81,318.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.63,311.25 337.63,305.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.63,305.47 341.81,305.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.63,304.55 337.63,295.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.63,304.55 341.81,304.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.63,295.07 337.63,288.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.53,305.47 336.53,318.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.53,279.76 336.53,282.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.53,278.49 336.53,279.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.81,318.3 341.81,316.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.74,319.22 342.74,316.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.81,304.55 341.81,304.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.81,311.25 341.81,310.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.74,313.93 341.81,313.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.74,316.59 341.81,316.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.74,313.93 342.74,310.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.81,313.93 341.81,312.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.81,310.12 342.74,310.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.81,306.64 342.74,306.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.74,310.12 342.74,304.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.81,310.12 341.81,305.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.4,292.06 336.53,292.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.4,291.6 336.53,291.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.4,292.06 327.4,296.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.53,292.06 336.53,304.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.63,277.79 340.86,277.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,278.49 336.53,278.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,279.06 336.53,279.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.63,278.49 340.4,278.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.63,279.41 340.4,279.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.63,279.87 340.86,279.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.4,279.41 340.4,278.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.86,279.87 340.86,277.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.63,279.41 337.63,278.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.63,282.56 337.63,279.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.53,288.8 336.53,291.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.4,296.02 325.84,296.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.4,300.65 325.84,300.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.4,300.65 327.4,304.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,300.65 325.84,309.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.53,282.56 337.63,282.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.53,288.8 337.63,288.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,277.79 337.63,277.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.24,325.67 261.49,325.67" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="297.24,265.77 297.24,271.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.4,265.77 297.4,271.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.64,271.58 298.42,271.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="316.19,277.99 316.19,263.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="316.48,278.28 316.48,263.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="316.19,256.38 316.19,253.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.73,278.28 316.48,278.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.84,277.99 316.19,277.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.84,277.99 308.84,278.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="316.48,256.67 316.48,253.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.84,272.91 305.45,271.26 305.44,270.06 303.52,271.52 303.51,270.32 300.86,269.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.85,271.24 305.95,269.82 305.94,268.62 304.03,270.08 304.01,268.88 301.22,267.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.51,269.34 301.51,284.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.22,269.2 301.22,284.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.79,269.96 301.51,269.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.18,269.96 304.02,269.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.73,272.86 308.73,284.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,272.72 308.44,284.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="314.8,263.61 314.8,256.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="316.07,263.61 316.07,256.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.83,284.87 304.83,277.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M305.89 278.54L305.89 278.28 304.83 277.75 304.83 278.01 305.89 278.54Z" fill-rule="evenodd" fill="blue"/>
+<path d="M303.78 278.54L303.78 278.28 304.83 277.75 304.83 278.01 303.78 278.54Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="305.89,278.54 305.89,278.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.78,278.54 303.78,278.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.83,278.01 305.89,278.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.78,278.54 304.83,278.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.83,277.75 305.89,278.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.78,278.28 304.83,277.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="317.16,260.04 304.98,260.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="316.19,253.38 316.48,253.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="535.34,352.02 534.65,352.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,353 534.65,353" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,353 535.34,352.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,352.1 533.2,352.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,352.91 533.2,352.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,352.1 534.65,352.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,345.81 534.65,352.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.79,359.04 534.79,359.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,352.91 534.65,352.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,352.91 533.2,352.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,352.91 533.95,353.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,352.91 534.65,353.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,353.33 533.2,353.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,345.81 533.2,353.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.54,358.4 512.54,351.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="512.83,358.4 512.83,351.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="526.26,355.83 528.62,355.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="525.09,351.12 525.09,346.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.88,351.12 523.88,346.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="522.67,351.12 522.67,346.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="521.45,351.12 521.45,346.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="520.24,351.12 520.24,346.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="519.03,351.12 519.03,346.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="517.81,351.12 517.81,346.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="516.6,351.12 516.6,346.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="515.38,351.12 515.38,346.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="514.17,351.12 514.17,346.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="512.96,351.12 512.96,346.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="512.66,360.19 512.66,363.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="512.95,360.19 512.95,363.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="512.95,370.71 512.95,374.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="512.66,370.42 512.66,374.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.64,374.52 530.57,374.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.64,370.42 530.57,370.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="526.69,371.69 526.72,371.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.64,373.25 527.56,373.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.03,370.84 526.71,371.7 527.48,370.77 528.04,373.12 528.81,372.19 531.14,372.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.64,372.19 523.64,374.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.35,372.05 523.35,374.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="517.28,370.42 517.28,363.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="516.01,370.42 516.01,363.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="514.74,370.42 514.74,363.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="513.47,370.42 513.47,363.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="512.2,370.42 512.2,363.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="527.7,371.69 530.57,371.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="527.09,366.81 510.94,366.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="528.14,370.8 527.09,371.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="527.09,371.33 526.03,370.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="528.14,370.54 527.09,371.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="527.09,371.06 526.03,370.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="528.14,370.54 528.14,370.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="526.03,370.54 526.03,370.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M528.14 370.54L528.14 370.8 527.09 371.33 527.09 371.06 528.14 370.54Z" fill-rule="evenodd" fill="blue"/>
+<path d="M526.03 370.54L526.03 370.8 527.09 371.33 527.09 371.06 526.03 370.54Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="527.09,366.81 527.09,371.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="525.92,374.1 526.98,373.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="526.98,373.57 528.03,374.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="525.92,374.36 526.98,373.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="526.98,373.83 528.03,374.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="525.92,374.36 525.92,374.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="528.03,374.36 528.03,374.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M525.92 374.36L525.92 374.1 526.98 373.57 526.98 373.83 525.92 374.36Z" fill-rule="evenodd" fill="blue"/>
+<path d="M528.03 374.36L528.03 374.1 526.98 373.57 526.98 373.83 528.03 374.36Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="526.98,378.08 526.98,373.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="534.82,413.01 534.82,419.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="518.22,356.07 518.22,355.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="485.25,170.25 485.25,170.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="485.6,165.11 485.6,170.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="486.87,165.11 486.87,170.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="488.14,165.11 488.14,170.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="489.41,165.11 489.41,170.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="490.68,165.11 490.68,170.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="491.96,165.11 491.96,170.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="493.23,165.11 493.23,170.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="485.25,170.42 485.25,171.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="485.43,170.42 485.43,171.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M490.64 173.54L490.91 173.54 491.44 174.6 491.17 174.6 490.64 173.54Z" fill-rule="evenodd" fill="blue"/>
+<path d="M490.64 175.65L490.91 175.65 491.44 174.6 491.17 174.6 490.64 175.65Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="490.64,173.54 490.91,173.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="490.64,175.65 490.91,175.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="491.17,174.6 490.64,173.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="490.64,175.65 491.17,174.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="491.44,174.6 490.91,173.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="490.91,175.65 491.44,174.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="492.1,171.74 492.91,173.43 492.17,174.38 494.58,174.43 493.84,175.38 494.67,177.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="493.53,171.81 494.04,172.88 493.3,173.84 495.71,173.88 494.97,174.83 496.06,177.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="493.61,171.99 501.03,171.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="493.53,171.81 500.86,171.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="495.49,174.16 495.49,175.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="494.5,165.11 494.5,170.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="495.77,165.11 495.77,170.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="497.04,165.11 497.04,170.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="498.31,165.11 498.31,170.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="499.58,165.11 499.58,170.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="494.22,174.42 494.22,174.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="494.22,176.18 494.22,177.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="482.68,166.77 482.68,168.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="482.68,167.43 482.58,167.3 482.48,167.23 482.33,167.23 482.24,167.3 482.14,167.43 482.09,167.63 482.09,167.76 482.14,167.96 482.24,168.09 482.33,168.15 482.48,168.15 482.58,168.09 482.68,167.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="483.03,168.15 483.03,167.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="483.03,167.49 483.18,167.3 483.28,167.23 483.42,167.23 483.52,167.3 483.57,167.49 483.57,168.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="484.02,168.02 483.97,168.09 484.02,168.15 484.07,168.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="484.52,174.28 484.52,174.95 484.57,175.14 484.66,175.21 484.81,175.21 484.91,175.14 485.06,174.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="485.06,174.28 485.06,175.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="485.46,174.28 485.46,175.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="485.46,174.48 485.56,174.35 485.65,174.28 485.8,174.28 485.9,174.35 486,174.48 486.05,174.68 486.05,174.81 486,175.01 485.9,175.14 485.8,175.21 485.65,175.21 485.56,175.14 485.46,175.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="486.64,174.6 491.45,174.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.05,285.47 304.05,286.13 304.1,286.33 304.2,286.4 304.35,286.4 304.45,286.33 304.6,286.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.6,285.47 304.6,286.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.99,285.47 304.99,286.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.99,285.67 305.09,285.54 305.19,285.47 305.34,285.47 305.44,285.54 305.54,285.67 305.59,285.87 305.59,286 305.54,286.2 305.44,286.33 305.34,286.4 305.19,286.4 305.09,286.33 304.99,286.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="318.59,259.11 318.59,260.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="318.59,259.77 318.49,259.64 318.39,259.57 318.25,259.57 318.15,259.64 318.05,259.77 318,259.97 318,260.1 318.05,260.3 318.15,260.43 318.25,260.5 318.39,260.5 318.49,260.43 318.59,260.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="318.94,260.5 318.94,259.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="318.94,259.83 319.09,259.64 319.19,259.57 319.33,259.57 319.43,259.64 319.48,259.83 319.48,260.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="319.93,260.36 319.88,260.43 319.93,260.5 319.98,260.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,282.67 301.51,282.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.44,283.95 301.51,283.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="326.62,251.27 326.62,234.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.76,262.26 333.21,262.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="333.21,272.01 333.21,271" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.53,262.83 328.61,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.53,271.32 327.04,271.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,272.01 327.04,272.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,223.3 327.8,223.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,225.26 327.8,225.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,223.3 327.8,225.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,251.27 327.8,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,251.27 327.8,251.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.64,277.79 332.64,277.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.76,262.26 326.76,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.53,271.32 326.53,265.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.96,269.59 337.96,265.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.65,268.89 338.65,265.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.65,265.89 357.69,265.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.96,265.19 343.4,265.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.65,268.89 357.69,268.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="333.21,266.45 333.21,262.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.28,258.61 342.05,258.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.28,257.91 340.44,257.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.28,257.91 336.28,258.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="343.4,265.19 357.69,265.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.57,247.57 363.4,247.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.4,250.98 363.4,247.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="362.7,250.98 362.7,248.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,251.96 340.44,251.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,251.27 342.57,251.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="362.77,252.94 362.77,268.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.69,265.89 357.69,268.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.52,268.89 358.87,268.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.43,250.98 359.24,250.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.43,251.67 358.54,251.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.24,250.98 359.24,248.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.54,251.67 358.54,248.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.24,248.26 362.7,248.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="343.26,248.26 358.54,248.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.57,251.27 342.57,247.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="343.26,251.96 343.26,248.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.44,257.91 342.58,257.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.28,257.91 336.28,258.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.04,251.96 340.44,251.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.13,251.96 343.26,251.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.79,271.32 332.52,271.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.79,272.01 332.1,272.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.96,269.59 358.52,269.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.52,268.89 358.52,269.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.75,268.89 358.75,264.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,268.89 362.19,267.77 361.69,266.74 360.93,265.89 359.97,265.28 358.87,264.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.87,268.89 358.87,264.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.75,268.89 358.87,268.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,269.59 362.62,269.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.62,269.59 362.62,268.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.62,268.89 362.39,268.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,268.89 362.39,269.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.52,269.59 358.75,269.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.75,269.59 358.75,268.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.75,268.89 358.52,268.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.52,268.89 358.52,269.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.38,256.51 358.38,268.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.69,256.51 357.69,265.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.38,256.51 357.69,256.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.07,261.67 338.94,261.53 339.72,261.12 340.34,260.49 340.72,259.69 340.84,258.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="338.07,258.9 340.84,258.9" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="338.07,265.19 338.07,261.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="337.95,265.19 337.95,261.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="340.61,261.98 340.3,262.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="340.3,262.06 340.03,262.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="340.03,262.3 339.85,262.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="339.85,262.63 339.79,263.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="339.79,263.05 339.88,263.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="339.43,265.16 339.43,264.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="339.43,264.4 339.63,264.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="339.63,264.35 339.86,264.2 339.95,263.94 339.88,263.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="341.33,263.68 341.26,263.94 341.36,264.2 341.59,264.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="341.78,265.16 339.43,265.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="341.78,264.4 341.59,264.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="341.78,265.16 341.78,264.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="341.33,263.68 341.43,263.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="341.43,263.05 341.36,262.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="341.36,262.63 341.19,262.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="341.19,262.3 340.91,262.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="340.91,262.06 340.61,261.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="338.07,258.9 338.07,258.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="337.95,258.9 337.95,258.61" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="340.44,251.96 342.81,251.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.26,253.94 338.2,253.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="338.2,253.94 338.2,254.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="338.2,254.41 337.85,254.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.85,255.12 338.2,255.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="338.2,256.06 338.2,255.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="339.26,256.06 338.2,256.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="339.26,256.06 339.26,253.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="337.85,254.82 337.85,255.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.8,306.57 327.8,318.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,309.74 327.11,309.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.11,309.74 327.11,319.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,318.3 336.53,318.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,319.22 327.8,319.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.81,359.5 484.81,348.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.11,360.19 484.11,348.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="491.74,348.75 488.04,348.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="491.74,350.37 488.04,350.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="488.04,350.37 488.04,348.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.58,350.83 487.58,348.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="491.74,350.83 487.58,350.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="491.74,348.06 484.11,348.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.58,348.75 484.81,348.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="491.74,350.37 491.74,348.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="491.74,348.06 491.74,337.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.93,338.81 503.93,340.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.93,340.66 505.67,340.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.67,338.81 505.67,340.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.03,358.23 505.03,340.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.78,277.79 505.78,279.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,298.48 533.22,298.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.11,305.41 535.11,305.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,312.93 534.65,312.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,312.69 533.95,312.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,312.69 533.95,312.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,312.93 534.65,312.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.38,318.6 534.38,312.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,318.6 534.21,312.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,312.69 534.65,312.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,311.89 534.65,311.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,311.65 533.95,311.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,311.65 533.95,311.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,311.89 534.65,311.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,305.99 534.65,305.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,305.76 533.95,305.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,305.76 533.95,305.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,305.99 534.65,305.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.38,311.65 534.38,305.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,311.65 534.21,305.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,311.89 534.65,311.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,305.76 533.95,305.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,305.76 534.65,305.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,305.41 534.65,305.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,305.18 533.95,305.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,305.18 533.95,305.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,305.41 534.65,305.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,299.52 534.65,299.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,299.29 533.95,299.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,299.29 533.95,299.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,299.52 534.65,299.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.38,305.18 534.38,299.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,305.18 534.21,299.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,305.41 534.65,305.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,299.29 534.65,299.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,305.41 534.65,305.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,305.41 533.95,305.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,305.41 533.95,305.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,298.48 534.65,298.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,298.25 533.95,298.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,298.25 533.95,298.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,298.48 534.65,298.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,298.48 534.65,298.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,312.78 535.34,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,312.78 534.65,312.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,311.8 534.65,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.11,305.41 533.95,305.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.11,305.76 533.95,305.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,298.39 534.65,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,299.37 534.65,299.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,299.37 535.34,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,299.29 533.2,298.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,298.48 533.2,298.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,299.29 533.2,299.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,312.69 533.2,311.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,312.69 533.2,312.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,311.89 533.2,311.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,299.29 533.2,318.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.11,332.23 533.2,332.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.11,332.58 533.2,332.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.11,332.23 535.11,332.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,318.82 534.65,318.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,318.82 534.65,318.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,332.23 534.65,332.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,332.23 534.65,331.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,331.99 533.95,331.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,331.99 533.95,332.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,332.23 534.65,332.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,332.23 534.65,332.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,319.17 533.95,319.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,318.82 533.95,318.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,325.2 534.65,325.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,326.19 534.65,326.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,326.19 535.34,325.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,318.82 533.95,318.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,318.82 533.95,319.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,318.82 534.65,318.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,318.82 534.65,318.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,319.17 534.65,319.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,319.17 533.95,318.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,325.29 534.65,325.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.38,325.06 534.38,319.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,325.06 534.21,319.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,325.29 534.65,325.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,325.06 533.95,325.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,325.06 533.95,325.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,325.29 534.65,325.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,326.1 534.65,326.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.38,331.99 534.38,326.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,331.99 534.21,326.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,326.33 534.65,326.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,326.1 533.95,326.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,326.1 533.95,326.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,326.33 534.65,326.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,332.23 534.65,331.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,331.99 533.95,331.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,331.99 533.95,332.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,332.23 534.65,332.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="535.11,318.82 535.11,319.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,325.29 533.2,325.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,326.1 533.2,326.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,326.1 533.2,325.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.89,333.38 533.89,333.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,333.38 533.2,333.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.89,333.38 534.79,333.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.89,344.88 534.88,344.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.88,344.88 534.88,345.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,344.56 533.2,344.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.89,344.56 533.89,344.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,333.7 533.89,333.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,344.56 533.89,344.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,333.93 528,333.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.2,339.13 531.83,338.95 530.56,338.41 529.47,337.55 528.65,336.44 528.15,335.15 528,333.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.2,334.09 528.01,334.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.2,334.09 533.2,334.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.2,333.93 533.2,334.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.2,344.33 533.2,344.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.2,344.17 533.2,344.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.2,344.17 528.01,344.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="528,344.49 528.15,343.11 528.65,341.82 529.47,340.71 530.56,339.85 531.83,339.32 533.2,339.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.2,344.33 528,344.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.2,344.33 533.2,344.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.2,344.56 533.89,344.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.89,344.56 533.89,344.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.89,344.33 533.2,344.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.2,333.7 533.2,333.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.2,333.93 533.89,333.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.89,333.93 533.89,333.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.89,333.7 533.2,333.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.26,319.4 523.26,332.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.34,318.6 522.34,332.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.63,333.38 528.06,333.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="549.81,319.4 549.42,319.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="550.74,318.6 549.42,318.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,319.4 533.2,329.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.44,377.71 507.44,378.37 507.49,378.57 507.59,378.63 507.73,378.63 507.83,378.57 507.98,378.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="507.98,377.71 507.98,378.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="508.38,377.71 508.38,379.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="508.38,377.91 508.48,377.78 508.58,377.71 508.73,377.71 508.82,377.78 508.92,377.91 508.97,378.11 508.97,378.24 508.92,378.44 508.82,378.57 508.73,378.63 508.58,378.63 508.48,378.57 508.38,378.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="509.17,365.94 509.17,367.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="509.17,366.6 509.07,366.47 508.97,366.4 508.83,366.4 508.73,366.47 508.63,366.6 508.58,366.8 508.58,366.93 508.63,367.13 508.73,367.26 508.83,367.33 508.97,367.33 509.07,367.26 509.17,367.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="509.52,367.33 509.52,366.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="509.52,366.66 509.67,366.47 509.77,366.4 509.92,366.4 510.01,366.47 510.06,366.66 510.06,367.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="510.51,367.19 510.46,367.26 510.51,367.33 510.56,367.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="326.62,214.73 326.62,198.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,214.73 325.81,198.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.62,233.24 326.62,225.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.81,233.24 325.81,225.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.71,176.93 479.71,177.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.43,176.93 478.43,178.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.71,172.3 478.43,172.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.71,176.93 478.43,176.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.71,176.7 483.87,176.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.71,172.54 480.8,172.68 481.82,173.11 482.69,173.8 483.35,174.69 483.75,175.72 483.87,176.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.71,176.57 483.86,176.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.71,176.57 479.71,176.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.71,176.7 479.71,176.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.71,172.54 479.71,172.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.71,172.3 478.43,172.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.43,172.3 478.43,172.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.43,172.54 479.71,172.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.71,176.93 479.71,176.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.71,176.7 478.43,176.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.43,176.7 478.43,176.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.43,176.93 479.71,176.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.19,250.98 470.19,241.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.49,250.29 469.49,242.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.19,250.98 461.17,250.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="461.17,250.98 461.17,241.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="461.86,250.29 461.86,242.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.49,250.29 461.86,250.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.49,242.43 461.86,242.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.19,241.73 461.17,241.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.65,360.19 490.65,365.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.13,360.19 490.13,365.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.07,359.5 484.81,359.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.07,360.19 484.11,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="489.69,359.5 489.69,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.07,359.5 485.07,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.3,359.5 485.3,355.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.46,359.5 489.31,358.4 488.88,357.38 488.19,356.52 487.3,355.86 486.27,355.46 485.17,355.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.43,359.5 485.43,355.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.43,359.5 485.43,359.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.3,359.5 485.43,359.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.46,360.19 489.69,360.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.69,360.19 489.69,359.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.69,359.5 489.46,359.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.46,359.5 489.46,360.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.07,360.19 485.3,360.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.3,360.19 485.3,359.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.3,359.5 485.07,359.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.07,359.5 485.07,360.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,358.18 533.95,359.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,358.18 534.65,359.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,353.56 534.65,353.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,353.56 534.65,352.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,353.56 533.95,352.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,358.18 534.65,358.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,353.79 538.81,353.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,357.95 535.74,357.81 536.76,357.38 537.63,356.69 538.29,355.8 538.69,354.77 538.81,353.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,353.92 538.8,353.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,353.92 534.65,353.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,353.79 534.65,353.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,357.95 533.95,358.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,358.18 534.65,358.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,358.18 534.65,357.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,357.95 533.95,357.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,353.56 533.95,353.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,353.79 534.65,353.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,353.79 534.65,353.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,353.56 533.95,353.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.39,413.24 534.39,418.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,413.24 534.21,418.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="549.81,332.94 541.03,332.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.03,319.4 541.03,332.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.09,319.46 541.09,332.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="549.76,332.88 541.09,332.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="549.76,319.46 549.76,332.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="549.76,319.46 549.42,319.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="540.39,319.46 540.39,333.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="540.22,319.46 540.22,333.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="540.22,319.46 540.39,319.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.18,333.21 540.22,333.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.18,333.38 541.13,333.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="549.75,333.24 549.75,333.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="535.71,323.48 535.71,333.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.18,323.48 539.18,333.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="535.54,323.48 535.54,333.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.35,323.48 539.35,333.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.35,323.48 539.18,323.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="541.13,333.21 541.13,333.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="549.23,333.24 549.23,333.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="549.23,333.42 549.75,333.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="549.23,333.24 549.75,333.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="540.39,333.21 541.13,333.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="534.79,333.38 535.71,333.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="534.79,333.21 535.71,333.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.87,319.4 539.87,333.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.71,323.48 535.54,323.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.18,333.13 535.71,333.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.18,332.26 535.71,332.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.18,331.39 535.71,331.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.18,330.52 535.71,330.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.18,329.66 535.71,329.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.18,328.79 535.71,328.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.18,327.92 535.71,327.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.18,327.06 535.71,327.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.18,326.19 535.71,326.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.18,325.32 535.71,325.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.18,324.46 535.71,324.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="539.18,323.59 535.71,323.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="535.3,319.4 534.82,319.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.3,318.6 534.82,318.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="539.23,319.4 539.23,318.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.3,319.4 535.3,318.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.53,319.4 535.53,322.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="539,319.4 538.82,320.5 538.31,321.48 537.52,322.25 536.53,322.73 535.43,322.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="535.64,319.4 535.64,322.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="535.64,319.4 535.64,319.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="535.53,319.4 535.64,319.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="539,319.4 539.23,319.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="539.23,319.4 539.23,318.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="539.23,318.6 539,318.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="539,318.6 539,319.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="535.3,319.4 535.53,319.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="535.53,319.4 535.53,318.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="535.53,318.6 535.3,318.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="535.3,318.6 535.3,319.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="550.74,278.8 535.71,278.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="543.64,295.42 542.58,295.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="542.58,295.95 541.53,295.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="543.64,295.16 542.58,295.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="542.58,295.68 541.53,295.16" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="543.64,295.16 543.64,295.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="541.53,295.16 541.53,295.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M543.64 295.16L543.64 295.42 542.58 295.95 542.58 295.68 543.64 295.16Z" fill-rule="evenodd" fill="blue"/>
+<path d="M541.53 295.16L541.53 295.42 542.58 295.95 542.58 295.68 541.53 295.16Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="542.58,290.35 542.58,295.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="542.58,290.35 542.58,276.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="535.53,300.02 535.53,277.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="535.71,300.02 535.71,277.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="535.71,277.68 535.53,277.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="535.53,300.02 535.71,300.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="535.53,278.8 535.17,278.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="549.72,317.33 549.8,317.14 549.99,317.06 550.19,317.14 550.27,317.33 550.19,317.52 549.99,317.6 549.8,317.52 549.72,317.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="540.11,317.33 540.19,317.14 540.38,317.06 540.57,317.14 540.65,317.33 540.57,317.52 540.38,317.6 540.19,317.52 540.11,317.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="486.74,440.57 487.26,440.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.65,365.42 490.13,365.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.65,373.74 490.13,373.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.65,365.65 494.58,365.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.65,369.58 491.68,369.44 492.64,369.03 493.47,368.39 494.09,367.55 494.47,366.57 494.57,365.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.65,365.77 494.57,365.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.65,365.77 490.65,365.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.65,365.65 490.65,365.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.65,373.51 490.65,373.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.65,373.39 490.65,373.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.65,373.39 494.57,373.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.57,373.63 494.47,372.59 494.09,371.61 493.47,370.77 492.64,370.13 491.68,369.72 490.65,369.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.65,373.51 494.58,373.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.13,373.51 490.13,373.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.13,373.74 490.65,373.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.65,373.74 490.65,373.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.65,373.51 490.13,373.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.13,365.42 490.13,365.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.13,365.65 490.65,365.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.65,365.65 490.65,365.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.65,365.42 490.13,365.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.74,348.75 488.04,350.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="488.04,348.75 491.74,350.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.98,319.4 526.98,326.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.98,326.69 523.26,326.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.52,319.4 526.52,326.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.52,326.22 523.26,326.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.08,304.57 299.08,306.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.05,304.57 301.05,306.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.08,306.54 301.05,306.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.08,304.57 301.05,304.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.24,324.75 271.55,324.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.24,324.75 269.24,327.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="262.61,336.2 262.08,335.15" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="262.08,335.15 262.61,334.09" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="262.87,336.2 262.35,335.15" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="262.35,335.15 262.87,334.09" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="262.87,336.2 262.61,336.2" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="262.87,334.09 262.61,334.09" style="fill:none;stroke:black;stroke-width:0.5"/>
+<path d="M262.87 336.2L262.61 336.2 262.08 335.15 262.35 335.15 262.87 336.2Z" fill-rule="evenodd" fill="black"/>
+<path d="M262.87 334.09L262.61 334.09 262.08 335.15 262.35 335.15 262.87 334.09Z" fill-rule="evenodd" fill="black"/>
+<polyline points="267.68,335.15 262.07,335.15" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="267.68,328.67 268.21,329.72" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="268.21,329.72 267.68,330.78" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="267.42,328.67 267.95,329.72" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="267.95,329.72 267.42,330.78" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="267.42,328.67 267.68,328.67" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="267.42,330.78 267.68,330.78" style="fill:none;stroke:black;stroke-width:0.5"/>
+<path d="M267.42 328.67L267.68 328.67 268.21 329.72 267.95 329.72 267.42 328.67Z" fill-rule="evenodd" fill="black"/>
+<path d="M267.42 330.78L267.68 330.78 268.21 329.72 267.95 329.72 267.42 330.78Z" fill-rule="evenodd" fill="black"/>
+<polyline points="262.61,329.72 268.23,329.72" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="299.08,304.57 298.42,304.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.74,313.93 342.74,316.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.81,313.93 341.81,316.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.4,296.02 327.4,300.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.53,282.56 336.53,288.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.53,305.47 327.8,318.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,305.59 336.53,318.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,272.01 325.84,253.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="366.45,449.12 366.45,444.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.3,449.12 365.3,444.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="364.14,449.12 364.14,444.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.98,449.12 362.98,444.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="361.83,449.12 361.83,444.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="360.67,449.12 360.67,444.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.52,449.12 359.52,444.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="360.67,455.1 360.67,450.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="361.83,455.1 361.83,450.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.98,455.1 362.98,450.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="364.14,451.98 364.14,450.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.3,455.1 365.3,452.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="366.45,455.1 366.45,450.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="367.61,455.1 367.61,450.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.76,455.1 368.76,450.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369.92,455.1 369.92,450.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.41,449.29 359.41,449.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.23,449.12 359.23,450.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.23,455.1 359.23,455.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.38,449.29 359.41,449.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.56,449.12 359.23,449.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.91,444 359.42,444" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.45,444.17 360.58,444.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.91,444.17 359.24,444.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.56,450.13 366.74,450.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.96,443.14 378.96,443.83" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="379.65,443.14 379.65,443.83" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.96,443.14 379.65,443.14" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.96,443.83 379.65,443.83" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="372.36,455.1 372.36,455.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.56,449.96 372.56,450.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.36,455.1 364.37,455.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.56,450.13 366.74,450.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.38,449.96 366.82,449.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.36,455.28 364.29,455.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="371.07,455.1 371.07,450.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="379.69,456.08 378.99,456.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="379.69,455.39 378.99,455.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.99,455.39 378.99,456.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="379.69,455.39 379.69,456.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.17,455.39 354.17,456.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.48,455.39 353.48,456.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.17,455.39 353.48,455.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.17,456.08 353.48,456.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.17,443.83 353.48,443.83" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.17,443.14 353.48,443.14" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.48,443.14 353.48,443.83" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.17,443.14 354.17,443.83" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="352.72,456.17 379.75,456.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.72,456.87 353.42,456.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.42,442.55 353.42,449.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.72,442.84 352.72,449.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.75,442.55 379.75,456.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.44,442.84 380.44,456.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.59,442.55 359.59,443.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.6,442.55 353.42,442.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.6,441.85 353.18,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.22,442.55 359.22,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.6,442.55 354.6,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.83,442.55 354.83,446.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.99,442.55 358.85,443.64 358.41,444.66 357.73,445.53 356.84,446.19 355.81,446.59 354.71,446.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.96,442.55 354.96,446.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.96,442.55 354.96,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.83,442.55 354.96,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.99,442.55 359.22,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.22,442.55 359.22,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="359.22,441.85 358.99,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.99,441.85 358.99,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.6,442.55 354.83,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.83,442.55 354.83,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.83,441.85 354.6,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.6,441.85 354.6,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="354.26,442.55 354.26,455.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.91,443.77 378.91,455.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.59,443.77 378.91,443.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.56,449.96 372.56,449.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.38,449.96 372.38,449.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.24,442.55 359.24,444.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.42,442.55 359.42,444" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="367.61,449.12 367.61,444.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.76,449.12 368.76,444.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369.92,449.12 369.92,444.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="371.07,449.12 371.07,444.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="364.28,455.3 365.02,453.73 364.28,452.78 366.69,452.74 365.95,451.79 366.86,449.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.8,455.3 363.93,452.95 363.18,452 365.59,451.95 364.85,451 365.35,449.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.27,450.13 359.23,450.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.35,449.96 359.41,449.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.27,450.13 359.23,450.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.3,451.96 365.3,451.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.9,455.1 359.23,455.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="354.26,455.33 378.91,455.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="362.82,455.28 359.23,455.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.31,451.67 367.79,452.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="367.79,452.72 368.31,453.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.58,451.67 368.05,452.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.05,452.72 368.58,453.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.58,451.67 368.31,451.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.58,453.78 368.31,453.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M368.58 451.67L368.05 452.72 367.79 452.72 368.31 451.67 368.58 451.67Z" fill-rule="evenodd" fill="blue"/>
+<path d="M368.58 453.78L368.05 452.72 367.79 452.72 368.31 453.78 368.58 453.78Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="373.39,452.72 367.77,452.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="373.39,452.72 374.48,452.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="374.48,452.72 374.48,446.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="374.48,446.79 359.08,446.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.23,449.12 372.23,444.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.23,455.1 372.23,450.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="360.28,443.76 360.83,443.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.28,443.2 360.83,443.2" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.83,443.2 360.83,443.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.28,443.2 360.28,443.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.28,455.57 360.28,456.13" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.83,455.57 360.83,456.13" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.28,455.57 360.83,455.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.28,456.13 360.83,456.13" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.42,456.15 353.42,456.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.25,456.15 360.25,456.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.02,456.44 353.65,456.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.02,456.64 353.65,456.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.65,456.17 353.42,456.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.42,456.17 353.42,456.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.42,456.87 353.65,456.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.65,456.87 353.65,456.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.25,456.17 360.02,456.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.02,456.17 360.02,456.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.02,456.87 360.25,456.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.25,456.87 360.25,456.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="360.25,456.87 380.44,456.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.42,456.17 353.42,455.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.42,455.94 352.72,455.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.72,455.94 352.72,456.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.72,456.17 353.42,456.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.42,449.57 353.42,449.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.42,449.34 352.72,449.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.72,449.34 352.72,449.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.72,449.57 353.42,449.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.14,455.94 353.14,449.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.95,455.94 352.95,449.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.44,456.17 352.72,456.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.72,456.17 352.72,456.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.42,456.17 353.42,456.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.38,438.49 363.46,438.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.79,438.49 399.05,438.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.57,438.49 434.65,438.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.16,438.49 470.24,438.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.37,253.26 504.37,250.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,223.3 503.82,225.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,196.49 503.82,198.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,196.49 327.8,198.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.68,162.3 398.68,162.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.98,162.3 397.98,162.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.68,162.3 397.98,162.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.68,162.99 397.98,162.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="373.15,162.93 372.46,162.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="373.15,162.24 372.46,162.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="372.46,162.24 372.46,162.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="373.15,162.24 373.15,162.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="373.24,150.05 373.24,150.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="372.54,150.05 372.54,150.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="373.24,150.74 372.54,150.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.68,157.8 375.68,158.46 375.73,158.66 375.83,158.72 375.98,158.72 376.08,158.66 376.22,158.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="376.22,157.8 376.22,158.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="376.62,157.8 376.62,159.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="376.62,158 376.72,157.86 376.82,157.8 376.97,157.8 377.07,157.86 377.17,158 377.22,158.19 377.22,158.33 377.17,158.52 377.07,158.66 376.97,158.72 376.82,158.72 376.72,158.66 376.62,158.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="394.31,153.67 388.34,153.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M389.14 152.61L388.88 152.61 388.35 153.67 388.62 153.67 389.14 152.61Z" fill-rule="evenodd" fill="blue"/>
+<path d="M389.14 154.72L388.88 154.72 388.35 153.67 388.62 153.67 389.14 154.72Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="389.14,154.72 388.88,154.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="389.14,154.72 388.62,153.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="388.35,153.67 388.88,152.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="388.88,154.72 388.35,153.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="394.31,159.54 377.83,159.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="394.31,153.67 394.31,159.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="399.37,149.27 377.77,149.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.68,149.97 377.77,149.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="391.95,151.05 391.95,150.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.86,162.16 391.86,162.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="386.99,156.09 386.99,153.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="388.15,156.09 388.15,151.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="389.3,156.09 389.3,151.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="380.06,162.16 380.06,157.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="381.21,162.16 381.21,157.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="382.37,162.16 382.37,157.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="383.52,162.16 383.52,157.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="384.68,162.16 384.68,157.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.84,162.16 385.84,157.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="386.99,162.16 386.99,157.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="388.15,162.16 388.15,157.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="389.3,162.16 389.3,157.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.35,156.09 378.35,157.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.92,162.16 378.92,157.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.5,162.33 391.86,162.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.33,162.16 391.86,162.16" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="387.62,150.87 391.95,150.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="387.73,151.05 391.95,151.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.77,156.98 391.77,156.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.44,156.09 390.44,151.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.52,156.98 391.77,156.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.44,162.16 390.44,157.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.25,156.26 391.77,156.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.33,156.09 391.93,156.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.35,157.15 391.93,157.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.93,157.15 391.93,156.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="371.65,163.26 371.65,155.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.34,163.72 372.34,155.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="373.26,163.72 373.26,150.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.68,163.72 398.68,149.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.37,163.26 399.37,149.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.77,162.92 379.22,162.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="379.77,162.37 379.22,162.37" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="379.22,162.37 379.22,162.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="379.77,162.37 379.77,162.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.57,150.74 397.88,150.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.57,150.05 397.88,150.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.88,150.05 397.88,150.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.57,150.05 398.57,150.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="379.49,162.92 397.79,162.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.77,162.92 378.65,162.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.33,162.16 378.33,163.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.5,162.33 378.5,163.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.58,156.09 391.58,151.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.58,162.16 391.58,157.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="380.09,156.09 380.09,151.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="381.23,156.09 381.23,151.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="386.33,151.05 378.35,151.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="386.41,150.87 378.35,150.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="382.36,156.09 382.36,151.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="383.52,156.09 383.52,151.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.35,151.05 378.35,150.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="384.67,154.7 384.67,153.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="384.01,156.09 378.35,156.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.52,156.26 378.52,156.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="384.67,153.38 384.67,151.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="383.92,156.28 384.96,154.1 384.4,153.39 386.21,153.35 385.66,152.64 386.5,150.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.25,156.26 386.08,154.5 385.53,153.79 387.34,153.76 386.78,153.04 387.82,150.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.84,156.09 385.84,155.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.84,154.18 385.84,153.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.83,153.38 385.83,153.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.83,153.24 385.83,152.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="397.79,150.86 373.26,150.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.79,162.92 397.79,150.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="391.95,150.87 387.82,150.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="384.01,156.26 378.52,156.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="386.5,150.87 378.35,150.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.83,152.27 385.83,151.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.65,162.92 378.65,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="373.44,163.72 372.11,163.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="373.44,165.22 363.46,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.06,163.72 378.06,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="373.44,163.72 373.44,165.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="373.67,164.53 373.67,160.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.83,164.53 377.69,163.43 377.26,162.41 376.57,161.54 375.68,160.89 374.65,160.49 373.55,160.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.8,164.53 373.8,160.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.8,164.53 373.8,164.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.67,164.53 373.8,164.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.83,165.22 378.06,165.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="378.06,165.22 378.06,164.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="378.06,164.53 377.83,164.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.83,164.53 377.83,165.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.44,165.22 373.67,165.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.67,165.22 373.67,164.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.67,164.53 373.44,164.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.44,164.53 373.44,165.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.65,149.97 371.65,149.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.34,149.97 372.34,149.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="371.65,149.97 372.34,149.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="371.65,155.4 372.34,155.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.07,155.17 372.07,150.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.92,155.17 371.92,150.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="372.34,150.2 372.34,149.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="372.34,149.97 371.65,149.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.65,149.97 371.65,150.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.65,150.2 372.34,150.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="372.34,155.4 372.34,155.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="372.34,155.17 371.65,155.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.65,155.17 371.65,155.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="371.65,155.4 372.34,155.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="372.34,149.97 371.65,149.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.34,149.27 371.65,149.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="377.77,149.97 377.77,149.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.34,149.97 372.34,149.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.57,149.7 377.54,149.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="372.57,149.54 377.54,149.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.54,149.97 377.77,149.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.77,149.97 377.77,149.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.77,149.27 377.54,149.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.54,149.27 377.54,149.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="372.34,149.97 372.57,149.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="372.57,149.97 372.57,149.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="372.57,149.27 372.34,149.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="372.34,149.27 372.34,149.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="372.54,150.05 373.24,150.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="382.84,154.72 383.37,153.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="383.37,153.67 382.84,152.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="382.57,154.72 383.1,153.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="382.57,154.72 382.84,154.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M382.57 154.72L382.84 154.72 383.37 153.67 383.1 153.67 382.57 154.72Z" fill-rule="evenodd" fill="blue"/>
+<path d="M382.57 152.61L382.84 152.61 383.37 153.67 383.1 153.67 382.57 152.61Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="379.02,153.67 383.38,153.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="510.64,349.61 510.64,350.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="510.64,350.27 510.54,350.13 510.44,350.07 510.29,350.07 510.19,350.13 510.09,350.27 510.04,350.46 510.04,350.6 510.09,350.79 510.19,350.93 510.29,350.99 510.44,350.99 510.54,350.93 510.64,350.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="510.99,350.99 510.99,350.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="510.99,350.33 511.13,350.13 511.23,350.07 511.38,350.07 511.48,350.13 511.53,350.33 511.53,350.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="511.98,350.86 511.93,350.93 511.98,350.99 512.03,350.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="537.01,333.92 537.01,335.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="537.01,334.58 536.91,334.45 536.81,334.39 536.66,334.39 536.56,334.45 536.46,334.58 536.41,334.78 536.41,334.91 536.46,335.11 536.56,335.24 536.66,335.31 536.81,335.31 536.91,335.24 537.01,335.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="537.35,335.31 537.35,334.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="537.35,334.65 537.5,334.45 537.6,334.39 537.75,334.39 537.85,334.45 537.9,334.65 537.9,335.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="538.34,335.18 538.29,335.24 538.34,335.31 538.39,335.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="538.81,274.68 538.81,273.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="538.81,273.89 538.89,273.59 539.04,273.39 539.19,273.3 539.41,273.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="540.67,273.3 540.67,274.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="540.67,273.59 540.52,273.39 540.38,273.3 540.15,273.3 540,273.39 539.86,273.59 539.78,273.89 539.78,274.09 539.86,274.38 540,274.58 540.15,274.68 540.38,274.68 540.52,274.58 540.67,274.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="541.19,274.68 541.19,273.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="541.19,273.69 541.42,273.39 541.56,273.3 541.79,273.3 541.94,273.39 542.01,273.69 542.01,274.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="542.01,273.69 542.23,273.39 542.38,273.3 542.6,273.3 542.75,273.39 542.83,273.69 542.83,274.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="543.42,273.3 543.42,275.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="543.42,273.59 543.57,273.39 543.72,273.3 543.94,273.3 544.09,273.39 544.24,273.59 544.31,273.89 544.31,274.09 544.24,274.38 544.09,274.58 543.94,274.68 543.72,274.68 543.57,274.58 543.42,274.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="546.24,273.3 546.24,274.29 546.32,274.58 546.47,274.68 546.69,274.68 546.84,274.58 547.06,274.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="547.06,273.3 547.06,274.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="547.66,273.3 547.66,275.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="547.66,273.59 547.8,273.39 547.95,273.3 548.18,273.3 548.32,273.39 548.47,273.59 548.55,273.89 548.55,274.09 548.47,274.38 548.32,274.58 548.18,274.68 547.95,274.68 547.8,274.58 547.66,274.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.45,446.92 357.45,448.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.45,447.58 357.35,447.44 357.25,447.38 357.1,447.38 357,447.44 356.9,447.58 356.85,447.77 356.85,447.91 356.9,448.1 357,448.24 357.1,448.3 357.25,448.3 357.35,448.24 357.45,448.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.8,448.3 357.8,447.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.8,447.64 357.94,447.44 358.04,447.38 358.19,447.38 358.29,447.44 358.34,447.64 358.34,448.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="358.79,448.17 358.74,448.24 358.79,448.3 358.84,448.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="356.89,452.24 356.89,452.9 356.94,453.1 357.04,453.16 357.19,453.16 357.29,453.1 357.44,452.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.44,452.24 357.44,453.16" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.83,452.24 357.83,453.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.83,452.44 357.93,452.3 358.03,452.24 358.18,452.24 358.28,452.3 358.38,452.44 358.43,452.63 358.43,452.77 358.38,452.96 358.28,453.1 358.18,453.16 358.03,453.16 357.93,453.1 357.83,452.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.28,451.56 362.81,452.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.81,452.62 362.28,453.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.02,451.56 362.54,452.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.54,452.62 362.02,453.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.02,451.56 362.28,451.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.02,453.67 362.28,453.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M362.02 451.56L362.28 451.56 362.81 452.62 362.54 452.62 362.02 451.56Z" fill-rule="evenodd" fill="blue"/>
+<path d="M362.02 453.67L362.28 453.67 362.81 452.62 362.54 452.62 362.02 453.67Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="359.15,452.62 362.82,452.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268,334.89 268,335.88 268.05,336.08 268.15,336.21 268.3,336.28 268.4,336.28 268.55,336.21 268.65,336.08 268.7,335.88 268.7,334.89" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="269.09,336.28 269.09,334.89 269.54,334.89 269.69,334.96 269.74,335.02 269.79,335.16 269.79,335.35 269.74,335.49 269.69,335.55 269.54,335.62 269.09,335.62" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="373.94,165.01 374,164.83 374.06,164.43 374.57,166.36" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="375.31,163.75 375.22,163.61 375.08,163.51 374.97,163.51 374.8,163.68 374.73,163.86 374.7,164.13 374.7,164.36 374.73,164.68 374.86,165.14 374.97,165.37 375.07,165.51 375.2,165.61 375.31,165.61 375.49,165.44 375.55,165.26 375.59,164.99 375.58,164.76" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="375.55,163.4 375.61,163.22 375.67,162.81 376.19,164.74" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="376.24,162.24 376.72,161.76 376.65,162.76 376.78,162.63 376.9,162.63 376.96,162.68 377.08,162.91 377.13,163.1 377.16,163.42 377.12,163.69 377.02,163.91 376.89,164.04 376.73,164.08 376.66,164.03 376.57,163.89" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="476.84,175.76 476.9,175.58 476.96,175.17 477.48,177.1" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="478.22,174.5 478.13,174.36 477.99,174.26 477.88,174.25 477.7,174.43 477.64,174.61 477.6,174.88 477.61,175.11 477.64,175.43 477.76,175.89 477.88,176.12 477.97,176.26 478.11,176.35 478.22,176.36 478.39,176.18 478.46,176 478.49,175.73 478.49,175.51" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="478.46,174.14 478.52,173.96 478.58,173.56 479.09,175.48" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="479.58,172.55 479.14,172.99 479.32,173.86 479.34,173.72 479.45,173.5 479.58,173.37 479.73,173.33 479.87,173.43 479.99,173.66 480.04,173.84 480.07,174.16 480.03,174.43 479.92,174.65 479.79,174.79 479.64,174.83 479.57,174.78 479.47,174.64" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="536.63,318.34 536.11,316.41 536.68,315.84" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="536.35,317.33 536.7,316.98" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="536.63,318.34 537.19,317.77" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="537.04,315.94 537.1,315.77 537.16,315.36 537.67,317.29" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="537.86,314.66 537.75,314.88 537.75,315.11 537.8,315.29 537.9,315.43 538.01,315.44 538.21,315.36 538.36,315.32 538.5,315.41 538.59,315.55 538.67,315.83 538.67,316.06 538.65,316.19 538.55,316.41 538.37,316.59 538.22,316.63 538.15,316.58 538.05,316.44 537.98,316.16 537.98,315.94 538.01,315.67 538.12,315.44 538.27,315.18 538.33,315 538.33,314.77 538.28,314.59 538.19,314.45 538.03,314.49 537.86,314.66" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="541.43,318.6 539.23,318.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="549.42,319.46 541.09,319.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="549.42,318.6 549.42,319.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.43,319.4 539.23,319.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.43,318.6 541.43,319.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="541.66,318.86 549.18,318.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="541.66,318.8 549.18,318.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="549.18,319.26 549.42,319.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="549.42,319.26 549.42,318.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="549.42,318.8 549.18,318.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="549.18,318.8 549.18,319.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="541.43,319.26 541.66,319.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="541.66,319.26 541.66,318.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="541.66,318.8 541.43,318.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="541.43,318.8 541.43,319.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="544.1,318.07 543.58,316.15 544.15,315.58" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="543.83,317.06 544.18,316.71" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="544.1,318.07 544.67,317.51" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="544.51,315.68 544.57,315.5 544.63,315.1 545.15,317.03" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="545.85,314.69 545.88,315.01 545.84,315.28 545.74,315.51 545.69,315.55 545.54,315.59 545.4,315.49 545.28,315.26 545.26,315.17 545.23,314.85 545.27,314.58 545.37,314.36 545.42,314.31 545.57,314.27 545.71,314.37 545.85,314.69 545.98,315.15 546.05,315.65 546.04,316.02 545.93,316.24 545.85,316.33 545.69,316.37 545.6,316.23" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="355.54,442.93 355.6,442.75 355.66,442.35 356.18,444.28" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="356.92,441.67 356.82,441.53 356.69,441.44 356.58,441.43 356.4,441.61 356.34,441.79 356.3,442.06 356.31,442.28 356.34,442.6 356.46,443.06 356.58,443.29 356.67,443.43 356.81,443.53 356.92,443.53 357.09,443.36 357.16,443.18 357.19,442.91 357.19,442.68" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="357.22,441.37 357.2,441.27 357.19,441.05 357.21,440.91 357.28,440.73 357.45,440.56 357.56,440.56 357.63,440.61 357.72,440.75 357.77,440.93 357.78,441.16 357.76,441.52 357.57,442.88 358.18,442.27" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="357.93,440.08 358.54,439.47 358.62,441.83" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="304.98,311.55 305.04,311.37 305.1,310.96 305.61,312.89" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="305.87,311.58 306.66,310.8" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="306.81,309.71 306.87,309.54 306.93,309.13 307.45,311.06" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="307.67,308.39 307.57,308.61 307.55,308.97 307.63,309.48 307.71,309.75 307.87,310.17 308.03,310.35 308.19,310.32 308.28,310.23 308.38,310.01 308.4,309.64 308.32,309.14 308.24,308.86 308.08,308.45 307.91,308.26 307.76,308.3 307.67,308.39" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="308.58,308.88 309.36,308.09" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="309.94,308.57 309.42,306.64 310.55,307.96 310.03,306.03" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="310.38,305.68 311.11,307.39 310.82,305.24 311.55,306.95 311.25,304.81" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="311.53,305 311.59,304.82 311.65,304.41 312.16,306.34" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="534.65,359.04 534.65,358.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,358.81 533.95,358.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,358.81 533.95,359.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,359.04 534.65,359.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,358.81 534.21,358.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.39,358.81 534.39,358.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,346.04 534.65,345.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,345.81 533.96,345.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.96,345.81 533.96,346.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.96,346.04 534.65,346.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,352.1 534.65,351.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,351.87 533.96,351.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.96,351.87 533.96,352.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.96,352.1 534.65,352.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,346.04 534.21,351.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.39,346.04 534.39,351.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.56,360.19 505.78,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.55,345.81 534.88,345.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.55,344.88 533.2,344.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.55,345.81 511.55,344.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.59,345.81 506.59,344.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.82,344.88 506.82,340.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.32,344.88 511.16,343.69 510.7,342.59 509.96,341.65 508.99,340.93 507.87,340.5 506.68,340.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.96,344.88 506.96,340.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.96,344.88 506.96,344.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.82,344.88 506.96,344.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.32,345.81 511.55,345.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.55,345.81 511.55,344.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.55,344.88 511.32,344.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.32,344.88 511.32,345.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.59,345.81 506.82,345.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.82,345.81 506.82,344.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.82,344.88 506.59,344.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.59,344.88 506.59,345.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.63,332.46 528.06,332.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.52,319.4 523.26,326.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.26,319.4 526.52,326.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.44,332.46 523.26,332.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.06,332.46 528.06,333.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.44,332.46 523.44,333.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.67,332.46 523.67,328.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.83,332.46 527.68,331.36 527.25,330.34 526.57,329.47 525.68,328.81 524.64,328.41 523.54,328.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.8,332.46 523.8,328.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.8,332.46 523.8,332.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.67,332.46 523.8,332.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.83,333.38 528.06,333.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="528.06,333.38 528.06,332.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="528.06,332.46 527.83,332.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.83,332.46 527.83,333.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.44,333.38 523.67,333.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.67,333.38 523.67,332.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.67,332.46 523.44,332.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.44,332.46 523.44,333.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,298.48 472.61,298.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.61,302.47 472.61,298.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.91,302.47 472.61,302.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.15,298.94 468.68,302" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.68,298.94 472.15,302" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,279.04 533.94,279.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,278.52 533.94,278.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.2,278.52 533.2,272.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.75,259.8 328.64,259.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.4,260.03 328.4,261.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.4,261.91 330.98,261.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.98,261.91 330.98,260.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.57,260.09 328.81,260.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.81,261.38 330.57,261.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.69,261.27 330.69,260.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.69,260.21 328.69,261.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.69,260.21 330.66,260.13 330.57,260.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.81,260.09 328.73,260.13 328.69,260.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.69,261.27 328.73,261.35 328.81,261.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.57,261.38 330.66,261.35 330.69,261.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.98,260.03 330.92,259.87 330.75,259.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.64,259.8 328.47,259.87 328.4,260.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.07,265.14 329.07,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.53,265.14 329.07,265.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.61,264.67 328.61,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.53,264.67 328.61,264.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.53,264.67 326.53,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.07,262.83 332.52,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.61,262.83 326.53,264.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.81,296.34 341.81,295.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.74,296.34 342.74,295.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.81,296.34 342.74,296.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.81,304.2 342.74,304.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.74,296.57 346.44,296.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.74,300.27 343.9,300.08 344.95,299.54 345.77,298.69 346.28,297.63 346.44,296.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.74,296.69 346.43,296.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.74,296.69 342.74,296.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.74,296.57 342.74,296.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.74,303.97 342.74,303.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.74,303.85 342.74,303.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.74,303.85 346.43,303.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="346.44,304.08 346.28,302.91 345.77,301.85 344.95,301 343.9,300.46 342.74,300.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.74,303.97 346.44,303.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="341.81,303.97 341.81,304.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="341.81,304.2 342.74,304.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.74,304.2 342.74,303.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.74,303.97 341.81,303.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="341.81,296.34 341.81,296.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="341.81,296.57 342.74,296.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.74,296.57 342.74,296.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.74,296.34 341.81,296.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.24,327.06 271.55,327.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.55,324.75 271.55,327.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.24,324.8 269.24,324.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.2,341.71 271.2,340.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.2,341.71 268.2,341.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.2,340.44 268.2,340.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.2,341.71 268.2,340.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.43,365.51 533.43,360.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.43,366.32 533.43,378.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.43,379.73 533.43,385.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.43,386.26 533.43,392.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.43,366.32 533.43,365.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.43,378.92 533.43,379.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.43,393.13 533.43,392.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.43,393.13 533.43,399.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.41,432.52 533.43,438.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.51,438.58 513.99,438.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="514.8,438.58 527.39,438.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.99,438.58 514.8,438.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="527.39,438.58 528.2,438.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.2,438.58 533.43,438.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.51,438.58 503.76,438.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.53,262.83 328.61,264.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="376.73,152.79 376.73,154.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="376.73,153.45 376.63,153.32 376.53,153.25 376.38,153.25 376.29,153.32 376.19,153.45 376.14,153.65 376.14,153.78 376.19,153.98 376.29,154.11 376.38,154.17 376.53,154.17 376.63,154.11 376.73,153.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="377.08,154.17 377.08,153.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="377.08,153.51 377.23,153.32 377.33,153.25 377.47,153.25 377.57,153.32 377.62,153.51 377.62,154.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.07,154.04 378.02,154.11 378.07,154.17 378.12,154.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="513.9,251.64 507.86,251.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="520.92,251.64 514.88,251.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="527.31,251.64 521.27,251.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.33,251.64 528.29,251.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,252.13 534.82,258.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,259.16 534.82,265.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,265.54 534.82,271.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.51,251.29 507.86,251.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="520.92,251.29 521.27,251.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,272.56 534.82,278.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,278.95 534.82,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,278.6 535.17,278.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,292.01 535.17,292.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,285.97 534.82,292.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,292.35 534.82,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,299.37 534.82,305.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,305.76 534.82,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,312.78 534.82,318.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,318.6 522.34,318.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,319.17 534.82,325.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,318.82 535.17,319.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,319.4 523.26,319.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,326.19 534.82,332.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,345.81 534.82,352.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,352.91 534.65,353" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,359.38 534.82,365.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,366.41 534.82,372.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,372.79 534.82,378.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,379.81 534.82,385.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,359.04 535.17,359.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,372.44 535.17,372.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,385.85 535.17,386.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,386.2 534.82,392.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,393.22 534.82,399.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.23,399.26 535.23,399.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,412.66 535.17,413.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,399.6 534.82,405.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,406.62 534.82,412.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,433.57 534.82,439.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.33,439.97 528.29,439.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="527.31,439.97 521.27,439.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,439.48 535.17,439.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.67,440.31 534.33,440.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="520.92,439.97 514.88,439.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="513.9,439.97 507.86,439.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="521.27,440.31 520.92,440.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.44,441.44 495.57,441.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.9,441.73 503.44,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.69,441.73 506.16,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.9,441.27 505.69,441.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.77,441.44 478.9,441.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="495.11,441.44 487.23,441.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.77,441.73 487.23,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="495.11,441.73 495.57,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.43,441.44 470.56,441.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.43,441.73 478.9,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.1,441.73 470.56,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.31,441.73 467.85,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.31,441.27 470.1,441.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="467.85,441.44 459.97,441.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.51,441.44 451.64,441.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.51,441.73 459.97,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.25,441.44 424.38,441.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.71,441.73 432.25,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.5,441.73 434.97,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="442.84,441.44 434.97,441.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.17,441.44 443.3,441.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.71,441.27 434.5,441.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="423.91,441.44 416.04,441.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="423.91,441.73 424.38,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.58,441.73 416.04,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.24,441.73 407.7,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.58,441.44 407.7,441.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.24,441.44 399.37,441.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.91,441.73 399.37,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.12,441.73 396.65,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.65,441.44 388.78,441.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.12,441.27 398.91,441.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.32,441.44 380.44,441.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.32,441.73 388.78,441.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.52,442.55 363.31,442.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.72,443.01 353.18,443.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.8,259.16 296.8,265.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.8,265.54 296.8,271.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.45,265.19 296.45,265.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.29,251.64 303.33,251.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.8,252.13 296.8,258.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.45,252.13 296.45,251.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.94,251.3 297.29,251.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.31,251.64 310.35,251.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.7,251.64 316.74,251.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.7,251.3 310.35,251.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.1,251.3 323.76,251.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="495.8,441.04 500.44,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.8,440.81 500.44,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.67,440.81 503.21,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.67,441.04 503.21,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.44,440.57 500.67,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.67,440.57 500.67,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.67,441.27 500.44,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.44,441.27 500.44,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.21,440.57 503.44,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.44,440.57 503.44,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.44,441.27 503.21,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.21,441.27 503.21,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.57,440.57 495.8,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.8,440.57 495.8,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.8,441.27 495.57,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.57,441.27 495.57,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.43,440.57 478.2,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.2,440.57 478.2,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.2,441.27 478.43,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.43,441.27 478.43,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.79,440.57 470.56,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.56,440.57 470.56,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.56,441.27 470.79,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.79,441.27 470.79,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="473.57,440.57 473.33,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="473.33,440.57 473.33,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="473.33,441.27 473.57,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="473.57,441.27 473.57,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="473.33,441.04 470.79,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="473.33,440.81 470.79,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.2,440.81 473.57,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.2,441.04 473.57,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.2,441.04 464.84,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.2,440.81 464.84,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="465.07,440.81 467.61,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="465.07,441.04 467.61,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.84,440.57 465.07,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="465.07,440.57 465.07,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="465.07,441.27 464.84,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.84,441.27 464.84,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.61,440.57 467.85,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.85,440.57 467.85,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.85,441.27 467.61,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.61,441.27 467.61,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.97,440.57 460.2,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.2,440.57 460.2,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.2,441.27 459.97,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.97,441.27 459.97,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.84,440.57 442.61,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.61,440.57 442.61,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.61,441.27 442.84,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.84,441.27 442.84,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="435.2,440.57 434.97,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.97,440.57 434.97,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.97,441.27 435.2,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="435.2,441.27 435.2,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.97,440.57 437.74,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.74,440.57 437.74,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.74,441.27 437.97,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.97,441.27 437.97,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.74,441.04 435.2,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.74,440.81 435.2,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.61,440.81 437.97,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.61,441.04 437.97,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.61,441.04 429.24,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.61,440.81 429.24,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.48,440.81 432.02,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.48,441.04 432.02,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.24,440.57 429.48,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.48,440.57 429.48,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.48,441.27 429.24,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.24,441.27 429.24,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.02,440.57 432.25,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.25,440.57 432.25,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.25,441.27 432.02,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.02,441.27 432.02,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.38,440.57 424.61,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.61,440.57 424.61,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.61,441.27 424.38,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.38,441.27 424.38,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.24,440.57 407.01,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.01,440.57 407.01,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.01,441.27 407.24,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.24,441.27 407.24,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.6,440.57 399.37,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.37,440.57 399.37,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.37,441.27 399.6,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.6,441.27 399.6,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="402.37,440.57 402.14,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="402.14,440.57 402.14,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="402.14,441.27 402.37,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="402.37,441.27 402.37,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="402.14,441.04 399.6,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="402.14,440.81 399.6,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.01,440.81 402.37,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.01,441.04 402.37,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.01,441.04 393.65,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.01,440.81 393.65,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.88,440.81 396.42,440.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.88,441.04 396.42,441.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.65,440.57 393.88,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.88,440.57 393.88,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.88,441.27 393.65,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.65,441.27 393.65,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.42,440.57 396.65,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.65,440.57 396.65,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.65,441.27 396.42,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.42,441.27 396.42,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.78,440.57 389.01,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.01,440.57 389.01,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.01,441.27 388.78,441.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="388.78,441.27 388.78,440.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.22,250.98 468.22,252.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.22,242.43 466.05,245.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="461.86,242.43 463.98,245.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.2,357.82 533.69,355.89 534.25,355.32" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="533.93,356.81 534.28,356.46" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="534.2,357.82 534.77,357.25" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="534.68,355.48 534.66,355.39 534.65,355.16 534.67,355.02 534.73,354.84 534.91,354.67 535.02,354.67 535.09,354.72 535.18,354.86 535.23,355.05 535.24,355.27 535.22,355.64 535.03,356.99 535.64,356.38" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="535.65,353.93 535.54,354.15 535.53,354.51 535.61,355.02 535.68,355.29 535.85,355.71 536.01,355.89 536.17,355.86 536.26,355.77 536.36,355.55 536.38,355.18 536.3,354.68 536.22,354.4 536.06,353.99 535.89,353.8 535.74,353.84 535.65,353.93" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="468.16,358.17 470.24,358.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.24,358.17 470.24,360.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.16,358.17 468.16,360.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.16,360.25 470.24,360.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<path d="M536.5 331.43L536.5 331.17 537.56 330.64 537.56 330.9 536.5 331.43Z" fill-rule="evenodd" fill="blue"/>
+<path d="M538.62 331.43L538.62 331.17 537.56 330.64 537.56 330.9 538.62 331.43Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="537.56,333.13 537.56,330.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="466.36,247.99 468.22,250.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.77,247.92 461.86,250.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.7,389.34 310.7,390.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.54,387.87 310.69,387.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,386.52 310.05,381.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.7,390.15 312.31,390.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.7,389.34 312.31,389.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.56,389.34 310.87,389.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.31,389.34 312.31,390.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.31,384.81 312.31,389.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.7,390.15 311.07,390.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.15,384.81 311.15,381.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.15,381.4 310.05,381.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.15,381.74 310.05,381.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.15,378.05 311.15,375.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.15,375.45 304.97,375.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.97,375.45 304.97,374.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.97,374.97 299.11,374.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.11,374.97 299.11,375.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.11,375.45 297.29,375.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,378.05 310.05,376.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,376.54 297.68,376.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.3,383.03 300.3,386.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.3,386.52 309.98,386.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,278.49 327.8,279.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.04,344.45 254.2,344.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="249.06,341.85 277.01,341.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="249.06,342.08 276.78,342.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="249.06,347.28 271.11,347.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="249.06,347.05 271.11,347.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="249.06,347.74 269.93,347.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.2,341.39 249.06,341.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="249.06,346.59 271.04,346.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.4,342.54 249.06,342.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.24,325.67 261.49,325.67" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="269.24,324.75 262.42,324.75" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="246.12,337.89 246.12,292.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="262.36,325.67 262.36,341.39" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="263.58,325.67 263.58,341.39" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="264.79,325.67 264.79,341.39" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="246.12,337.89 246.12,338.48 248.7,339.77 243.54,342.36 246.12,343.65 246.12,355.28" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="249.06,341.39 249.06,347.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="254.2,344.45 255.43,345.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="254.2,344.45 255.43,343.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="261.49,319.17 261.49,325.67" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="266,325.67 266,341.39" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="310.7,389.26 310.69,387.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.31,384.81 312.31,389.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.31,389.34 312.31,390.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.7,389.34 310.7,390.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.56,389.34 310.87,389.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.7,390.15 311.07,390.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.7,390.15 312.31,390.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.7,389.34 312.31,389.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.97,374.97 299.11,374.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.54,387.87 310.69,387.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,376.54 297.68,376.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.3,386.52 310.05,386.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.3,383.03 300.3,386.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.11,374.97 299.11,375.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.11,375.45 297.29,375.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.15,384.81 311.15,381.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.31,384.81 311.15,384.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.15,375.45 304.97,375.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.97,375.45 304.97,374.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.15,381.74 310.05,381.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.15,378.05 311.15,375.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.05,378.05 310.05,376.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="274.61,367.97 274.61,353.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.01,369.96 277.01,341.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,369.96 276.78,342.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="272.36,369.96 272.36,347.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.98,369.96 271.98,347.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.75,347.92 271.75,369.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.38,369.96 277.38,341.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.4,369.96 276.4,342.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.38,369.96 276.4,369.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="272.36,369.96 271.2,369.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.4,369.96 272.36,369.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.12,369.96 276.89,369.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.38,341.39 271.2,341.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="272.36,347.92 271.04,346.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.75,347.92 271.11,347.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.98,347.92 271.11,347.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.61,353.66 275.83,354.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.61,353.66 273.38,354.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.2,341.71 268.2,341.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.2,340.44 268.2,340.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.2,341.71 268.2,340.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.2,341.71 271.2,340.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.24,324.75 271.55,324.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.24,327.06 271.55,327.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.24,324.75 269.24,327.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.24,324.8 269.24,324.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.55,324.75 271.55,327.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,420.2 535.34,419.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,433.57 535.34,432.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="489.3,421.88 489.16,420.82 488.75,419.83 488.1,418.98 487.25,418.33 486.26,417.92 485.2,417.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.53,421.88 489.53,422.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.53,422.42 489.3,422.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.3,422.42 489.3,421.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.3,421.88 489.53,421.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.2,421.88 485.2,417.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.2,417.78 485.4,417.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.4,417.78 485.4,421.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.4,421.88 485.2,421.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.97,422.42 484.97,421.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.97,421.88 485.2,421.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.2,421.88 485.2,422.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.2,422.42 484.97,422.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.6,387.06 532.59,387.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.6,385.04 530.6,387.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.74,385.09 503.74,387.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.71,385.09 505.71,387.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.74,387.06 505.71,387.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.74,385.09 505.71,385.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.6,411.95 532.54,411.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.6,413.92 532.54,413.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.6,411.95 530.6,413.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="532.57,435.91 532.57,437.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,437.88 532.57,437.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,435.91 532.57,435.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,435.91 530.02,437.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.51,385.09 314.51,387.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.54,384.86 312.54,387.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.54,387.64 314.51,387.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="532.57,437.88 532.57,435.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.6,385.09 503.74,385.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.51,384.86 314.51,387.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.6,385.79 505.71,385.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.54,384.86 314.51,384.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.74,385.09 500.79,385.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.74,385.61 500.79,385.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.71,413.91 505.71,420.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.25,413.91 505.25,419.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.73,413.91 504.73,419.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.28,413.92 503.28,419.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.65,373.74 490.65,385.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.13,373.74 490.13,385.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.16,385.61 490.13,385.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.16,385.09 490.65,385.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.79,385.61 500.79,385.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.16,385.61 496.16,385.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.73,413.91 503.28,419.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.28,413.91 504.73,419.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.41,432.52 535.34,432.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,433.57 533.41,433.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.41,420.2 535.34,420.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.34,419.15 533.41,419.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.71,413.91 505.71,420.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.25,413.91 505.25,419.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.73,413.91 504.73,419.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.28,413.91 503.28,419.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.82,411.95 502.82,420.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.73,413.91 503.28,419.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.28,413.91 504.73,419.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.09,385.1 470.05,385.1 470.05,387.06 468.09,387.06 468.09,385.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.43,385.1 434.39,385.1 434.39,387.06 432.43,387.06 432.43,385.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.79,385.1 398.75,385.1 398.75,387.06 396.79,387.06 396.79,385.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.14,385.1 363.1,385.1 363.1,387.06 361.14,387.06 361.14,385.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.49,385.1 327.44,385.1 327.44,387.06 325.49,387.06 325.49,385.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.09,411.95 470.05,411.95 470.05,413.91 468.09,413.91 468.09,411.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="433.7,411.95 435.32,411.95 435.32,413.91 433.7,413.91 433.7,411.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="396.79,411.95 398.75,411.95 398.75,413.91 396.79,413.91 396.79,411.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.14,411.95 363.1,411.95 363.1,413.91 361.14,413.91 361.14,411.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.49,411.95 327.44,411.95 327.44,413.91 325.49,413.91 325.49,411.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.82,411.95 505.71,411.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.71,411.95 505.71,413.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.71,413.91 502.82,413.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.75,413.91 503.75,411.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.62,433.8 534.62,433.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.62,433.57 533.93,433.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.93,433.57 533.93,433.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.93,433.8 534.62,433.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.54,381.5 512.48,381.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.83,381.79 510.56,381.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="510.56,381.5 530.54,381.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.59,374.56 523.59,381.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="522.32,374.56 522.32,381.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="521.05,374.56 521.05,381.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="519.77,374.56 519.77,381.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="518.5,374.56 518.5,381.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="517.23,374.56 517.23,381.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="515.95,374.56 515.95,381.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="514.68,374.56 514.68,381.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="513.41,374.56 513.41,381.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="512.13,374.56 512.13,381.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="510.56,381.5 510.56,381.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="534.62,419.15 534.62,418.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.62,418.92 533.93,418.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.93,418.92 533.93,419.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.93,419.15 534.62,419.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.89,381.79 512.89,385.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="512.6,381.79 512.6,385.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.54,373.83 530.54,381.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.83,381.79 530.83,373.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="510.86,374.56 510.86,381.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="496.39,385.09 496.39,385.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.39,385.27 500.56,385.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.56,385.27 500.56,385.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.56,385.09 496.39,385.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.56,385.61 500.79,385.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.79,385.61 500.79,385.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.79,385.09 500.56,385.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.56,385.09 500.56,385.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.16,385.61 496.39,385.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.39,385.61 496.39,385.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.39,385.09 496.16,385.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.16,385.09 496.16,385.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.93,407.66 414.93,391.11" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="415.48,407.66 415.48,391.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="415.48,391.39 415.48,391.11" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.75,407.66 414.93,407.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.75,408.21 417.43,408.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="524.39,417.78 524.39,421.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="524.94,417.78 524.94,422.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.24,360.2 470.61,360.2" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="479.27,360.2 484.11,360.2" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.24,359.66 470.61,359.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="479.27,359.66 484.11,359.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.61,359.66 470.61,360.2" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="479.27,359.66 479.27,360.2" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="479.27,359.66 479.05,359.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.05,359.66 479.05,360.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.05,360.2 479.27,360.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.27,360.2 479.27,359.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.61,359.66 470.61,360.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.61,360.2 470.84,360.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.84,360.2 470.84,359.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.84,359.66 470.61,359.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.05,385.64 490.13,385.64" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="432.43,385.1 434.39,385.1 434.39,387.06 432.43,387.06 432.43,385.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="436.87,385.8 449.17,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="449.17,386.35 436.87,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="436.64,386.35 436.87,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="436.87,385.8 436.64,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.98,385.8 432.2,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.2,386.35 398.98,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.2,386.35 432.43,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.43,386.35 432.43,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.43,385.8 432.2,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.2,385.8 432.2,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.75,386.35 398.98,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.98,386.35 398.98,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.98,385.8 398.75,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.75,385.8 398.75,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.2,318.47 362.66,318.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.75,318.47 362.75,318.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.66,318.92 362.2,318.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.2,318.92 362.2,318.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.75,318.7 375.92,318.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.66,318.47 375.92,318.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.92,318.92 362.66,318.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.92,318.47 376.37,318.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.37,318.47 376.37,318.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.37,318.92 375.92,318.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.92,318.92 375.92,318.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.98,386.08 402.55,386.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="402.78,386.08 406.25,386.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.47,386.08 409.94,386.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="410.17,386.08 413.63,386.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.86,386.08 417.32,386.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.55,386.08 421.01,386.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.24,386.08 424.7,386.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.93,386.08 428.4,386.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="428.62,386.08 432.2,386.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="402.55,386.35 402.78,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="402.78,386.35 402.78,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="402.78,385.8 402.55,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="402.55,385.8 402.55,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.25,386.35 406.47,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.47,386.35 406.47,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.47,385.8 406.25,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.25,385.8 406.25,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.94,386.35 410.17,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="410.17,386.35 410.17,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="410.17,385.8 409.94,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.94,385.8 409.94,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.63,386.35 413.86,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.86,386.35 413.86,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.86,385.8 413.63,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="413.63,385.8 413.63,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.32,386.35 417.55,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.55,386.35 417.55,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.55,385.8 417.32,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.32,385.8 417.32,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.01,386.35 421.24,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.24,386.35 421.24,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.24,385.8 421.01,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.01,385.8 421.01,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.7,386.35 424.93,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.93,386.35 424.93,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.93,385.8 424.7,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.7,385.8 424.7,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="428.4,386.35 428.62,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="428.62,386.35 428.62,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="428.62,385.8 428.4,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="428.4,385.8 428.4,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="440.85,386.35 441.08,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.08,385.8 440.85,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="444.95,386.35 445.18,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.18,385.8 444.95,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.05,385.1 490.13,385.1" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="478.46,384.93 481.73,384.93 481.73,383.26 478.46,383.26 478.46,384.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.11,384.93 483.07,384.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.74,384.2 482.92,383.28 481.88,382.63 480.7,382.29 479.48,382.29 478.3,382.63 477.26,383.28 476.44,384.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.74,384.2 483.07,384.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.44,384.2 477.11,384.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.48,391.39 416.16,391.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="434.53,407.66 434.53,391.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="435.08,407.66 435.08,391.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="415.48,407.66 434.53,407.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="417.98,408.21 433.16,408.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="434.53,391.94 425.27,391.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="416.16,391.94 415.48,391.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="416.16,391.94 416.16,391.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="425.27,391.94 425.27,391.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="416.39,396.04 417.45,395.9 418.44,395.49 419.29,394.84 419.94,393.99 420.35,393 420.49,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="420.72,391.94 420.72,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="420.72,391.39 420.49,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="420.49,391.39 420.49,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="420.49,391.94 420.72,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.39,391.94 416.39,396.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.39,396.04 416.59,396.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.59,396.04 416.59,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.59,391.94 416.39,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.16,391.39 416.16,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.16,391.94 416.39,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.39,391.94 416.39,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.39,391.39 416.16,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.27,391.39 420.72,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="420.72,391.39 420.72,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="420.72,391.94 425.27,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.27,391.94 425.27,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.27,391.39 425.04,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.04,391.39 425.04,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.04,391.94 425.27,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.27,391.94 425.27,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.04,391.66 420.72,391.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.27,391.39 435.08,391.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.01,422.56 451.01,407.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="435.08,407.66 451.01,407.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="433.7,408.21 450.46,408.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="460.29,391.94 460.29,407.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="459.74,391.39 468.11,391.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="460.29,391.94 468.11,391.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475.77,391.94 476.22,391.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="476.22,407.66 476.22,391.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="476.77,407.66 476.77,391.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="460.29,407.66 476.22,407.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="459.74,408.21 483.97,408.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475.77,391.94 475.77,391.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="466.65,391.94 466.65,391.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="471.44,391.94 471.58,393 471.99,393.99 472.64,394.84 473.49,395.49 474.48,395.9 475.54,396.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.21,391.94 471.21,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.21,391.39 471.44,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.44,391.39 471.44,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.44,391.94 471.21,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.54,391.94 475.54,396.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.54,396.04 475.33,396.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.33,396.04 475.33,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.33,391.94 475.54,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.77,391.39 475.77,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.77,391.94 475.54,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.54,391.94 475.54,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.54,391.39 475.77,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.65,391.39 471.21,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.21,391.39 471.21,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.21,391.94 466.65,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.65,391.94 466.65,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.65,391.39 466.88,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.88,391.39 466.88,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.88,391.94 466.65,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.65,391.94 466.65,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.88,391.66 471.21,391.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.74,391.39 459.74,408.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475.77,391.39 477.23,391.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="493.18,407.66 493.18,391.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="493.72,407.66 493.72,391.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="476.77,407.66 493.18,407.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="493.18,391.94 486.34,391.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.23,391.94 476.77,391.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.23,391.94 477.23,391.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="486.34,391.94 486.34,391.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.45,396.04 478.51,395.9 479.5,395.49 480.35,394.84 481,393.99 481.41,393 481.55,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="481.78,391.94 481.78,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="481.78,391.39 481.55,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="481.55,391.39 481.55,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="481.55,391.94 481.78,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.45,391.94 477.45,396.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.45,396.04 477.66,396.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.66,396.04 477.66,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.66,391.94 477.45,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.23,391.39 477.23,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.23,391.94 477.45,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.45,391.94 477.45,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.45,391.39 477.23,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.34,391.39 481.78,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="481.78,391.39 481.78,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="481.78,391.94 486.34,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.34,391.94 486.34,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.34,391.39 486.11,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.11,391.39 486.11,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.11,391.94 486.34,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.34,391.94 486.34,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.11,391.66 481.78,391.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.34,391.39 494.18,391.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="503.29,391.94 510.13,391.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="510.13,407.66 510.13,391.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="510.68,407.66 510.68,391.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="493.72,407.66 510.13,407.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.51,408.21 502.82,408.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="527.63,391.39 503.29,391.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="494.18,391.94 493.72,391.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="494.18,391.94 494.18,391.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="503.29,391.94 503.29,391.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="494.41,396.04 495.47,395.9 496.46,395.49 497.31,394.84 497.96,393.99 498.37,393 498.51,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="498.74,391.94 498.74,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="498.74,391.39 498.51,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="498.51,391.39 498.51,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="498.51,391.94 498.74,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.41,391.94 494.41,396.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.41,396.04 494.61,396.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.61,396.04 494.61,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.61,391.94 494.41,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.18,391.39 494.18,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.18,391.94 494.41,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.41,391.94 494.41,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.41,391.39 494.18,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.29,391.39 498.74,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="498.74,391.39 498.74,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="498.74,391.94 503.29,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.29,391.94 503.29,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.29,391.39 503.06,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.06,391.39 503.06,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.06,391.94 503.29,391.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.29,391.94 503.29,391.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.06,391.66 498.74,391.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="526.63,391.94 527.08,391.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="527.08,407.66 527.08,407.2" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="527.08,398.09 527.08,391.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="524.94,408.66 524.94,408.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="527.63,398.09 527.63,391.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="510.68,407.66 527.08,407.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="505.71,408.21 524.39,408.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="524.94,408.21 527.63,408.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="527.08,391.94 510.68,391.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="527.08,402.87 526.02,403.01 525.03,403.42 524.18,404.08 523.53,404.92 523.12,405.91 522.98,406.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.08,402.65 527.63,402.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.63,402.65 527.63,402.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.63,402.87 527.08,402.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.08,402.87 527.08,402.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.08,406.98 522.98,406.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="522.98,406.98 522.98,406.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="522.98,406.77 527.08,406.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.08,406.77 527.08,406.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.63,407.2 527.08,407.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.08,407.2 527.08,406.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.08,406.98 527.63,406.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.63,406.98 527.63,407.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.63,398.09 527.63,402.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.63,402.65 527.08,402.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.08,402.65 527.08,398.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.08,398.09 527.63,398.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.35,398.32 527.35,402.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.63,398.09 527.63,398.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.63,398.32 527.08,398.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.08,398.32 527.08,398.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.08,398.09 527.63,398.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="527.08,398.09 527.63,398.09" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="527.08,407.2 527.63,407.2" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="520.29,408.89 520.43,409.95 520.84,410.94 521.49,411.79 522.34,412.44 523.33,412.85 524.39,412.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.39,413.22 524.94,413.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.94,413.22 524.94,412.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.94,412.99 524.39,412.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.39,412.99 524.39,413.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.39,408.89 520.29,408.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="520.29,408.89 520.29,409.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="520.29,409.09 524.39,409.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.39,409.09 524.39,408.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.94,408.66 524.39,408.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.39,408.66 524.39,408.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.39,408.89 524.94,408.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.94,408.89 524.94,408.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.94,417.78 524.94,413.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.94,413.22 524.39,413.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.39,413.22 524.39,417.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.39,417.78 524.94,417.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.66,417.55 524.66,413.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.94,417.78 524.94,417.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.94,417.55 524.39,417.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.39,417.55 524.39,417.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.39,417.78 524.94,417.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="524.39,417.78 524.94,417.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="524.39,408.66 524.94,408.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="524.39,408.66 524.39,408.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.75,422.01 407.86,422.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="416.98,422.01 417.43,422.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="433.7,422.01 434.16,422.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="443.27,422.01 450.46,422.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.51,421.88 484.97,421.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="494.08,421.88 502.82,421.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="524.94,422.42 494.08,422.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.97,422.42 483.97,422.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="451.01,422.56 443.27,422.56" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="434.16,422.56 433.16,422.56" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="417.98,422.56 416.98,422.56" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="407.86,422.56 398.75,422.56" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="417.43,408.21 417.43,422.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="417.98,422.56 417.98,408.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="450.46,408.21 450.46,422.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="433.7,408.21 433.7,422.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="433.16,422.56 433.16,408.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="505.71,408.21 505.71,421.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="502.82,408.21 502.82,421.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.51,408.21 484.51,421.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="483.97,408.21 483.97,422.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="527.63,407.2 527.63,408.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.97,421.88 484.97,422.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="494.08,421.88 494.08,422.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="494.08,422.42 489.53,422.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.53,422.42 489.53,421.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.53,421.88 494.08,421.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.08,421.88 494.08,422.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.08,422.42 493.86,422.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.86,422.42 493.86,421.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.86,421.88 494.08,421.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="494.08,421.88 494.08,422.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.86,422.15 489.53,422.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.23,412.31 459.23,422.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="483.97,422.42 478.5,422.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.5,422.42 478.5,421.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.5,421.88 483.97,421.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.98,422.42 459.23,422.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.98,422.42 473.98,421.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.98,421.88 459.78,421.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="459.78,421.88 459.78,412.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="459.78,412.31 459.23,412.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="481.23,421.88 481.23,412.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.83,408.38 480.83,411.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.84,408.38 483.84,411.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.6,408.38 480.6,411.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.84,408.38 480.91,408.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.84,411.85 480.91,411.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.91,408.38 480.91,411.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.91,408.42 480.83,408.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.91,411.8 480.83,411.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.83,411.85 480.6,411.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.83,408.38 480.6,408.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.6,408.6 480.6,408.69 480.39,408.69 480.39,408.6 480.6,408.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.97,412.08 481.23,412.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.08,421.48 481.88,421.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.08,419.86 481.88,419.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.15,420.66 482.21,420.52 482.35,420.46 482.49,420.52 482.55,420.66 482.49,420.81 482.35,420.87 482.21,420.81 482.15,420.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.81,419.97 481.88,419.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.81,421.36 481.88,421.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.77,420.09 481.77,421.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.65,420.09 481.65,421.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.77,421.25 481.8,421.33 481.88,421.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.65,421.25 481.72,421.41 481.88,421.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.88,419.86 481.72,419.93 481.65,420.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.88,419.97 481.8,420.01 481.77,420.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.08,421.48 483.25,421.41 483.31,421.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.31,420.09 483.25,419.93 483.08,419.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.31,420.09 483.31,421.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.03,420.67 483.05,420.6 483.12,420.58 483.18,420.6 483.21,420.67 483.18,420.73 483.12,420.76 483.05,420.73 483.03,420.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.03,420.3 483.05,420.23 483.12,420.2 483.18,420.23 483.21,420.3 483.18,420.36 483.12,420.39 483.05,420.36 483.03,420.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.03,421.04 483.05,420.98 483.12,420.95 483.18,420.98 483.21,421.04 483.18,421.11 483.12,421.13 483.05,421.11 483.03,421.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.92,420.09 482.89,420.01 482.81,419.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.81,421.36 482.87,421.35 482.91,421.31 482.92,421.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.92,420.09 482.92,421.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="434.16,422.01 434.16,422.56" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="443.27,422.01 443.27,422.56" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="416.98,422.56 416.98,422.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="407.86,422.56 407.86,422.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="438.49,422.01 438.35,420.95 437.94,419.96 437.29,419.11 436.44,418.46 435.45,418.05 434.39,417.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.72,422.01 438.72,422.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.72,422.56 438.49,422.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.49,422.56 438.49,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.49,422.01 438.72,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.39,422.01 434.39,417.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.39,417.91 434.59,417.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.59,417.91 434.59,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.59,422.01 434.39,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.16,422.56 434.16,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.16,422.01 434.39,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.39,422.01 434.39,422.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.39,422.56 434.16,422.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.27,422.56 438.72,422.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.72,422.56 438.72,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.72,422.01 443.27,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.27,422.01 443.27,422.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.27,422.56 443.04,422.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.04,422.56 443.04,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.04,422.01 443.27,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.27,422.01 443.27,422.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="443.04,422.29 438.72,422.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.75,417.91 415.69,418.05 414.7,418.46 413.85,419.11 413.2,419.96 412.79,420.95 412.65,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.42,422.01 412.42,422.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.42,422.56 412.65,422.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.65,422.56 412.65,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.65,422.01 412.42,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.75,422.01 416.75,417.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.75,417.91 416.55,417.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.55,417.91 416.55,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.55,422.01 416.75,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.98,422.56 416.98,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.98,422.01 416.75,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.75,422.01 416.75,422.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="416.75,422.56 416.98,422.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.86,422.56 412.42,422.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.42,422.56 412.42,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="412.42,422.01 407.86,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.86,422.01 407.86,422.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.86,422.56 408.09,422.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.09,422.56 408.09,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.09,422.01 407.86,422.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.86,422.01 407.86,422.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.09,422.29 412.42,422.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.36,408.21 503.36,411.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="505.16,408.21 505.16,411.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="505.16,408.21 503.36,408.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="396.79,410.66 396.68,410.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.46,410.66 391.34,410.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="396.49,411.95 396.49,384.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="396.49,384.32 396.68,384.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="396.68,384.32 396.68,411.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="396.79,386.85 396.68,386.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="396.49,392.32 391.64,392.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.46,386.85 391.34,386.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.34,386.85 391.34,410.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.64,411.95 391.64,384.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.64,384.32 391.05,384.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.46,384.5 391.46,411.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.64,409.87 396.49,409.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.64,411.12 396.49,411.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.64,408.61 396.49,408.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.64,407.36 396.49,407.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.64,406.11 396.49,406.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.64,404.85 396.49,404.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.64,403.6 396.49,403.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.64,402.35 396.49,402.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.64,401.09 396.49,401.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.64,399.84 396.49,399.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.64,398.59 396.49,398.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.64,397.33 396.49,397.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.64,396.08 396.49,396.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.64,394.83 396.49,394.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.64,393.57 396.49,393.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="394.07,392.32 394.07,411.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="394.07,411.11 393.42,410.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="394.07,411.11 394.71,410.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="393.84,392.32 393.91,392.16 394.07,392.09 394.23,392.16 394.29,392.32 394.23,392.48 394.07,392.55 393.91,392.48 393.84,392.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="393.42,391.82 393.42,391 393.7,391 393.81,391.03 393.89,391.11 393.93,391.19 393.97,391.31 393.97,391.5 393.93,391.62 393.89,391.7 393.81,391.78 393.7,391.82 393.42,391.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="394.24,391.82 394.24,391 394.79,391.82 394.79,391" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.23,411.95 391.23,384.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.05,384.32 391.05,412.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.46,384.5 391.23,384.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.05,412.25 396.79,412.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.23,411.95 396.79,411.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.7,384.8 391.89,384.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.89,384.8 391.89,386.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.89,386.47 391.7,386.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.7,386.47 391.7,384.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.23,384.8 396.42,384.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.42,384.8 396.42,386.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.42,386.47 396.23,386.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.23,386.47 396.23,384.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.79,413.91 396.79,438.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.34,413.91 397.34,438.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="396.79,387.06 396.79,411.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="397.34,411.95 397.34,387.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="366.52,413.21 366.74,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="366.74,413.21 366.74,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="366.74,412.66 366.52,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="366.52,412.66 366.52,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.1,412.66 376.98,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.91,412.66 396.79,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.1,413.21 376.98,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.91,413.21 396.79,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.98,414.32 376.98,411.54 377.21,411.54 377.21,414.32 376.98,414.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="382.68,414.32 382.68,411.54 382.91,411.54 382.91,414.32 382.68,414.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="376.75,413.21 376.98,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.98,413.21 376.98,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.98,412.66 376.75,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="376.75,412.66 376.75,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.1,413.21 363.32,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.32,413.21 363.32,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.32,412.66 363.1,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.1,412.66 363.1,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.32,412.93 366.52,412.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.93,413.21 370.16,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.16,413.21 370.16,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.16,412.66 369.93,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.93,412.66 369.93,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="366.74,412.93 369.93,412.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.35,413.21 373.58,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.58,413.21 373.58,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.58,412.66 373.35,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.35,412.66 373.35,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.16,412.93 373.35,412.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.58,412.93 376.75,412.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.33,413.21 386.56,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.56,413.21 386.56,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.56,412.66 386.33,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.33,412.66 386.33,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.91,412.66 396.79,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.91,413.21 396.79,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.56,413.21 396.79,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.79,413.21 396.79,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.79,412.66 396.56,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="396.56,412.66 396.56,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.91,413.21 383.14,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.14,413.21 383.14,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.14,412.66 382.91,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.91,412.66 382.91,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.14,412.93 386.33,412.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.75,413.21 389.97,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.97,413.21 389.97,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.97,412.66 389.75,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.75,412.66 389.75,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="386.56,412.93 389.75,412.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.16,413.21 393.39,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.39,413.21 393.39,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.39,412.66 393.16,412.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.16,412.66 393.16,413.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.97,412.93 393.16,412.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="393.39,412.93 396.56,412.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.84,417.41 361.84,417.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.84,417.64 362.39,417.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,417.64 362.39,417.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,417.41 361.84,417.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.84,413.91 361.84,414.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.84,414.14 362.39,414.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,414.14 362.39,413.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,413.91 361.84,413.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.12,414.14 362.12,417.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.12,417.64 362.12,420.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.84,413.91 361.84,438.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,438.27 362.39,413.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.35,376.66 311.35,377.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.35,377.12 311.15,377.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.15,377.12 311.15,376.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.15,376.66 311.35,376.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.63,248.25 363.4,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.4,248.25 363.4,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.4,247.7 363.63,247.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.63,247.7 363.63,248.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,165.22 344.38,165.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.38,165.45 344.92,165.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,165.45 344.92,165.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.92,165.22 344.38,165.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,241.53 461.39,241.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.39,241.73 461.93,241.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,241.73 461.93,241.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.93,241.53 461.39,241.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,253.17 469,252.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469,252.94 468.45,252.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,252.94 468.45,253.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.45,253.17 469,253.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.63,265.76 471.63,270.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.71,421.88 524.39,421.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="505.71,419.58 502.82,419.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.82,421.51 505.71,421.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.75,419.55 503.75,421.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="532.54,411.95 532.54,413.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.44,393.13 533.41,432.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.84,421.14 361.84,420.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.84,420.91 362.39,420.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,420.91 362.39,421.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,421.14 361.84,421.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.12,421.14 362.12,424.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.84,424.64 361.84,424.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.84,424.41 362.39,424.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,424.41 362.39,424.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,424.64 361.84,424.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.12,424.64 362.12,427.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.84,428.14 361.84,427.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.84,427.91 362.39,427.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,427.91 362.39,428.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,428.14 361.84,428.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.12,428.14 362.12,431.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.84,431.64 361.84,431.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.84,431.41 362.39,431.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,431.41 362.39,431.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,431.64 361.84,431.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.12,431.64 362.12,434.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.84,435.14 361.84,434.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.84,434.91 362.39,434.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,434.91 362.39,435.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,435.14 361.84,435.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.12,435.14 362.12,438.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.84,438.49 361.84,438.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.84,438.27 362.39,438.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,438.27 362.39,438.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.39,438.49 361.84,438.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.6,378.05 313.95,378.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.6,381.4 311.65,381.23 312.6,380.73 313.35,379.97 313.81,379.01 313.95,377.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.6,378.15 313.94,378.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.6,378.15 310.6,378.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.6,378.05 310.6,378.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.61,342.48 530.67,342.3 530.73,341.9 531.24,343.82" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="531.99,341.22 531.89,341.08 531.76,340.98 531.64,340.98 531.47,341.15 531.41,341.33 531.37,341.6 531.37,341.83 531.4,342.15 531.53,342.61 531.64,342.84 531.74,342.98 531.87,343.08 531.99,343.08 532.16,342.91 532.22,342.73 532.26,342.46 532.26,342.23" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="532.22,340.87 532.29,340.69 532.34,340.28 532.86,342.21" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="533.56,339.87 533.59,340.19 533.55,340.46 533.45,340.69 533.4,340.73 533.25,340.77 533.11,340.67 532.99,340.44 532.97,340.35 532.94,340.03 532.98,339.76 533.08,339.54 533.13,339.49 533.28,339.45 533.42,339.55 533.56,339.87 533.69,340.33 533.76,340.84 533.75,341.2 533.64,341.42 533.56,341.51 533.4,341.55 533.31,341.41" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="530.43,337.22 530.49,337.05 530.55,336.64 531.07,338.57" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="531.81,335.96 531.71,335.82 531.58,335.73 531.47,335.72 531.29,335.9 531.23,336.08 531.19,336.35 531.2,336.57 531.23,336.89 531.35,337.35 531.47,337.58 531.56,337.72 531.7,337.82 531.81,337.82 531.98,337.65 532.05,337.47 532.08,337.2 532.08,336.97" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="532.04,335.61 532.11,335.43 532.16,335.02 532.68,336.95" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="532.86,334.32 532.76,334.55 532.76,334.77 532.81,334.96 532.9,335.1 533.02,335.1 533.22,335.02 533.37,334.98 533.51,335.08 533.6,335.22 533.67,335.49 533.68,335.72 533.66,335.86 533.55,336.08 533.38,336.25 533.22,336.29 533.16,336.24 533.06,336.1 532.99,335.83 532.98,335.6 533.02,335.33 533.13,335.11 533.28,334.84 533.34,334.66 533.34,334.43 533.29,334.25 533.19,334.11 533.04,334.15 532.86,334.32" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="269.12,271.58 269.12,272.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,271.58 269.81,271.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,272.56 269.64,272.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.8,270.89 269.81,270.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.8,270.89 270.8,271.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.81,270.89 269.81,271.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.59,277.79 298.59,279.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.2,273.69 269.81,273.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.64,273.69 271.2,273.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,272.56 269.12,271.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,272.56 269.64,272.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,271.58 269.81,271.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,312.78 269.12,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.2,270.89 283.22,270.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.8,270.89 270.8,271.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.81,270.89 269.81,271.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.8,270.89 269.81,270.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.5,271.58 298.42,271.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.5,271.58 295.5,272.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,312.78 269.12,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,312.78 269.12,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,311.8 269.64,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,312.78 269.12,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,312.78 269.64,312.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,312.78 269.12,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,312.78 269.12,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.22,270.89 283.22,271.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.22,270.89 284.2,270.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.2,270.89 284.2,271.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.08,306.54 297.26,306.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.64,299.37 269.64,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.64,312.78 269.64,318.82" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="269.64,285.97 269.64,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.64,273.69 269.64,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.8,271.41 283.22,271.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.2,271.41 296.8,271.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.2,324.75 271.2,312.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="274.39,326.43 274.39,325.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="274.39,324.52 274.39,320.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="273.84,324.52 273.84,320.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="271.2,311.8 271.2,299.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.2,298.39 271.2,285.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.2,284.99 271.2,272.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.88,284.3 271.88,273.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="269.12,312.78 269.12,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,312.78 269.12,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,312.78 269.12,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,312.78 269.12,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,312.78 269.12,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,312.78 269.64,312.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.64,312.78 269.64,324.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.67,271.58 297.67,271.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.67,271.35 296.97,271.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.97,271.35 296.97,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.97,271.58 297.67,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,305.7 269.81,305.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,305.47 270.51,305.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,305.47 270.51,305.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,305.7 269.81,305.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,305.7 269.81,310.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,305.7 270.51,310.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,300.73 269.81,305.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,300.73 270.51,305.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,292.3 269.81,292.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,292.07 270.51,292.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,292.07 270.51,292.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,292.3 269.81,292.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,292.3 269.81,297.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,292.3 270.51,297.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,287.32 269.81,287.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,287.09 270.51,287.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,287.09 270.51,287.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,287.32 269.81,287.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,287.32 269.81,292.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,287.32 270.51,292.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,283.86 269.81,283.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,283.63 270.51,283.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,283.63 270.51,283.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,283.86 269.81,283.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,278.89 269.81,278.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,278.66 270.51,278.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,278.66 270.51,278.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,278.89 269.81,278.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,278.89 269.81,283.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,278.89 270.51,283.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,273.92 269.81,278.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,273.92 270.51,278.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,314.14 270.51,318.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,314.14 269.81,318.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.56,272.27 290.3,272.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.56,271.58 290.3,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.53,272.27 290.3,272.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.3,272.27 290.3,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.3,271.58 290.53,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.53,271.58 290.53,272.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.12,271.58 281.87,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.12,272.27 281.87,272.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.12,272.27 276.89,272.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.89,272.27 276.89,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.89,271.58 277.12,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.12,271.58 277.12,272.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.15,272.27 276.89,272.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="271.2,272.97 297.26,272.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.72,278.31 297.26,278.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="271.88,273.65 297.26,273.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="272.15,271.58 276.89,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.53,272.27 295.27,272.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.53,271.58 295.27,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.26,272.97 297.26,306.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.72,278.31 296.72,306.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="270.08,278.89 270.08,283.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.25,278.89 270.25,283.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.08,287.32 270.08,292.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.25,287.32 270.25,292.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.25,292.3 270.25,297.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.08,292.3 270.08,297.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.08,300.73 270.08,305.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.25,300.73 270.25,305.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.08,305.7 270.08,310.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.25,305.7 270.25,310.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.08,314.14 270.08,318.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.25,314.14 270.25,318.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.12,271.84 281.87,271.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.12,272.01 281.87,272.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.56,271.84 290.3,271.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.56,272.01 290.3,272.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.53,271.84 295.27,271.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.53,272.01 295.27,272.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,297.27 269.81,297.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,297.04 270.51,297.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,297.04 270.51,297.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,297.27 269.81,297.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,300.73 269.81,300.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,300.5 270.51,300.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,300.5 270.51,300.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,300.73 269.81,300.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,314.14 269.81,313.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,313.9 270.51,313.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,313.9 270.51,314.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,314.14 269.81,314.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,310.67 269.81,310.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,310.44 270.51,310.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,310.44 270.51,310.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,310.67 269.81,310.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.33,271.58 285.56,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.56,271.58 285.56,272.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.56,272.27 285.33,272.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.33,272.27 285.33,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.87,271.58 282.1,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.1,271.58 282.1,272.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.1,272.27 281.87,272.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.87,272.27 281.87,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,314.14 269.81,313.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,313.9 270.51,313.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,313.9 270.51,314.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,314.14 269.81,314.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,314.14 270.51,318.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,314.14 269.81,318.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.08,314.14 270.08,318.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.25,314.14 270.25,318.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="271.2,313.9 269.64,313.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.2,310.67 269.64,310.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.64,319.11 271.2,319.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,312.78 271.72,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,312.78 271.72,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,312.78 271.72,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,311.8 271.2,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,312.78 271.72,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,312.78 271.2,312.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,312.78 271.72,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,312.78 271.72,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,312.78 271.72,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,312.78 271.72,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,312.78 271.72,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,312.78 271.72,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,312.78 271.72,311.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,312.78 271.2,312.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,299.37 269.12,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,299.37 269.12,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,299.37 269.12,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,298.39 269.64,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,299.37 269.12,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,299.37 269.64,299.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,299.37 269.12,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,299.37 269.12,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,299.37 269.12,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,299.37 269.12,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,299.37 269.12,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,299.37 269.12,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,299.37 269.12,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,299.37 269.64,299.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.2,300.5 269.64,300.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.2,297.27 269.64,297.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,299.37 271.72,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,299.37 271.72,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,299.37 271.72,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,298.39 271.2,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,299.37 271.72,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,299.37 271.2,299.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,299.37 271.72,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,299.37 271.72,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,299.37 271.72,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,299.37 271.72,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,299.37 271.72,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,299.37 271.72,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,299.37 271.72,298.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,299.37 271.2,299.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,285.97 269.12,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,285.97 269.12,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,285.97 269.12,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,284.99 269.64,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,285.97 269.12,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,285.97 269.64,285.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,285.97 269.12,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,285.97 269.12,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,285.97 269.12,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,285.97 269.12,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,285.97 269.12,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,285.97 269.12,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,285.97 269.12,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,285.97 269.64,285.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.2,287.09 269.64,287.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.2,283.86 269.64,283.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,285.97 271.72,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,285.97 271.72,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,285.97 271.72,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,284.99 271.2,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,285.97 271.72,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,285.97 271.2,285.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,285.97 271.72,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,285.97 271.72,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,285.97 271.72,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,285.97 271.72,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,285.97 271.72,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,285.97 271.72,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,285.97 271.72,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.72,285.97 271.2,285.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="282.1,272.97 282.1,271.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.33,272.97 285.33,271.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.81,273.69 269.81,273.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,273.92 270.51,273.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,273.92 270.51,273.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,273.69 269.81,273.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.08,273.92 270.08,278.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.25,273.92 270.25,278.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.64,272.56 269.64,273.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="272.15,271.58 271.92,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="271.92,271.58 271.92,272.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="271.92,272.27 272.15,272.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.15,272.27 272.15,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.15,271.84 276.89,271.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.15,272.01 276.89,272.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="271.92,271.41 271.92,272.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.5,271.58 295.27,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.27,271.58 295.27,272.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.27,272.27 295.5,272.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.5,272.27 295.5,271.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,319.11 269.81,318.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.81,318.88 270.51,318.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,318.88 270.51,319.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.51,319.11 269.81,319.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="271.88,284.3 272.4,284.3 272.4,286.65 271.88,286.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.88,286.65 271.88,297.71 272.4,297.71 272.4,300.06 271.88,300.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.88,300.06 271.88,311.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.72,311.8 271.88,311.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="297.26,306.54 296.72,306.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="284.2,272.97 284.2,273.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.22,272.97 283.22,273.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.22,273.65 284.2,273.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.55,326.43 274.39,326.43" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="271.2,320.4 274.39,320.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="271.2,320.94 273.84,320.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="271.55,325.88 274.39,325.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="273.84,324.52 274.39,324.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="299.85,325.2 299.83,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.81,325.2 299.79,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.77,325.2 299.74,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.73,325.2 299.7,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.69,325.2 299.66,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.65,325.2 299.62,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.61,325.2 299.58,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.57,325.2 299.54,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.53,325.2 299.5,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.49,325.2 299.46,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.44,325.2 299.42,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.4,325.2 299.38,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.36,325.2 299.34,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.32,325.2 299.29,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.28,325.2 299.25,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.24,325.2 299.21,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.2,325.2 299.17,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.16,325.2 299.13,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.12,325.2 299.09,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.08,325.2 299.05,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.03,325.2 299.01,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.99,325.2 298.97,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.95,325.2 298.93,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.91,325.2 298.88,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.87,325.2 298.84,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.83,325.2 298.8,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.79,325.2 298.76,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.75,325.2 298.72,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.71,325.2 298.68,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.67,325.2 298.64,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.63,325.2 298.6,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.58,325.2 298.56,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.54,325.2 298.52,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.5,325.2 298.48,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.46,325.2 298.43,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.42,325.2 298.39,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.38,325.2 298.35,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.34,325.2 298.31,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.3,325.2 298.27,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.26,325.2 298.23,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.22,325.2 298.19,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.17,325.2 298.15,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.13,325.2 298.11,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.09,325.2 298.07,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.05,325.2 298.02,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.01,325.2 297.98,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.97,325.2 297.94,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.93,325.2 297.9,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,325.2 297.86,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.85,325.2 297.82,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.81,325.2 297.78,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.77,325.2 297.74,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.72,325.2 297.7,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.68,325.2 297.66,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.64,325.2 297.62,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.6,325.2 297.57,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.56,325.2 297.53,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.52,325.2 297.49,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.48,325.2 297.45,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.44,325.2 297.41,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.4,325.2 297.37,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.36,325.2 297.33,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.31,325.2 297.29,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.27,325.2 297.25,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.23,325.2 297.21,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.19,325.2 297.16,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.15,325.2 297.12,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.11,325.2 297.08,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.07,325.2 297.04,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.03,325.2 297,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.99,325.2 296.96,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.95,325.2 296.92,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.91,325.2 296.88,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.86,325.2 296.84,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.82,325.2 296.8,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.78,325.2 296.76,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.74,325.2 296.71,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.7,325.2 296.67,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.66,325.2 296.63,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.62,325.2 296.59,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.58,325.2 296.55,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.54,325.2 296.51,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.5,325.2 296.47,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.45,325.2 296.43,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.41,325.2 296.39,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.37,325.2 296.35,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.33,325.2 296.3,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.29,325.2 296.26,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.25,325.2 296.22,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.21,325.2 296.18,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.17,325.2 296.14,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.13,325.2 296.1,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.09,325.2 296.06,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.05,325.2 296.02,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296,325.2 295.98,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.96,325.2 295.94,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.92,325.2 295.9,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.88,325.2 295.85,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.84,325.2 295.81,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.8,325.2 295.77,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.76,325.2 295.73,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.72,325.2 295.69,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.68,325.2 295.65,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.64,325.2 295.61,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.6,325.2 295.57,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.55,325.2 295.53,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.51,325.2 295.49,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.47,325.2 295.44,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.43,325.2 295.4,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.39,325.2 295.36,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.35,325.2 295.32,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.31,325.2 295.28,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.27,325.2 295.24,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.23,325.2 295.2,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.19,325.2 295.16,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.14,325.2 295.12,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.1,325.2 295.08,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.06,325.2 295.04,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.02,325.2 294.99,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.98,325.2 294.95,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.94,325.2 294.91,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.9,325.2 294.87,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.86,325.2 294.83,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.82,325.2 294.79,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.78,325.2 294.75,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.74,325.2 294.71,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.69,325.2 294.67,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.65,325.2 294.63,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.61,325.2 294.58,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.57,325.2 294.54,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.53,325.2 294.5,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.49,325.2 294.46,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.45,325.2 294.42,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.41,325.2 294.38,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.37,325.2 294.34,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.33,325.2 294.3,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.28,325.2 294.26,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.24,325.2 294.22,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.2,325.2 294.18,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.16,325.2 294.13,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.12,325.2 294.09,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.08,325.2 294.05,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.04,325.2 294.01,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294,325.2 293.97,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.96,325.2 293.93,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.92,325.2 293.89,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.88,325.2 293.85,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.83,325.2 293.81,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.79,325.2 293.77,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.75,325.2 293.72,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.71,325.2 293.68,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.67,325.2 293.64,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.63,325.2 293.6,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.59,325.2 293.56,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.55,325.2 293.52,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.51,325.2 293.48,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.47,325.2 293.44,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.42,325.2 293.4,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.38,325.2 293.36,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.34,325.2 293.32,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.3,325.2 293.27,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.26,325.2 293.23,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.22,325.2 293.19,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.18,325.2 293.15,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.14,325.2 293.11,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.1,325.2 293.07,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.06,325.2 293.03,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="293.02,325.2 292.99,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.97,325.2 292.95,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.93,325.2 292.91,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.89,325.2 292.87,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.85,325.2 292.82,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.81,325.2 292.78,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.77,325.2 292.74,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.73,325.2 292.7,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.69,325.2 292.66,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.65,325.2 292.62,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.61,325.2 292.58,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.56,325.2 292.54,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.52,325.2 292.5,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.48,325.2 292.46,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.44,325.2 292.41,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.4,325.2 292.37,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.36,325.2 292.33,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.32,325.2 292.29,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.28,325.2 292.25,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.24,325.2 292.21,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.2,325.2 292.17,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.16,325.2 292.13,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.11,325.2 292.09,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.07,325.2 292.05,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.03,325.2 292.01,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.99,325.2 291.96,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.95,325.2 291.92,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.91,325.2 291.88,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.87,325.2 291.84,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.83,325.2 291.8,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.79,325.2 291.76,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.75,325.2 291.72,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.7,325.2 291.68,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.66,325.2 291.64,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.62,325.2 291.6,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.58,325.2 291.55,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.54,325.2 291.51,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.5,325.2 291.47,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.46,325.2 291.43,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.42,325.2 291.39,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.38,325.2 291.35,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.34,325.2 291.31,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.3,325.2 291.27,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.25,325.2 291.23,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.21,325.2 291.19,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.17,325.2 291.15,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.13,325.2 291.1,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.09,325.2 291.06,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.05,325.2 291.02,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.01,325.2 290.98,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.97,325.2 290.94,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.93,325.2 290.9,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.89,325.2 290.86,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.84,325.2 290.82,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.8,325.2 290.78,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.76,325.2 290.74,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.72,325.2 290.69,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.68,325.2 290.65,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.64,325.2 290.61,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.6,325.2 290.57,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.56,325.2 290.53,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.52,325.2 290.49,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.48,325.2 290.45,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.44,325.2 290.41,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.39,325.2 290.37,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.35,325.2 290.33,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.31,325.2 290.29,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.27,325.2 290.24,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.23,325.2 290.2,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.19,325.2 290.16,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.15,325.2 290.12,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.11,325.2 290.08,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.07,325.2 290.04,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.03,325.2 290,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.98,325.2 289.96,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.94,325.2 289.92,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.9,325.2 289.88,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.86,325.2 289.83,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.82,325.2 289.79,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.78,325.2 289.75,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.74,325.2 289.71,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.7,325.2 289.67,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.66,325.2 289.63,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.62,325.2 289.59,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.58,325.2 289.55,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.53,325.2 289.51,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.49,325.2 289.47,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.45,325.2 289.43,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.41,325.2 289.38,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.37,325.2 289.34,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.33,325.2 289.3,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.29,325.2 289.26,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.25,325.2 289.22,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.21,325.2 289.18,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.17,325.2 289.14,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.12,325.2 289.1,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.08,325.2 289.06,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289.04,325.2 289.02,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="289,325.2 288.97,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.96,325.2 288.93,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.92,325.2 288.89,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.88,325.2 288.85,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.84,325.2 288.81,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.8,325.2 288.77,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.76,325.2 288.73,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.72,325.2 288.69,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.67,325.2 288.65,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.63,325.2 288.61,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.59,325.2 288.57,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.55,325.2 288.52,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.51,325.2 288.48,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.47,325.2 288.44,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.43,325.2 288.4,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.39,325.2 288.36,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.35,325.2 288.32,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.31,325.2 288.28,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.26,325.2 288.24,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.22,325.2 288.2,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.18,325.2 288.16,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.14,325.2 288.11,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.1,325.2 288.07,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.06,325.2 288.03,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="288.02,325.2 287.99,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.98,325.2 287.95,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.94,325.2 287.91,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.9,325.2 287.87,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.86,325.2 287.83,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.81,325.2 287.79,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.77,325.2 287.75,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.73,325.2 287.71,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.69,325.2 287.66,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.65,325.2 287.62,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.61,325.2 287.58,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.57,325.2 287.54,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.53,325.2 287.5,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.49,325.2 287.46,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.45,325.2 287.42,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.4,325.2 287.38,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.36,325.2 287.34,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.32,325.2 287.3,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.28,325.2 287.25,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.24,325.2 287.21,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.2,325.2 287.17,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.16,325.2 287.13,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.12,325.2 287.09,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.08,325.2 287.05,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.04,325.2 287.01,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287,325.2 286.97,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.95,325.2 286.93,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.91,325.2 286.89,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.87,325.2 286.85,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.83,325.2 286.8,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.79,325.2 286.76,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.75,325.2 286.72,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.71,325.2 286.68,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.67,325.2 286.64,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.63,325.2 286.6,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.59,325.2 286.56,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.55,325.2 286.52,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.5,325.2 286.48,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.46,325.2 286.44,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.42,325.2 286.39,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.38,325.2 286.35,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.34,325.2 286.31,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.3,325.2 286.27,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.26,325.2 286.23,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.22,325.2 286.19,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.18,325.2 286.15,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.14,325.2 286.11,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.09,325.2 286.07,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.05,325.2 286.03,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.01,325.2 285.99,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.97,325.2 285.94,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.93,325.2 285.9,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.89,325.2 285.86,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.85,325.2 285.82,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.81,325.2 285.78,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.77,325.2 285.74,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,325.2 285.7,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.69,325.2 285.66,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.64,325.2 285.62,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.6,325.2 285.58,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.56,325.2 285.53,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.52,325.2 285.49,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,325.2 285.45,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.44,325.2 285.41,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.4,325.2 285.37,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.36,325.2 285.33,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.32,325.2 285.29,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.28,325.2 285.25,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.23,325.2 285.21,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.19,325.2 285.17,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.15,325.2 285.13,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.11,325.2 285.08,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,325.2 285.04,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.03,325.2 285,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.99,325.2 284.96,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.95,325.2 284.92,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.91,325.2 284.88,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.87,325.2 284.84,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.83,325.2 284.8,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,325.2 284.76,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.74,325.2 284.72,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.7,325.2 284.67,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.66,325.2 284.63,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.62,325.2 284.59,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.58,325.2 284.55,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.54,325.2 284.51,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.5,325.2 284.47,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.46,325.2 284.43,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.42,325.2 284.39,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.37,325.2 284.35,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.33,325.2 284.31,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.29,325.2 284.27,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.25,325.2 284.22,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.21,325.2 284.18,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.17,325.2 284.14,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.13,325.2 284.1,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.09,325.2 284.06,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.05,325.2 284.02,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,325.2 283.98,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.97,325.2 283.94,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.92,325.2 283.9,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.88,325.2 283.86,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.84,325.2 283.82,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.8,325.2 283.77,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.76,325.2 283.73,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.72,325.2 283.69,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.68,325.2 283.65,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.64,325.2 283.61,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.6,325.2 283.57,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.56,325.2 283.53,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.51,325.2 283.49,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.47,325.2 283.45,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.43,325.2 283.41,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.39,325.2 283.36,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.35,325.2 283.32,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.31,325.2 283.28,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.27,325.2 283.24,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.23,325.2 283.2,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.19,325.2 283.16,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.15,325.2 283.12,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.11,325.2 283.08,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.06,325.2 283.04,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.02,325.2 283,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.98,325.2 282.96,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.94,325.2 282.91,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.9,325.2 282.87,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.86,325.2 282.83,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.82,325.2 282.79,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.78,325.2 282.75,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.74,325.2 282.71,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.7,325.2 282.67,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.65,325.2 282.63,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.61,325.2 282.59,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.57,325.2 282.55,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.53,325.2 282.5,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.49,325.2 282.46,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.45,325.2 282.42,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.41,325.2 282.38,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.37,325.2 282.34,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.33,325.2 282.3,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.29,325.2 282.26,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.25,325.2 282.22,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.2,325.2 282.18,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.16,325.2 282.14,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.12,325.2 282.1,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.08,325.2 282.05,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.04,325.2 282.01,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282,325.2 281.97,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.96,325.2 281.93,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.92,325.2 281.89,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.88,325.2 281.85,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.84,325.2 281.81,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.79,325.2 281.77,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.75,325.2 281.73,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.71,325.2 281.69,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.67,325.2 281.64,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.63,325.2 281.6,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.59,325.2 281.56,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.55,325.2 281.52,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.51,325.2 281.48,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.47,325.2 281.44,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.43,325.2 281.4,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.39,325.2 281.36,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.34,325.2 281.32,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.3,325.2 281.28,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.26,325.2 281.24,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.22,325.2 281.19,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.18,325.2 281.15,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.14,325.2 281.11,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.1,325.2 281.07,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.06,325.2 281.03,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.02,325.2 280.99,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.98,325.2 280.95,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.93,325.2 280.91,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.89,325.2 280.87,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.85,325.2 280.83,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.81,325.2 280.78,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.77,325.2 280.74,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.73,325.2 280.7,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.69,325.2 280.66,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.65,325.2 280.62,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.61,325.2 280.58,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.57,325.2 280.54,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.53,325.2 280.5,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.48,325.2 280.46,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.44,325.2 280.42,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.4,325.2 280.38,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.36,325.2 280.33,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.32,325.2 280.29,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.28,325.2 280.25,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.24,325.2 280.21,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.2,325.2 280.17,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.16,325.2 280.13,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.12,325.2 280.09,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.07,325.2 280.05,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.03,325.2 280.01,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.99,325.2 279.97,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.95,325.2 279.92,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.91,325.2 279.88,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.87,325.2 279.84,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.83,325.2 279.8,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.79,325.2 279.76,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.75,325.2 279.72,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.71,325.2 279.68,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.67,325.2 279.64,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.62,325.2 279.6,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.58,325.2 279.56,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.54,325.2 279.52,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.5,325.2 279.47,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.46,325.2 279.43,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.42,325.2 279.39,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.38,325.2 279.35,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.34,325.2 279.31,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.3,325.2 279.27,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.26,325.2 279.23,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.21,325.2 279.19,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.17,325.2 279.15,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.13,325.2 279.11,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.09,325.2 279.06,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.05,325.2 279.02,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.01,325.2 278.98,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.97,325.2 278.94,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.93,325.2 278.9,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.89,325.2 278.86,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.85,325.2 278.82,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.81,325.2 278.78,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.76,325.2 278.74,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.72,325.2 278.7,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.68,325.2 278.66,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.64,325.2 278.61,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.6,325.2 278.57,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.56,325.2 278.53,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.52,325.2 278.49,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.48,325.2 278.45,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.44,325.2 278.41,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.4,325.2 278.37,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.35,325.2 278.33,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.31,325.2 278.29,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.27,325.2 278.25,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.23,325.2 278.2,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.19,325.2 278.16,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.15,325.2 278.12,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.11,325.2 278.08,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.07,325.2 278.04,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.03,325.2 278,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.99,325.2 277.96,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.95,325.2 277.92,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.9,325.2 277.88,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.86,325.2 277.84,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.82,325.2 277.8,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.78,325.2 277.75,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.74,325.2 277.71,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.7,325.2 277.67,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.66,325.2 277.63,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.62,325.2 277.59,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.58,325.2 277.55,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.54,325.2 277.51,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.5,325.2 277.47,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.45,325.2 277.43,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.41,325.2 277.39,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.37,325.2 277.34,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.33,325.2 277.3,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.29,325.2 277.26,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.25,325.2 277.22,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.21,325.2 277.18,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.17,325.2 277.14,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.13,325.2 277.1,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.09,325.2 277.06,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.04,325.2 277.02,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277,325.2 276.98,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.96,325.2 276.94,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.92,325.2 276.89,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.88,325.2 276.85,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.84,325.2 276.81,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.8,325.2 276.77,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.76,325.2 276.73,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.72,325.2 276.69,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.68,325.2 276.65,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.64,325.2 276.61,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.59,325.2 276.57,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.55,325.2 276.53,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.51,325.2 276.48,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.47,325.2 276.44,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.43,325.2 276.4,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.39,325.2 276.36,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.35,325.2 276.32,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.31,325.2 276.28,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.27,325.2 276.24,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.23,325.2 276.2,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.18,325.2 276.16,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.14,325.2 276.12,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.1,325.2 276.08,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.06,325.2 276.03,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.02,325.2 275.99,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.98,325.2 275.95,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.94,325.2 275.91,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.9,325.2 275.87,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.86,325.2 275.83,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.82,325.2 275.79,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.78,325.2 275.75,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.73,325.2 275.71,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.69,325.2 275.67,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.65,325.2 275.62,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.61,325.2 275.58,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.57,325.2 275.54,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.53,325.2 275.5,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.49,325.2 275.46,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.45,325.2 275.42,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.41,325.2 275.38,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.37,325.2 275.34,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.32,325.2 275.3,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.28,325.2 275.26,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.24,325.2 275.22,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.2,325.2 275.17,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.16,325.2 275.13,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.12,325.2 275.09,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.08,325.2 275.05,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.04,325.2 275.01,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275,325.2 274.97,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.96,325.2 274.93,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.92,325.2 274.89,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.87,325.2 274.85,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.83,325.2 274.81,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.79,325.2 274.77,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.75,325.2 274.72,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.71,325.2 274.68,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.67,325.2 274.64,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.63,325.2 274.6,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.59,325.2 274.56,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.55,325.2 274.52,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.51,325.2 274.48,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.46,325.2 274.44,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.42,325.2 274.4,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.38,325.2 274.36,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.34,325.2 274.31,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.3,325.2 274.27,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.26,325.2 274.23,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.22,325.2 274.19,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.18,325.2 274.15,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.14,325.2 274.11,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.1,325.2 274.07,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.06,325.2 274.03,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.01,325.2 273.99,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.97,325.2 273.95,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.93,325.2 273.91,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.89,325.2 273.86,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.85,325.2 273.83,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,324.1 272.67,324.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.67,324.14 272.68,324.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.69,324.18 272.69,324.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.7,324.22 272.71,324.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.71,324.26 272.72,324.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.72,324.3 272.73,324.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.73,324.34 272.74,324.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.75,324.37 272.76,324.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.76,324.41 272.77,324.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.77,324.45 272.78,324.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.78,324.49 272.79,324.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.8,324.53 272.8,324.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.81,324.57 272.82,324.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.82,324.61 272.83,324.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.83,324.65 272.84,324.66 272.85,324.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.86,324.68 272.88,324.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.89,324.71 272.91,324.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.92,324.73 272.94,324.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.95,324.76 272.97,324.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.98,324.79 273,324.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.01,324.82 273.03,324.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.04,324.85 273.06,324.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.07,324.87 273.09,324.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.1,324.9 273.12,324.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.13,324.93 273.15,324.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.16,324.96 273.18,324.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.19,324.99 273.21,325.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.22,325.01 273.24,325.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.25,325.04 273.26,325.06 273.27,325.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.28,325.06 273.31,325.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.32,325.07 273.35,325.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.36,325.08 273.39,325.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.4,325.09 273.43,325.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.44,325.1 273.47,325.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.48,325.11 273.51,325.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.52,325.12 273.55,325.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.56,325.13 273.59,325.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.6,325.14 273.63,325.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.64,325.15 273.67,325.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.68,325.16 273.71,325.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.72,325.17 273.75,325.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.76,325.18 273.79,325.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.8,325.19 273.83,325.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,324.1 272.66,324.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,324.06 272.66,324.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,324.02 272.66,323.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.98 272.66,323.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.94 272.66,323.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.9 272.66,323.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.86 272.66,323.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.82 272.66,323.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.78 272.66,323.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.73 272.66,323.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.69 272.66,323.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.65 272.66,323.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.61 272.66,323.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.57 272.66,323.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.53 272.66,323.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.49 272.66,323.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.45 272.66,323.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.41 272.66,323.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.37 272.66,323.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.33 272.66,323.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.28 272.66,323.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.24 272.66,323.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.2 272.66,323.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.16 272.66,323.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.12 272.66,323.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.08 272.66,323.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323.04 272.66,323.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,323 272.66,322.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.96 272.66,322.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.92 272.66,322.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.87 272.66,322.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.83 272.66,322.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.79 272.66,322.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.75 272.66,322.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.71 272.66,322.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.67 272.66,322.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.63 272.66,322.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.59 272.66,322.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.55 272.66,322.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.51 272.66,322.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.47 272.66,322.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.42 272.66,322.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.38 272.66,322.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.34 272.66,322.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.3 272.66,322.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.26 272.66,322.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.22 272.66,322.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.18 272.66,322.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.14 272.66,322.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.1 272.66,322.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.06 272.66,322.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,322.01 272.66,321.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,321.97 272.66,321.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,321.93 272.66,321.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,321.89 272.66,321.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,321.85 272.66,321.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,321.81 272.66,321.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,321.77 272.66,321.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,321.73 272.66,321.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,321.69 272.66,321.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,321.65 272.66,321.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.66,321.61 272.66,321.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.03,321.58 273.02,321.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273,321.59 272.98,321.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.97,321.61 272.94,321.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.93,321.62 272.9,321.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.89,321.63 272.86,321.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.85,321.64 272.82,321.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.81,321.66 272.78,321.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.77,321.67 272.74,321.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.73,321.68 272.71,321.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.69,321.69 272.67,321.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.65,321.71 272.63,321.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.61,321.72 272.59,321.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.58,321.73 272.55,321.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.54,321.74 272.51,321.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.5,321.76 272.47,321.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.46,321.77 272.43,321.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.42,321.78 272.39,321.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.38,321.79 272.35,321.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.34,321.81 272.32,321.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.3,321.82 272.29,321.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.03,322.06 273.02,322.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273,322.05 272.98,322.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.97,322.04 272.94,322.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.93,322.03 272.9,322.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.89,322.01 272.86,322.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.85,322 272.82,321.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.81,321.99 272.78,321.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.77,321.98 272.74,321.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.73,321.96 272.71,321.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.69,321.95 272.67,321.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.65,321.94 272.63,321.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.61,321.93 272.59,321.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.58,321.91 272.55,321.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.54,321.9 272.51,321.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.5,321.89 272.47,321.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.46,321.88 272.43,321.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.42,321.86 272.39,321.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.38,321.85 272.35,321.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.34,321.84 272.32,321.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.3,321.83 272.29,321.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.03,322.54 273.02,322.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273,322.53 272.98,322.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.97,322.52 272.94,322.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.93,322.5 272.9,322.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.89,322.49 272.86,322.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.85,322.48 272.82,322.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.81,322.47 272.78,322.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.77,322.45 272.74,322.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.73,322.44 272.71,322.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.69,322.43 272.67,322.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.65,322.42 272.63,322.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.61,322.4 272.59,322.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.58,322.39 272.55,322.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.54,322.38 272.51,322.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.5,322.37 272.47,322.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.46,322.35 272.43,322.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.42,322.34 272.39,322.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.38,322.33 272.35,322.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.34,322.32 272.32,322.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.3,322.3 272.29,322.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.03,322.06 273.02,322.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273,322.07 272.98,322.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.97,322.08 272.94,322.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.93,322.09 272.9,322.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.89,322.11 272.86,322.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.85,322.12 272.82,322.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.81,322.13 272.78,322.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.77,322.14 272.74,322.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.73,322.16 272.71,322.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.69,322.17 272.67,322.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.65,322.18 272.63,322.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.61,322.19 272.59,322.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.58,322.21 272.55,322.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.54,322.22 272.51,322.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.5,322.23 272.47,322.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.46,322.24 272.43,322.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.42,322.26 272.39,322.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.38,322.27 272.35,322.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.34,322.28 272.32,322.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.3,322.29 272.29,322.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.03,322.54 273.02,322.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273,322.55 272.98,322.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.97,322.56 272.94,322.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.93,322.57 272.9,322.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.89,322.58 272.86,322.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.85,322.6 272.82,322.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.81,322.61 272.78,322.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.77,322.62 272.74,322.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.73,322.63 272.71,322.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.69,322.65 272.67,322.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.65,322.66 272.63,322.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.61,322.67 272.59,322.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.58,322.68 272.55,322.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.54,322.7 272.51,322.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.5,322.71 272.47,322.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.46,322.72 272.43,322.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.42,322.73 272.39,322.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.38,322.75 272.35,322.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.34,322.76 272.32,322.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.3,322.77 272.29,322.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.03,323.01 273.02,323.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273,323 272.98,323" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.97,322.99 272.94,322.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.93,322.98 272.9,322.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.89,322.97 272.86,322.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.85,322.95 272.82,322.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.81,322.94 272.78,322.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.77,322.93 272.74,322.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.73,322.92 272.71,322.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.69,322.9 272.67,322.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.65,322.89 272.63,322.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.61,322.88 272.59,322.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.58,322.87 272.55,322.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.54,322.85 272.51,322.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.5,322.84 272.47,322.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.46,322.83 272.43,322.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.42,322.82 272.39,322.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.38,322.8 272.35,322.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.34,322.79 272.32,322.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.3,322.78 272.29,322.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="323.53,246.57 322.08,246.76 320.74,247.32 319.58,248.21 318.69,249.36 318.14,250.71 317.95,252.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.72,252.7 317.72,252.16 317.95,252.16 317.95,252.7 317.72,252.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="323.53,246.57 323.32,246.57 323.32,252.16 323.53,252.16 323.53,246.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="323.53,252.7 323.53,252.16 323.76,252.16 323.76,252.7 323.53,252.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="323.82,251.3 323.82,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="323.82,243 296.59,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.59,243 296.59,242.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.59,242.77 324.04,242.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="324.04,242.77 324.04,251.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="317.2,251.12 317.2,248.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="317.2,248.23 296.59,248.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.59,248.23 296.59,248" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.59,248 317.43,248" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="317.43,248 317.43,251.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.6,244.82 313.13,244.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="311.5,244.82 311.63,244.48 311.97,244.35 312.3,244.48 312.44,244.82 312.3,245.15 311.97,245.29 311.63,245.15 311.5,244.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.6,244.82 300.11,244.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.6,244.82 300.11,245.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="313.81,245.21 313.81,244.39 314.08,244.39 314.2,244.43 314.27,244.51 314.31,244.59 314.35,244.71 314.35,244.9 314.31,245.02 314.27,245.1 314.2,245.17 314.08,245.21 313.81,245.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="314.63,245.21 314.63,244.39 315.17,245.21 315.17,244.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="315.52,245.13 315.48,245.17 315.52,245.21 315.56,245.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="311.97,248 311.97,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,248 312.08,247.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.97 312.08,247.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.93 312.08,247.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.89 312.08,247.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.85 312.08,247.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.81 312.08,247.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.77 312.08,247.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.73 312.08,247.7" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.69 312.08,247.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.64 312.08,247.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.6 312.08,247.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.56 312.08,247.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.52 312.08,247.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.48 312.08,247.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.44 312.08,247.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.4 312.08,247.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.36 312.08,247.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.32 312.08,247.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.28 312.08,247.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.23 312.08,247.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.19 312.08,247.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.15 312.08,247.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.11 312.08,247.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.07 312.08,247.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,247.03 312.08,247" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.99 312.08,246.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.95 312.08,246.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.91 312.08,246.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.87 312.08,246.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.83 312.08,246.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.78 312.08,246.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.74 312.08,246.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.7 312.08,246.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.66 312.08,246.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.62 312.08,246.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.58 312.08,246.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.54 312.08,246.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.5 312.08,246.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.46 312.08,246.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.42 312.08,246.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.37 312.08,246.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.33 312.08,246.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.29 312.08,246.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.25 312.08,246.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.21 312.08,246.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.17 312.08,246.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.13 312.08,246.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.09 312.08,246.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.05 312.08,246.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,246.01 312.08,245.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.97 312.08,245.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.92 312.08,245.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.88 312.08,245.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.84 312.08,245.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.8 312.08,245.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.76 312.08,245.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.72 312.08,245.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.68 312.08,245.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.64 312.08,245.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.6 312.08,245.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.56 312.08,245.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.51 312.08,245.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.47 312.08,245.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.43 312.08,245.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.39 312.08,245.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.35 312.08,245.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.31 312.08,245.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.27 312.08,245.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.23 312.08,245.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.19 312.08,245.16" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.15 312.08,245.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.11 312.08,245.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.06 312.08,245.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,245.02 312.08,245" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.98 312.08,244.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.94 312.08,244.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.9 312.08,244.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.86 312.08,244.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.82 312.08,244.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.78 312.08,244.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.74 312.08,244.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.7 312.08,244.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.65 312.08,244.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.61 312.08,244.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.57 312.08,244.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.53 312.08,244.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.49 312.08,244.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.45 312.08,244.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.41 312.08,244.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.37 312.08,244.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.33 312.08,244.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.29 312.08,244.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.25 312.08,244.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.2 312.08,244.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.16 312.08,244.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.12 312.08,244.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.08 312.08,244.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244.04 312.08,244.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,244 312.08,243.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.96 312.08,243.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.92 312.08,243.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.88 312.08,243.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.84 312.08,243.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.8 312.08,243.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.75 312.08,243.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.71 312.08,243.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.67 312.08,243.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.63 312.08,243.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.59 312.08,243.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.55 312.08,243.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.51 312.08,243.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.47 312.08,243.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.43 312.08,243.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.39 312.08,243.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.34 312.08,243.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.3 312.08,243.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.26 312.08,243.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.22 312.08,243.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.18 312.08,243.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.14 312.08,243.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.1 312.08,243.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.06 312.08,243.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="312.08,243.02 312.08,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,242.8 291.93,242.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,243 292.14,242.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,243.2 292.32,242.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,243.41 292.32,242.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,243.61 292.32,243.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,243.81 292.32,243.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,244.01 292.32,243.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,244.21 292.32,243.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,244.41 292.32,243.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,244.61 292.32,244.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,244.81 292.32,244.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,245.01 292.32,244.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,245.22 292.32,244.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,245.42 292.32,245" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,245.62 292.32,245.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,245.82 292.32,245.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,246.02 292.32,245.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,246.22 292.32,245.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,246.42 292.32,246" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,246.62 292.32,246.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,246.82 292.32,246.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,247.02 292.32,246.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,247.23 292.32,246.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,247.43 292.32,247.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,247.63 292.32,247.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,247.83 292.32,247.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,248.03 292.32,247.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,248.23 292.32,247.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.1,248.23 292.32,248.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.31,248.23 292.32,248.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,248 310.81,247.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.97 310.81,247.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.93 310.81,247.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.89 310.81,247.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.85 310.81,247.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.81 310.81,247.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.77 310.81,247.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.73 310.81,247.7" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.69 310.81,247.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.64 310.81,247.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.6 310.81,247.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.56 310.81,247.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.52 310.81,247.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.48 310.81,247.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.44 310.81,247.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.4 310.81,247.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.36 310.81,247.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.32 310.81,247.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.28 310.81,247.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.23 310.81,247.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.19 310.81,247.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.15 310.81,247.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.11 310.81,247.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.07 310.81,247.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,247.03 310.81,247" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.99 310.81,246.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.95 310.81,246.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.91 310.81,246.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.87 310.81,246.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.83 310.81,246.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.78 310.81,246.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.74 310.81,246.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.7 310.81,246.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.66 310.81,246.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.62 310.81,246.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.58 310.81,246.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.54 310.81,246.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.5 310.81,246.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.46 310.81,246.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.42 310.81,246.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.37 310.81,246.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.33 310.81,246.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.29 310.81,246.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.25 310.81,246.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.21 310.81,246.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.17 310.81,246.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.13 310.81,246.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.09 310.81,246.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.05 310.81,246.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,246.01 310.81,245.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.97 310.81,245.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.92 310.81,245.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.88 310.81,245.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.84 310.81,245.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.8 310.81,245.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.76 310.81,245.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.72 310.81,245.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.68 310.81,245.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.64 310.81,245.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.6 310.81,245.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.56 310.81,245.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.51 310.81,245.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.47 310.81,245.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.43 310.81,245.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.39 310.81,245.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.35 310.81,245.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.31 310.81,245.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.27 310.81,245.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.23 310.81,245.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.19 310.81,245.16" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.15 310.81,245.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.11 310.81,245.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.06 310.81,245.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,245.02 310.81,245" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.98 310.81,244.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.94 310.81,244.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.9 310.81,244.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.86 310.81,244.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.82 310.81,244.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.78 310.81,244.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.74 310.81,244.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.7 310.81,244.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.65 310.81,244.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.61 310.81,244.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.57 310.81,244.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.53 310.81,244.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.49 310.81,244.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.45 310.81,244.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.41 310.81,244.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.37 310.81,244.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.33 310.81,244.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.29 310.81,244.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.25 310.81,244.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.2 310.81,244.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.16 310.81,244.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.12 310.81,244.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.08 310.81,244.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244.04 310.81,244.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,244 310.81,243.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.96 310.81,243.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.92 310.81,243.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.88 310.81,243.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.84 310.81,243.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.8 310.81,243.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.75 310.81,243.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.71 310.81,243.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.67 310.81,243.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.63 310.81,243.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.59 310.81,243.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.55 310.81,243.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.51 310.81,243.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.47 310.81,243.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.43 310.81,243.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.39 310.81,243.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.34 310.81,243.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.3 310.81,243.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.26 310.81,243.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.22 310.81,243.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.18 310.81,243.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.14 310.81,243.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.1 310.81,243.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.06 310.81,243.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.81,243.02 310.81,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.7,248 310.7,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.42,248 309.42,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,248 309.54,247.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.97 309.54,247.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.93 309.54,247.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.89 309.54,247.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.85 309.54,247.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.81 309.54,247.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.77 309.54,247.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.73 309.54,247.7" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.69 309.54,247.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.64 309.54,247.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.6 309.54,247.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.56 309.54,247.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.52 309.54,247.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.48 309.54,247.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.44 309.54,247.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.4 309.54,247.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.36 309.54,247.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.32 309.54,247.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.28 309.54,247.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.23 309.54,247.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.19 309.54,247.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.15 309.54,247.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.11 309.54,247.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.07 309.54,247.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,247.03 309.54,247" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.99 309.54,246.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.95 309.54,246.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.91 309.54,246.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.87 309.54,246.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.83 309.54,246.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.78 309.54,246.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.74 309.54,246.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.7 309.54,246.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.66 309.54,246.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.62 309.54,246.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.58 309.54,246.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.54 309.54,246.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.5 309.54,246.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.46 309.54,246.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.42 309.54,246.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.37 309.54,246.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.33 309.54,246.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.29 309.54,246.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.25 309.54,246.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.21 309.54,246.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.17 309.54,246.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.13 309.54,246.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.09 309.54,246.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.05 309.54,246.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,246.01 309.54,245.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.97 309.54,245.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.92 309.54,245.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.88 309.54,245.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.84 309.54,245.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.8 309.54,245.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.76 309.54,245.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.72 309.54,245.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.68 309.54,245.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.64 309.54,245.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.6 309.54,245.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.56 309.54,245.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.51 309.54,245.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.47 309.54,245.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.43 309.54,245.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.39 309.54,245.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.35 309.54,245.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.31 309.54,245.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.27 309.54,245.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.23 309.54,245.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.19 309.54,245.16" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.15 309.54,245.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.11 309.54,245.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.06 309.54,245.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,245.02 309.54,245" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.98 309.54,244.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.94 309.54,244.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.9 309.54,244.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.86 309.54,244.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.82 309.54,244.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.78 309.54,244.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.74 309.54,244.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.7 309.54,244.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.65 309.54,244.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.61 309.54,244.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.57 309.54,244.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.53 309.54,244.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.49 309.54,244.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.45 309.54,244.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.41 309.54,244.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.37 309.54,244.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.33 309.54,244.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.29 309.54,244.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.25 309.54,244.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.2 309.54,244.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.16 309.54,244.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.12 309.54,244.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.08 309.54,244.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244.04 309.54,244.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,244 309.54,243.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.96 309.54,243.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.92 309.54,243.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.88 309.54,243.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.84 309.54,243.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.8 309.54,243.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.75 309.54,243.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.71 309.54,243.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.67 309.54,243.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.63 309.54,243.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.59 309.54,243.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.55 309.54,243.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.51 309.54,243.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.47 309.54,243.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.43 309.54,243.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.39 309.54,243.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.34 309.54,243.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.3 309.54,243.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.26 309.54,243.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.22 309.54,243.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.18 309.54,243.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.14 309.54,243.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.1 309.54,243.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.06 309.54,243.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="309.54,243.02 309.54,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.15,248 308.15,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,248 308.26,247.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.97 308.26,247.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.93 308.26,247.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.89 308.26,247.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.85 308.26,247.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.81 308.26,247.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.77 308.26,247.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.73 308.26,247.7" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.69 308.26,247.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.64 308.26,247.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.6 308.26,247.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.56 308.26,247.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.52 308.26,247.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.48 308.26,247.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.44 308.26,247.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.4 308.26,247.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.36 308.26,247.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.32 308.26,247.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.28 308.26,247.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.23 308.26,247.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.19 308.26,247.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.15 308.26,247.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.11 308.26,247.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.07 308.26,247.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,247.03 308.26,247" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.99 308.26,246.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.95 308.26,246.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.91 308.26,246.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.87 308.26,246.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.83 308.26,246.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.78 308.26,246.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.74 308.26,246.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.7 308.26,246.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.66 308.26,246.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.62 308.26,246.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.58 308.26,246.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.54 308.26,246.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.5 308.26,246.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.46 308.26,246.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.42 308.26,246.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.37 308.26,246.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.33 308.26,246.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.29 308.26,246.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.25 308.26,246.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.21 308.26,246.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.17 308.26,246.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.13 308.26,246.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.09 308.26,246.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.05 308.26,246.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,246.01 308.26,245.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.97 308.26,245.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.92 308.26,245.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.88 308.26,245.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.84 308.26,245.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.8 308.26,245.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.76 308.26,245.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.72 308.26,245.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.68 308.26,245.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.64 308.26,245.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.6 308.26,245.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.56 308.26,245.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.51 308.26,245.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.47 308.26,245.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.43 308.26,245.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.39 308.26,245.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.35 308.26,245.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.31 308.26,245.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.27 308.26,245.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.23 308.26,245.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.19 308.26,245.16" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.15 308.26,245.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.11 308.26,245.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.06 308.26,245.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,245.02 308.26,245" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.98 308.26,244.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.94 308.26,244.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.9 308.26,244.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.86 308.26,244.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.82 308.26,244.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.78 308.26,244.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.74 308.26,244.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.7 308.26,244.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.65 308.26,244.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.61 308.26,244.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.57 308.26,244.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.53 308.26,244.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.49 308.26,244.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.45 308.26,244.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.41 308.26,244.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.37 308.26,244.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.33 308.26,244.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.29 308.26,244.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.25 308.26,244.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.2 308.26,244.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.16 308.26,244.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.12 308.26,244.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.08 308.26,244.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244.04 308.26,244.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,244 308.26,243.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.96 308.26,243.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.92 308.26,243.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.88 308.26,243.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.84 308.26,243.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.8 308.26,243.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.75 308.26,243.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.71 308.26,243.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.67 308.26,243.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.63 308.26,243.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.59 308.26,243.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.55 308.26,243.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.51 308.26,243.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.47 308.26,243.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.43 308.26,243.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.39 308.26,243.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.34 308.26,243.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.3 308.26,243.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.26 308.26,243.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.22 308.26,243.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.18 308.26,243.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.14 308.26,243.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.1 308.26,243.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.06 308.26,243.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.26,243.02 308.26,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.87,248 306.87,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,248 306.99,247.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.97 306.99,247.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.93 306.99,247.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.89 306.99,247.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.85 306.99,247.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.81 306.99,247.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.77 306.99,247.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.73 306.99,247.7" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.69 306.99,247.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.64 306.99,247.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.6 306.99,247.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.56 306.99,247.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.52 306.99,247.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.48 306.99,247.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.44 306.99,247.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.4 306.99,247.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.36 306.99,247.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.32 306.99,247.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.28 306.99,247.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.23 306.99,247.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.19 306.99,247.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.15 306.99,247.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.11 306.99,247.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.07 306.99,247.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,247.03 306.99,247" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.99 306.99,246.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.95 306.99,246.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.91 306.99,246.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.87 306.99,246.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.83 306.99,246.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.78 306.99,246.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.74 306.99,246.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.7 306.99,246.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.66 306.99,246.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.62 306.99,246.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.58 306.99,246.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.54 306.99,246.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.5 306.99,246.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.46 306.99,246.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.42 306.99,246.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.37 306.99,246.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.33 306.99,246.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.29 306.99,246.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.25 306.99,246.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.21 306.99,246.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.17 306.99,246.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.13 306.99,246.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.09 306.99,246.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.05 306.99,246.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,246.01 306.99,245.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.97 306.99,245.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.92 306.99,245.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.88 306.99,245.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.84 306.99,245.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.8 306.99,245.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.76 306.99,245.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.72 306.99,245.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.68 306.99,245.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.64 306.99,245.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.6 306.99,245.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.56 306.99,245.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.51 306.99,245.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.47 306.99,245.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.43 306.99,245.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.39 306.99,245.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.35 306.99,245.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.31 306.99,245.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.27 306.99,245.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.23 306.99,245.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.19 306.99,245.16" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.15 306.99,245.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.11 306.99,245.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.06 306.99,245.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,245.02 306.99,245" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.98 306.99,244.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.94 306.99,244.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.9 306.99,244.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.86 306.99,244.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.82 306.99,244.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.78 306.99,244.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.74 306.99,244.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.7 306.99,244.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.65 306.99,244.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.61 306.99,244.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.57 306.99,244.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.53 306.99,244.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.49 306.99,244.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.45 306.99,244.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.41 306.99,244.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.37 306.99,244.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.33 306.99,244.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.29 306.99,244.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.25 306.99,244.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.2 306.99,244.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.16 306.99,244.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.12 306.99,244.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.08 306.99,244.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244.04 306.99,244.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,244 306.99,243.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.96 306.99,243.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.92 306.99,243.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.88 306.99,243.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.84 306.99,243.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.8 306.99,243.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.75 306.99,243.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.71 306.99,243.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.67 306.99,243.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.63 306.99,243.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.59 306.99,243.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.55 306.99,243.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.51 306.99,243.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.47 306.99,243.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.43 306.99,243.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.39 306.99,243.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.34 306.99,243.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.3 306.99,243.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.26 306.99,243.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.22 306.99,243.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.18 306.99,243.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.14 306.99,243.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.1 306.99,243.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.06 306.99,243.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,243.02 306.99,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.6,248 305.6,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.33,248 304.33,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,248 305.71,247.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.97 305.71,247.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.93 305.71,247.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.89 305.71,247.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.85 305.71,247.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.81 305.71,247.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.77 305.71,247.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.73 305.71,247.7" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.69 305.71,247.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.64 305.71,247.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.6 305.71,247.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.56 305.71,247.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.52 305.71,247.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.48 305.71,247.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.44 305.71,247.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.4 305.71,247.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.36 305.71,247.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.32 305.71,247.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.28 305.71,247.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.23 305.71,247.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.19 305.71,247.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.15 305.71,247.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.11 305.71,247.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.07 305.71,247.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,247.03 305.71,247" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.99 305.71,246.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.95 305.71,246.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.91 305.71,246.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.87 305.71,246.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.83 305.71,246.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.78 305.71,246.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.74 305.71,246.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.7 305.71,246.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.66 305.71,246.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.62 305.71,246.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.58 305.71,246.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.54 305.71,246.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.5 305.71,246.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.46 305.71,246.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.42 305.71,246.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.37 305.71,246.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.33 305.71,246.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.29 305.71,246.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.25 305.71,246.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.21 305.71,246.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.17 305.71,246.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.13 305.71,246.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.09 305.71,246.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.05 305.71,246.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,246.01 305.71,245.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.97 305.71,245.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.92 305.71,245.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.88 305.71,245.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.84 305.71,245.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.8 305.71,245.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.76 305.71,245.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.72 305.71,245.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.68 305.71,245.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.64 305.71,245.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.6 305.71,245.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.56 305.71,245.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.51 305.71,245.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.47 305.71,245.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.43 305.71,245.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.39 305.71,245.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.35 305.71,245.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.31 305.71,245.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.27 305.71,245.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.23 305.71,245.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.19 305.71,245.16" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.15 305.71,245.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.11 305.71,245.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.06 305.71,245.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,245.02 305.71,245" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.98 305.71,244.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.94 305.71,244.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.9 305.71,244.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.86 305.71,244.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.82 305.71,244.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.78 305.71,244.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.74 305.71,244.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.7 305.71,244.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.65 305.71,244.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.61 305.71,244.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.57 305.71,244.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.53 305.71,244.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.49 305.71,244.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.45 305.71,244.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.41 305.71,244.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.37 305.71,244.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.33 305.71,244.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.29 305.71,244.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.25 305.71,244.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.2 305.71,244.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.16 305.71,244.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.12 305.71,244.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.08 305.71,244.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244.04 305.71,244.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,244 305.71,243.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.96 305.71,243.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.92 305.71,243.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.88 305.71,243.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.84 305.71,243.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.8 305.71,243.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.75 305.71,243.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.71 305.71,243.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.67 305.71,243.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.63 305.71,243.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.59 305.71,243.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.55 305.71,243.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.51 305.71,243.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.47 305.71,243.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.43 305.71,243.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.39 305.71,243.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.34 305.71,243.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.3 305.71,243.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.26 305.71,243.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.22 305.71,243.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.18 305.71,243.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.14 305.71,243.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.1 305.71,243.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.06 305.71,243.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.71,243.02 305.71,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,248 304.44,247.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.97 304.44,247.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.93 304.44,247.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.89 304.44,247.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.85 304.44,247.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.81 304.44,247.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.77 304.44,247.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.73 304.44,247.7" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.69 304.44,247.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.64 304.44,247.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.6 304.44,247.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.56 304.44,247.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.52 304.44,247.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.48 304.44,247.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.44 304.44,247.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.4 304.44,247.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.36 304.44,247.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.32 304.44,247.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.28 304.44,247.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.23 304.44,247.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.19 304.44,247.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.15 304.44,247.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.11 304.44,247.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.07 304.44,247.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,247.03 304.44,247" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.99 304.44,246.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.95 304.44,246.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.91 304.44,246.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.87 304.44,246.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.83 304.44,246.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.78 304.44,246.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.74 304.44,246.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.7 304.44,246.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.66 304.44,246.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.62 304.44,246.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.58 304.44,246.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.54 304.44,246.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.5 304.44,246.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.46 304.44,246.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.42 304.44,246.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.37 304.44,246.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.33 304.44,246.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.29 304.44,246.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.25 304.44,246.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.21 304.44,246.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.17 304.44,246.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.13 304.44,246.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.09 304.44,246.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.05 304.44,246.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,246.01 304.44,245.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.97 304.44,245.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.92 304.44,245.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.88 304.44,245.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.84 304.44,245.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.8 304.44,245.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.76 304.44,245.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.72 304.44,245.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.68 304.44,245.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.64 304.44,245.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.6 304.44,245.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.56 304.44,245.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.51 304.44,245.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.47 304.44,245.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.43 304.44,245.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.39 304.44,245.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.35 304.44,245.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.31 304.44,245.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.27 304.44,245.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.23 304.44,245.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.19 304.44,245.16" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.15 304.44,245.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.11 304.44,245.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.06 304.44,245.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,245.02 304.44,245" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.98 304.44,244.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.94 304.44,244.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.9 304.44,244.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.86 304.44,244.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.82 304.44,244.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.78 304.44,244.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.74 304.44,244.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.7 304.44,244.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.65 304.44,244.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.61 304.44,244.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.57 304.44,244.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.53 304.44,244.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.49 304.44,244.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.45 304.44,244.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.41 304.44,244.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.37 304.44,244.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.33 304.44,244.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.29 304.44,244.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.25 304.44,244.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.2 304.44,244.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.16 304.44,244.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.12 304.44,244.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.08 304.44,244.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244.04 304.44,244.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,244 304.44,243.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.96 304.44,243.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.92 304.44,243.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.88 304.44,243.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.84 304.44,243.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.8 304.44,243.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.75 304.44,243.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.71 304.44,243.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.67 304.44,243.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.63 304.44,243.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.59 304.44,243.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.55 304.44,243.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.51 304.44,243.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.47 304.44,243.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.43 304.44,243.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.39 304.44,243.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.34 304.44,243.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.3 304.44,243.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.26 304.44,243.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.22 304.44,243.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.18 304.44,243.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.14 304.44,243.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.1 304.44,243.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.06 304.44,243.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.44,243.02 304.44,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,248 303.17,247.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.97 303.17,247.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.93 303.17,247.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.89 303.17,247.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.85 303.17,247.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.81 303.17,247.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.77 303.17,247.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.73 303.17,247.7" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.69 303.17,247.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.64 303.17,247.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.6 303.17,247.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.56 303.17,247.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.52 303.17,247.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.48 303.17,247.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.44 303.17,247.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.4 303.17,247.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.36 303.17,247.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.32 303.17,247.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.28 303.17,247.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.23 303.17,247.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.19 303.17,247.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.15 303.17,247.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.11 303.17,247.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.07 303.17,247.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,247.03 303.17,247" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.99 303.17,246.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.95 303.17,246.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.91 303.17,246.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.87 303.17,246.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.83 303.17,246.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.78 303.17,246.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.74 303.17,246.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.7 303.17,246.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.66 303.17,246.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.62 303.17,246.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.58 303.17,246.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.54 303.17,246.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.5 303.17,246.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.46 303.17,246.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.42 303.17,246.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.37 303.17,246.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.33 303.17,246.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.29 303.17,246.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.25 303.17,246.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.21 303.17,246.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.17 303.17,246.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.13 303.17,246.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.09 303.17,246.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.05 303.17,246.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,246.01 303.17,245.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.97 303.17,245.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.92 303.17,245.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.88 303.17,245.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.84 303.17,245.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.8 303.17,245.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.76 303.17,245.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.72 303.17,245.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.68 303.17,245.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.64 303.17,245.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.6 303.17,245.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.56 303.17,245.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.51 303.17,245.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.47 303.17,245.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.43 303.17,245.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.39 303.17,245.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.35 303.17,245.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.31 303.17,245.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.27 303.17,245.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.23 303.17,245.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.19 303.17,245.16" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.15 303.17,245.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.11 303.17,245.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.06 303.17,245.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,245.02 303.17,245" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.98 303.17,244.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.94 303.17,244.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.9 303.17,244.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.86 303.17,244.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.82 303.17,244.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.78 303.17,244.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.74 303.17,244.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.7 303.17,244.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.65 303.17,244.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.61 303.17,244.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.57 303.17,244.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.53 303.17,244.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.49 303.17,244.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.45 303.17,244.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.41 303.17,244.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.37 303.17,244.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.33 303.17,244.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.29 303.17,244.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.25 303.17,244.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.2 303.17,244.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.16 303.17,244.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.12 303.17,244.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.08 303.17,244.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244.04 303.17,244.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,244 303.17,243.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.96 303.17,243.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.92 303.17,243.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.88 303.17,243.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.84 303.17,243.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.8 303.17,243.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.75 303.17,243.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.71 303.17,243.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.67 303.17,243.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.63 303.17,243.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.59 303.17,243.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.55 303.17,243.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.51 303.17,243.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.47 303.17,243.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.43 303.17,243.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.39 303.17,243.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.34 303.17,243.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.3 303.17,243.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.26 303.17,243.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.22 303.17,243.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.18 303.17,243.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.14 303.17,243.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.1 303.17,243.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.06 303.17,243.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.17,243.02 303.17,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.05,248 303.05,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.78,248 301.78,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,248 301.89,247.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.97 301.89,247.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.93 301.89,247.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.89 301.89,247.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.85 301.89,247.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.81 301.89,247.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.77 301.89,247.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.73 301.89,247.7" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.69 301.89,247.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.64 301.89,247.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.6 301.89,247.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.56 301.89,247.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.52 301.89,247.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.48 301.89,247.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.44 301.89,247.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.4 301.89,247.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.36 301.89,247.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.32 301.89,247.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.28 301.89,247.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.23 301.89,247.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.19 301.89,247.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.15 301.89,247.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.11 301.89,247.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.07 301.89,247.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,247.03 301.89,247" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.99 301.89,246.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.95 301.89,246.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.91 301.89,246.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.87 301.89,246.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.83 301.89,246.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.78 301.89,246.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.74 301.89,246.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.7 301.89,246.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.66 301.89,246.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.62 301.89,246.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.58 301.89,246.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.54 301.89,246.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.5 301.89,246.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.46 301.89,246.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.42 301.89,246.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.37 301.89,246.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.33 301.89,246.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.29 301.89,246.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.25 301.89,246.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.21 301.89,246.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.17 301.89,246.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.13 301.89,246.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.09 301.89,246.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.05 301.89,246.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,246.01 301.89,245.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.97 301.89,245.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.92 301.89,245.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.88 301.89,245.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.84 301.89,245.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.8 301.89,245.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.76 301.89,245.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.72 301.89,245.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.68 301.89,245.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.64 301.89,245.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.6 301.89,245.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.56 301.89,245.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.51 301.89,245.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.47 301.89,245.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.43 301.89,245.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.39 301.89,245.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.35 301.89,245.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.31 301.89,245.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.27 301.89,245.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.23 301.89,245.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.19 301.89,245.16" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.15 301.89,245.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.11 301.89,245.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.06 301.89,245.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,245.02 301.89,245" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.98 301.89,244.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.94 301.89,244.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.9 301.89,244.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.86 301.89,244.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.82 301.89,244.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.78 301.89,244.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.74 301.89,244.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.7 301.89,244.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.65 301.89,244.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.61 301.89,244.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.57 301.89,244.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.53 301.89,244.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.49 301.89,244.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.45 301.89,244.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.41 301.89,244.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.37 301.89,244.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.33 301.89,244.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.29 301.89,244.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.25 301.89,244.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.2 301.89,244.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.16 301.89,244.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.12 301.89,244.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.08 301.89,244.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244.04 301.89,244.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,244 301.89,243.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.96 301.89,243.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.92 301.89,243.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.88 301.89,243.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.84 301.89,243.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.8 301.89,243.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.75 301.89,243.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.71 301.89,243.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.67 301.89,243.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.63 301.89,243.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.59 301.89,243.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.55 301.89,243.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.51 301.89,243.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.47 301.89,243.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.43 301.89,243.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.39 301.89,243.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.34 301.89,243.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.3 301.89,243.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.26 301.89,243.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.22 301.89,243.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.18 301.89,243.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.14 301.89,243.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.1 301.89,243.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.06 301.89,243.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.89,243.02 301.89,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.5,248 300.5,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,248 300.62,247.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.97 300.62,247.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.93 300.62,247.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.89 300.62,247.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.85 300.62,247.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.81 300.62,247.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.77 300.62,247.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.73 300.62,247.7" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.69 300.62,247.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.64 300.62,247.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.6 300.62,247.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.56 300.62,247.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.52 300.62,247.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.48 300.62,247.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.44 300.62,247.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.4 300.62,247.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.36 300.62,247.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.32 300.62,247.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.28 300.62,247.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.23 300.62,247.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.19 300.62,247.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.15 300.62,247.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.11 300.62,247.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.07 300.62,247.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,247.03 300.62,247" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.99 300.62,246.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.95 300.62,246.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.91 300.62,246.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.87 300.62,246.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.83 300.62,246.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.78 300.62,246.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.74 300.62,246.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.7 300.62,246.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.66 300.62,246.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.62 300.62,246.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.58 300.62,246.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.54 300.62,246.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.5 300.62,246.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.46 300.62,246.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.42 300.62,246.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.37 300.62,246.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.33 300.62,246.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.29 300.62,246.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.25 300.62,246.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.21 300.62,246.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.17 300.62,246.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.13 300.62,246.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.09 300.62,246.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.05 300.62,246.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,246.01 300.62,245.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.97 300.62,245.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.92 300.62,245.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.88 300.62,245.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.84 300.62,245.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.8 300.62,245.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.76 300.62,245.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.72 300.62,245.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.68 300.62,245.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.64 300.62,245.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.6 300.62,245.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.56 300.62,245.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.51 300.62,245.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.47 300.62,245.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.43 300.62,245.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.39 300.62,245.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.35 300.62,245.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.31 300.62,245.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.27 300.62,245.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.23 300.62,245.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.19 300.62,245.16" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.15 300.62,245.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.11 300.62,245.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.06 300.62,245.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,245.02 300.62,245" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.98 300.62,244.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.94 300.62,244.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.9 300.62,244.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.86 300.62,244.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.82 300.62,244.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.78 300.62,244.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.74 300.62,244.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.7 300.62,244.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.65 300.62,244.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.61 300.62,244.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.57 300.62,244.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.53 300.62,244.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.49 300.62,244.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.45 300.62,244.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.41 300.62,244.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.37 300.62,244.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.33 300.62,244.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.29 300.62,244.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.25 300.62,244.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.2 300.62,244.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.16 300.62,244.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.12 300.62,244.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.08 300.62,244.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244.04 300.62,244.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,244 300.62,243.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.96 300.62,243.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.92 300.62,243.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.88 300.62,243.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.84 300.62,243.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.8 300.62,243.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.75 300.62,243.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.71 300.62,243.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.67 300.62,243.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.63 300.62,243.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.59 300.62,243.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.55 300.62,243.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.51 300.62,243.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.47 300.62,243.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.43 300.62,243.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.39 300.62,243.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.34 300.62,243.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.3 300.62,243.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.26 300.62,243.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.22 300.62,243.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.18 300.62,243.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.14 300.62,243.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.1 300.62,243.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.06 300.62,243.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.62,243.02 300.62,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.23,248 299.23,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,248 299.34,247.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.97 299.34,247.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.93 299.34,247.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.89 299.34,247.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.85 299.34,247.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.81 299.34,247.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.77 299.34,247.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.73 299.34,247.7" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.69 299.34,247.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.64 299.34,247.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.6 299.34,247.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.56 299.34,247.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.52 299.34,247.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.48 299.34,247.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.44 299.34,247.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.4 299.34,247.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.36 299.34,247.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.32 299.34,247.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.28 299.34,247.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.23 299.34,247.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.19 299.34,247.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.15 299.34,247.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.11 299.34,247.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.07 299.34,247.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,247.03 299.34,247" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.99 299.34,246.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.95 299.34,246.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.91 299.34,246.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.87 299.34,246.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.83 299.34,246.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.78 299.34,246.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.74 299.34,246.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.7 299.34,246.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.66 299.34,246.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.62 299.34,246.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.58 299.34,246.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.54 299.34,246.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.5 299.34,246.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.46 299.34,246.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.42 299.34,246.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.37 299.34,246.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.33 299.34,246.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.29 299.34,246.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.25 299.34,246.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.21 299.34,246.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.17 299.34,246.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.13 299.34,246.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.09 299.34,246.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.05 299.34,246.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,246.01 299.34,245.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.97 299.34,245.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.92 299.34,245.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.88 299.34,245.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.84 299.34,245.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.8 299.34,245.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.76 299.34,245.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.72 299.34,245.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.68 299.34,245.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.64 299.34,245.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.6 299.34,245.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.56 299.34,245.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.51 299.34,245.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.47 299.34,245.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.43 299.34,245.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.39 299.34,245.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.35 299.34,245.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.31 299.34,245.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.27 299.34,245.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.23 299.34,245.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.19 299.34,245.16" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.15 299.34,245.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.11 299.34,245.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.06 299.34,245.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,245.02 299.34,245" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.98 299.34,244.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.94 299.34,244.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.9 299.34,244.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.86 299.34,244.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.82 299.34,244.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.78 299.34,244.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.74 299.34,244.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.7 299.34,244.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.65 299.34,244.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.61 299.34,244.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.57 299.34,244.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.53 299.34,244.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.49 299.34,244.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.45 299.34,244.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.41 299.34,244.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.37 299.34,244.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.33 299.34,244.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.29 299.34,244.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.25 299.34,244.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.2 299.34,244.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.16 299.34,244.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.12 299.34,244.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.08 299.34,244.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244.04 299.34,244.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,244 299.34,243.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.96 299.34,243.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.92 299.34,243.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.88 299.34,243.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.84 299.34,243.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.8 299.34,243.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.75 299.34,243.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.71 299.34,243.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.67 299.34,243.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.63 299.34,243.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.59 299.34,243.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.55 299.34,243.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.51 299.34,243.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.47 299.34,243.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.43 299.34,243.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.39 299.34,243.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.34 299.34,243.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.3 299.34,243.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.26 299.34,243.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.22 299.34,243.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.18 299.34,243.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.14 299.34,243.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.1 299.34,243.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.06 299.34,243.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.34,243.02 299.34,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,248 298.07,247.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.97 298.07,247.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.93 298.07,247.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.89 298.07,247.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.85 298.07,247.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.81 298.07,247.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.77 298.07,247.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.73 298.07,247.7" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.69 298.07,247.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.64 298.07,247.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.6 298.07,247.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.56 298.07,247.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.52 298.07,247.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.48 298.07,247.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.44 298.07,247.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.4 298.07,247.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.36 298.07,247.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.32 298.07,247.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.28 298.07,247.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.23 298.07,247.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.19 298.07,247.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.15 298.07,247.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.11 298.07,247.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.07 298.07,247.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,247.03 298.07,247" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.99 298.07,246.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.95 298.07,246.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.91 298.07,246.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.87 298.07,246.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.83 298.07,246.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.78 298.07,246.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.74 298.07,246.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.7 298.07,246.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.66 298.07,246.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.62 298.07,246.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.58 298.07,246.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.54 298.07,246.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.5 298.07,246.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.46 298.07,246.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.42 298.07,246.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.37 298.07,246.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.33 298.07,246.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.29 298.07,246.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.25 298.07,246.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.21 298.07,246.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.17 298.07,246.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.13 298.07,246.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.09 298.07,246.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.05 298.07,246.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,246.01 298.07,245.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.97 298.07,245.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.92 298.07,245.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.88 298.07,245.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.84 298.07,245.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.8 298.07,245.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.76 298.07,245.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.72 298.07,245.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.68 298.07,245.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.64 298.07,245.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.6 298.07,245.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.56 298.07,245.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.51 298.07,245.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.47 298.07,245.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.43 298.07,245.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.39 298.07,245.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.35 298.07,245.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.31 298.07,245.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.27 298.07,245.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.23 298.07,245.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.19 298.07,245.16" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.15 298.07,245.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.11 298.07,245.08" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.06 298.07,245.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,245.02 298.07,245" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.98 298.07,244.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.94 298.07,244.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.9 298.07,244.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.86 298.07,244.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.82 298.07,244.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.78 298.07,244.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.74 298.07,244.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.7 298.07,244.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.65 298.07,244.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.61 298.07,244.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.57 298.07,244.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.53 298.07,244.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.49 298.07,244.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.45 298.07,244.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.41 298.07,244.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.37 298.07,244.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.33 298.07,244.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.29 298.07,244.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.25 298.07,244.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.2 298.07,244.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.16 298.07,244.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.12 298.07,244.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.08 298.07,244.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244.04 298.07,244.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,244 298.07,243.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.96 298.07,243.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.92 298.07,243.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.88 298.07,243.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.84 298.07,243.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.8 298.07,243.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.75 298.07,243.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.71 298.07,243.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.67 298.07,243.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.63 298.07,243.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.59 298.07,243.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.55 298.07,243.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.51 298.07,243.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.47 298.07,243.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.43 298.07,243.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.39 298.07,243.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.34 298.07,243.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.3 298.07,243.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.26 298.07,243.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.22 298.07,243.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.18 298.07,243.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.14 298.07,243.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.1 298.07,243.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.06 298.07,243.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.07,243.02 298.07,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.96,248 297.96,243" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.59,248.23 291.9,248.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.9,242.77 296.59,242.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="317.63,253.26 317.63,251.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="317.72,251.82 317.63,251.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.64,272.01 332.64,272.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.64,277.18 332.64,277.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.1,272.01 332.1,272.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.1,277.18 332.1,277.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.1,272.63 332.64,272.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.1,277.18 332.64,277.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328,272.85 328.14,273.91 328.55,274.9 329.2,275.75 330.05,276.4 331.04,276.81 332.1,276.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332.64,277.18 332.1,277.18 332.1,276.95 332.64,276.95 332.64,277.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328,272.85 328,273.06 332.1,273.06 332.1,272.85 328,272.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332.64,272.85 332.1,272.85 332.1,272.63 332.64,272.63 332.64,272.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332.52,271 333.21,271" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.52,266.45 333.21,266.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="333.14,270.77 334.2,270.63 335.18,270.22 336.03,269.57 336.68,268.72 337.09,267.73 337.23,266.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332.59,266.45 333.14,266.45 333.14,266.67 332.59,266.67 332.59,266.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.23,266.67 337.23,266.88 333.14,266.88 333.14,266.67 337.23,266.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332.59,270.77 333.14,270.77 333.14,271 332.59,271 332.59,270.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332.52,266.45 332.52,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.52,271.32 332.52,271" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.01,272.01 333.31,272.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="333.21,271.47 333.31,271.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.63,267.37 336.57,267.51 335.59,267.92 334.74,268.57 334.09,269.42 333.68,270.41 333.54,271.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.31,272.01 333.31,271.47 333.54,271.47 333.54,272.01 333.31,272.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.63,267.37 337.43,267.37 337.43,271.47 337.63,271.47 337.63,267.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.63,272.01 337.63,271.47 337.86,271.47 337.86,272.01 337.63,272.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.86,272.01 338.5,272.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.86,271.47 337.96,271.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.96,269.59 337.96,272.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.5,269.59 338.5,272.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,277.79 325.84,277.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.53,277.79 326.53,277.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.53,277.64 325.84,277.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,277.64 326.53,277.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,273.02 325.84,272.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.53,273.02 326.53,272.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.53,273.02 325.84,273.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,273.02 326.53,273.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.84,273.02 326.53,273.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.1,345.32 507.16,345.14 507.22,344.73 507.73,346.66" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="508.48,344.05 508.38,343.91 508.25,343.82 508.13,343.81 507.96,343.99 507.9,344.17 507.86,344.44 507.86,344.67 507.9,344.98 508.02,345.44 508.14,345.68 508.23,345.82 508.37,345.91 508.48,345.92 508.65,345.74 508.71,345.56 508.75,345.29 508.75,345.06" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="508.78,343.75 508.76,343.66 508.75,343.43 508.77,343.29 508.83,343.11 509.01,342.94 509.12,342.94 509.19,342.99 509.28,343.13 509.33,343.32 509.34,343.54 509.32,343.91 509.13,345.26 509.74,344.65" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="509.75,342.2 509.64,342.42 509.63,342.78 509.71,343.29 509.78,343.56 509.95,343.98 510.11,344.17 510.27,344.13 510.35,344.04 510.46,343.82 510.47,343.45 510.4,342.95 510.32,342.67 510.15,342.26 509.99,342.07 509.84,342.11 509.75,342.2" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="299.17,331.73 301.12,331.73 301.12,333.69 299.17,333.69 299.17,331.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.17,331.73 301.12,331.73 301.12,333.69 299.17,333.69 299.17,331.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.17,358.54 301.12,358.54 301.12,360.5 299.17,360.5 299.17,358.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.17,331.73 301.12,331.73 301.12,333.69 299.17,333.69 299.17,331.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.91,353.51 299.13,353.51 299.13,353.28 301.91,353.28 301.91,353.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.91,348.51 299.13,348.51 299.13,348.27 301.91,348.27 301.91,348.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.91,338.95 299.13,338.95 299.13,338.72 301.91,338.72 301.91,338.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.91,343.96 299.13,343.96 299.13,343.72 301.91,343.72 301.91,343.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.87,363.71 306.41,363.71 306.41,363.48 305.87,363.48 305.87,363.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.87,359.38 301.77,359.38 301.77,359.59 305.87,359.59 305.87,359.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="306.41,359.16 305.87,359.16 305.87,359.38 306.41,359.38 306.41,359.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.77,359.59 305.87,363.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.29,358.16 297.29,375.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="297.83,358.7 297.83,360.34" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="297.83,360.89 297.83,375.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="299.17,358.16 297.29,358.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="298.78,358.7 297.83,358.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="306.41,375.45 306.41,363.71" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="306.41,359.16 306.41,358.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="305.87,375.45 305.87,363.71" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="305.87,359.16 305.87,358.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="301.12,358.16 306.41,358.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="301.51,358.7 305.87,358.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="305.87,359.16 306.41,359.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.87,363.71 306.41,363.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.87,331.12 299.87,331.34 300.42,331.34 300.42,331.12 299.87,331.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.78,333.53 297.83,333.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="298.78,334.07 297.29,334.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="298.78,331.34 297.29,331.34" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="298.78,331.89 297.83,331.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="297.29,331.34 297.29,334.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="297.83,331.89 297.83,333.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="301.51,331.34 298.78,331.34 298.78,334.07 301.51,334.07 301.51,331.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.51,358.16 298.78,358.16 298.78,360.89 301.51,360.89 301.51,358.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.78,360.89 297.83,360.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="298.78,360.34 297.83,360.34" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="299.17,358.54 301.12,358.54 301.12,360.5 299.17,360.5 299.17,358.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.96,306.85 300.33,306.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.42,306.85 300.42,325.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.87,325.86 299.87,306.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.15,307.07 300.15,325.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.87,306.85 299.87,307.07 300.42,307.07 300.42,306.85 299.87,306.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.87,331.12 299.87,331.34 300.42,331.34 300.42,331.12 299.87,331.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.87,312.95 299.87,313.18 300.42,313.18 300.42,312.95 299.87,312.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.87,326.08 299.87,325.86 300.42,325.86 300.42,326.08 299.87,326.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.87,319.4 299.87,319.17 300.42,319.17 300.42,319.4 299.87,319.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.06,278.52 344.25,279.96 344.8,281.3 345.68,282.45 346.83,283.33 348.17,283.88 349.6,284.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.83,295.28 349.83,295.82" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.83,295.82 343.83,295.28" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.83,295.82 343.83,295.28" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="349.83,295.82 349.6,295.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.6,295.82 349.6,295.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.6,295.28 349.83,295.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.83,295.28 349.83,295.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.83,295.82 343.83,295.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.83,295.28 344.06,295.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.06,295.28 344.06,295.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.06,295.82 343.83,295.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.6,289.73 348.17,289.92 346.83,290.47 345.68,291.35 344.8,292.5 344.25,293.84 344.06,295.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.15,377.7 310.05,377.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.15,378.05 310.05,378.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.15,378.05 310.05,378.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.52,338.72 300.52,334.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.52,358.16 300.52,353.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.39,328.5 298.45,328.32 298.51,327.91 299.02,329.84" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="299.77,327.24 299.67,327.1 299.54,327 299.42,327 299.25,327.17 299.19,327.35 299.15,327.62 299.15,327.85 299.19,328.17 299.31,328.63 299.43,328.86 299.52,329 299.66,329.09 299.77,329.1 299.94,328.92 300,328.75 300.04,328.47 300.04,328.25" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="300.12,326.3 300.02,326.52 300.02,326.75 300.07,326.93 300.16,327.07 300.28,327.08 300.48,326.99 300.63,326.95 300.77,327.05 300.86,327.19 300.93,327.47 300.94,327.69 300.92,327.83 300.81,328.05 300.64,328.23 300.48,328.27 300.42,328.22 300.32,328.08 300.25,327.8 300.24,327.57 300.28,327.3 300.39,327.08 300.54,326.81 300.6,326.63 300.6,326.41 300.55,326.22 300.45,326.08 300.3,326.12 300.12,326.3" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="299.87,330.24 299.87,330.47 300.42,330.47 300.42,330.24 299.87,330.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.87,330.24 299.87,330.47 300.42,330.47 300.42,330.24 299.87,330.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.42,331.1 300.42,330.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.87,331.1 299.87,330.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.15,330.47 300.15,331.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.87,330.24 295.71,330.24 295.71,330.04 299.87,330.04 299.87,330.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.87,326.08 298.8,326.23 297.79,326.64 296.93,327.3 296.27,328.16 295.86,329.17 295.71,330.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.75,413.91 398.75,438.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="398.75,411.95 398.75,387.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="415.48,386.35 415.48,386.55" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="414.93,386.55 414.93,386.35" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="414.93,386.55 415.48,386.55" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="410.83,386.78 410.97,387.84 411.38,388.83 412.03,389.68 412.88,390.33 413.87,390.74 414.93,390.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.93,391.11 415.48,391.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.48,391.11 415.48,390.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.48,390.88 414.93,390.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.93,390.88 414.93,391.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.93,386.78 410.83,386.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="410.83,386.78 410.83,386.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="410.83,386.98 414.93,386.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.93,386.98 414.93,386.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.48,386.55 414.93,386.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.93,386.55 414.93,386.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.93,386.78 415.48,386.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.48,386.78 415.48,386.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.48,391.11 414.93,391.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="535.34,420.2 534.65,420.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,426.23 533.95,426.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="535.17,426.58 533.95,426.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,426.23 533.95,426.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,426.23 534.65,426.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,420.2 534.65,420.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="533.95,426.23 534.65,426.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,420.43 534.65,420.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,420.2 533.95,420.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,420.2 533.95,420.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,420.43 534.65,420.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,426.23 534.65,426" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,426 533.95,426" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,426 533.95,426.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,426.23 534.65,426.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,426.58 534.65,426.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,426.58 533.95,426.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,426.58 533.95,426.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,426.58 533.95,426.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.65,426.81 534.65,426.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,426.58 533.95,426.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,426.58 533.95,426.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,426.81 534.65,426.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.82,426.58 534.82,432.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.39,426.81 534.39,432.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,426.81 534.21,432.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="535.17,426.23 535.17,426.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.82,420.2 534.82,426.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="534.62,432.52 534.62,432.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.62,432.29 533.93,432.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.93,432.29 533.93,432.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.93,432.52 534.62,432.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.39,420.43 534.39,426" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.21,420.43 534.21,426" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.19,439.52 411.96,439.52 411.96,431.2 409.19,431.2 409.19,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="413.35,429.81 416.13,429.81 416.13,427.04 413.35,427.04 413.35,429.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="413.35,427.04 409.19,427.04 409.19,431.2 411.96,431.2 411.96,431.2 412.03,430.65 412.33,430.18 412.8,429.88 413.35,429.81 413.35,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.84,439.52 406.07,439.52 406.07,431.2 408.84,431.2 408.84,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.68,429.81 401.9,429.81 401.9,427.04 404.68,427.04 404.68,429.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.68,427.04 408.84,427.04 408.84,431.2 406.07,431.2 406.07,431.2 405.99,430.65 405.7,430.18 405.23,429.88 404.68,429.81 404.68,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="416.13,427.15 414.39,427.15 414.39,429.81 416.13,429.81 416.13,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="416.13,429.81 414.39,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="415.71,429.97 414.79,429.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.64,427.15 401.9,427.15 401.9,429.81 403.64,429.81 403.64,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.64,429.81 401.9,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.22,429.97 402.3,429.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="412.37,436.4 412.37,438.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="411.96,435.36 411.96,439.52 409.88,439.52 409.88,435.36 411.96,435.36 409.88,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.66,438.48 405.66,436.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="406.07,439.52 406.07,435.36 408.15,435.36 408.15,439.52 406.07,439.52 408.15,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.19,427.04 413.35,427.04 413.35,426.69 409.19,426.69 409.19,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="413.35,427.04 416.13,427.04 416.13,426.69 413.35,426.69 413.35,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.84,427.04 404.68,427.04 404.68,426.69 408.84,426.69 408.84,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.68,427.04 401.9,427.04 401.9,426.69 404.68,426.69 404.68,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.68,439.52 422.45,439.52 422.45,431.2 419.68,431.2 419.68,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="423.84,429.81 426.62,429.81 426.62,427.04 423.84,427.04 423.84,429.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="423.84,427.04 419.68,427.04 419.68,431.2 422.45,431.2 422.45,431.2 422.52,430.65 422.82,430.18 423.29,429.88 423.84,429.81 423.84,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="426.62,427.15 424.88,427.15 424.88,429.81 426.62,429.81 426.62,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="426.62,429.81 424.88,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="426.2,429.97 425.28,429.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="422.85,436.4 422.85,438.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="422.45,435.36 422.45,439.52 420.37,439.52 420.37,435.36 422.45,435.36 420.37,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.68,427.04 423.84,427.04 423.84,426.69 419.68,426.69 419.68,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="423.84,427.04 426.62,427.04 426.62,426.69 423.84,426.69 423.84,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.68,431.2 419.68,427.04 419.33,427.04 419.33,431.2 419.68,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="399.05,439.52 399.09,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="399.12,439.52 399.17,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="399.2,439.52 399.25,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="399.28,439.52 399.33,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="399.36,439.52 399.42,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="399.44,439.52 399.5,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="399.52,439.52 399.58,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="399.61,439.52 399.66,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="399.69,439.52 399.74,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="399.77,439.52 399.82,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="399.85,439.52 399.91,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="399.93,439.52 399.99,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="400.02,439.52 400.07,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="400.1,439.52 400.15,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="400.18,439.52 400.23,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="400.26,439.52 400.32,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="400.34,439.52 400.4,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="400.43,439.52 400.48,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="400.51,439.52 400.56,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="400.59,439.52 400.64,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="400.67,439.52 400.73,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="400.75,439.52 400.81,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="400.84,439.52 400.89,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="400.92,439.52 400.97,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="401,439.52 401.05,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="401.08,439.52 401.14,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="401.16,439.52 401.22,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="401.24,439.52 401.3,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="401.33,439.52 401.38,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="401.41,439.52 401.46,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="401.49,439.52 401.54,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="401.57,439.52 401.63,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="401.65,439.52 401.71,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="401.74,439.52 401.79,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="401.82,439.52 401.87,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="401.9,439.52 401.95,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="401.98,439.52 402.04,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="402.06,439.52 402.12,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="402.15,439.52 402.2,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="402.23,439.52 402.28,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="402.31,439.52 402.36,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="402.39,439.52 402.45,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="402.47,439.52 402.53,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="402.55,439.52 402.61,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="402.64,439.52 402.69,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="402.72,439.52 402.77,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="402.8,439.52 402.86,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="402.88,439.52 402.94,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="402.96,439.52 403.02,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="403.05,439.52 403.1,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="403.13,439.52 403.18,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="403.21,439.52 403.26,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="403.29,439.52 403.35,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="403.37,439.52 403.43,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="403.46,439.52 403.51,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="403.54,439.52 403.59,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="403.62,439.52 403.67,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="403.7,439.52 403.76,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="403.78,439.52 403.84,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="403.87,439.52 403.92,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="403.95,439.52 404,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="404.03,439.52 404.08,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="404.11,439.52 404.17,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="404.19,439.52 404.25,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="404.27,439.52 404.33,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="404.36,439.52 404.41,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="404.44,439.52 404.49,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="404.52,439.52 404.58,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="404.6,439.52 404.66,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="404.68,439.52 404.74,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="404.77,439.52 404.82,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="404.85,439.52 404.9,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="404.93,439.52 404.98,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="405.01,439.52 405.07,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="405.09,439.52 405.15,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="405.18,439.52 405.23,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="405.26,439.52 405.31,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="405.34,439.52 405.39,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="405.42,439.52 405.48,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="405.5,439.52 405.56,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="405.59,439.52 405.64,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="405.67,439.52 405.72,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="405.75,439.52 405.8,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="405.83,439.52 405.89,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="405.91,439.52 405.97,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="405.99,439.52 406.05,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.08,439.52 406.13,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.16,439.52 406.21,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.24,439.52 406.3,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.32,439.52 406.38,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.4,439.52 406.46,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.49,439.52 406.54,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.57,439.52 406.62,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.65,439.52 406.7,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.73,439.52 406.79,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.81,439.52 406.87,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.9,439.52 406.95,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="406.98,439.52 407.03,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="407.06,439.52 407.11,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="407.14,439.52 407.2,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="407.22,439.52 407.28,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="407.31,439.52 407.36,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="407.39,439.52 407.44,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="407.47,439.52 407.52,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="407.55,439.52 407.61,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="407.63,439.52 407.69,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="407.71,439.52 407.77,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="407.8,439.52 407.85,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="407.88,439.52 407.93,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="407.96,439.52 408.02,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.04,439.52 408.1,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.12,439.52 408.18,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.21,439.52 408.26,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.29,439.52 408.34,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.37,439.52 408.42,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.45,439.52 408.51,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.53,439.52 408.59,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.62,439.52 408.67,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.7,439.52 408.75,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.78,439.52 408.83,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.86,439.52 408.92,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="408.94,439.52 409,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="409.03,439.52 409.08,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="409.11,439.52 409.16,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="409.19,439.52 409.24,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="409.27,439.52 409.33,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="409.35,439.52 409.41,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="409.43,439.52 409.49,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="409.52,439.52 409.57,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="409.6,439.52 409.65,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="409.68,439.52 409.73,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="409.76,439.52 409.82,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="409.84,439.52 409.9,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="409.93,439.52 409.98,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="410.01,439.52 410.06,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="410.09,439.52 410.14,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="410.17,439.52 410.23,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="410.25,439.52 410.31,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="410.34,439.52 410.39,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="410.42,439.52 410.47,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="410.5,439.52 410.55,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="410.58,439.52 410.64,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="410.66,439.52 410.72,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="410.75,439.52 410.8,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="410.83,439.52 410.88,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="410.91,439.52 410.96,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="410.99,439.52 411.05,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="411.07,439.52 411.13,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="411.15,439.52 411.21,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="411.24,439.52 411.29,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="411.32,439.52 411.37,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="411.4,439.52 411.45,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="411.48,439.52 411.54,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="411.56,439.52 411.62,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="411.65,439.52 411.7,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="411.73,439.52 411.78,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="411.81,439.52 411.86,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="411.89,439.52 411.95,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="411.97,439.52 412.03,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="412.06,439.52 412.11,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="412.14,439.52 412.19,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="412.22,439.52 412.27,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="412.3,439.52 412.36,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="412.38,439.52 412.44,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="412.46,439.52 412.52,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="412.55,439.52 412.6,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="412.63,439.52 412.68,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="412.71,439.52 412.77,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="412.79,439.52 412.85,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="412.87,439.52 412.93,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="412.96,439.52 413.01,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="413.04,439.52 413.09,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="413.12,439.52 413.17,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="413.2,439.52 413.26,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="413.28,439.52 413.34,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="413.37,439.52 413.42,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="413.45,439.52 413.5,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="413.53,439.52 413.58,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="413.61,439.52 413.67,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="413.69,439.52 413.75,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="413.78,439.52 413.83,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="413.86,439.52 413.91,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="413.94,439.52 413.99,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="414.02,439.52 414.08,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="414.1,439.52 414.16,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="414.18,439.52 414.24,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="414.27,439.52 414.32,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="414.35,439.52 414.4,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="414.43,439.52 414.49,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="414.51,439.52 414.57,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="414.59,439.52 414.65,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="414.68,439.52 414.73,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="414.76,439.52 414.81,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="414.84,439.52 414.89,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="414.92,439.52 414.98,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415,439.52 415.06,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.09,439.52 415.14,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.17,439.52 415.22,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.25,439.52 415.3,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.33,439.52 415.39,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.41,439.52 415.47,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.5,439.52 415.55,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.58,439.52 415.63,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.66,439.52 415.71,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.74,439.52 415.8,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.82,439.52 415.88,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.9,439.52 415.96,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="415.99,439.52 416.04,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.07,439.52 416.12,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.15,439.52 416.21,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.23,439.52 416.29,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.31,439.52 416.37,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.4,439.52 416.45,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.48,439.52 416.53,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.56,439.52 416.61,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.64,439.52 416.7,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.72,439.52 416.78,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.81,439.52 416.86,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.89,439.52 416.94,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="416.97,439.52 417.02,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.05,439.52 417.11,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.13,439.52 417.19,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.22,439.52 417.27,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.3,439.52 417.35,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.38,439.52 417.43,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.46,439.52 417.52,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.54,439.52 417.6,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.62,439.52 417.68,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.71,439.52 417.76,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.79,439.52 417.84,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.87,439.52 417.92,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="417.95,439.52 418.01,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="418.03,439.52 418.09,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="418.12,439.52 418.17,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="418.2,439.52 418.25,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="418.28,439.52 418.33,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="418.36,439.52 418.42,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="418.44,439.52 418.5,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="418.53,439.52 418.58,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="418.61,439.52 418.66,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="418.69,439.52 418.74,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="418.77,439.52 418.83,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="418.85,439.52 418.91,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="418.94,439.52 418.99,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="419.02,439.52 419.07,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="419.1,439.52 419.15,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="419.18,439.52 419.24,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="419.26,439.52 419.32,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="419.34,439.52 419.4,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="419.43,439.52 419.48,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="419.51,439.52 419.56,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="419.59,439.52 419.64,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="419.67,439.52 419.73,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="419.75,439.52 419.81,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="419.84,439.52 419.89,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="419.92,439.52 419.97,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="420,439.52 420.05,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="420.08,439.52 420.14,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="420.16,439.52 420.22,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="420.25,439.52 420.3,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="420.33,439.52 420.38,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="420.41,439.52 420.46,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="420.49,439.52 420.55,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="420.57,439.52 420.63,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="420.65,439.52 420.71,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="420.74,439.52 420.79,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="420.82,439.52 420.87,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="420.9,439.52 420.96,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="420.98,439.52 421.04,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="421.06,439.52 421.12,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="421.15,439.52 421.2,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="421.23,439.52 421.28,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="421.31,439.52 421.36,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="421.39,439.52 421.45,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="421.47,439.52 421.53,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="421.56,439.52 421.61,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="421.64,439.52 421.69,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="421.72,439.52 421.77,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="421.8,439.52 421.86,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="421.88,439.52 421.94,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="421.97,439.52 422.02,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="422.05,439.52 422.1,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="422.13,439.52 422.18,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="422.21,439.52 422.27,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="422.29,439.52 422.35,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="422.37,439.52 422.43,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="422.46,439.52 422.51,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="422.54,439.52 422.59,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="422.62,439.52 422.68,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="422.7,439.52 422.76,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="422.78,439.52 422.84,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="422.87,439.52 422.92,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="422.95,439.52 423,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="423.03,439.52 423.08,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="423.11,439.52 423.17,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="423.19,439.52 423.25,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="423.28,439.52 423.33,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="423.36,439.52 423.41,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="423.44,439.52 423.49,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="423.52,439.52 423.58,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="423.6,439.52 423.66,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="423.69,439.52 423.74,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="423.77,439.52 423.82,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="423.85,439.52 423.9,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="423.93,439.52 423.99,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="424.01,439.52 424.07,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="424.09,439.52 424.15,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="424.18,439.52 424.23,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="424.26,439.52 424.31,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="424.34,439.52 424.4,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="424.42,439.52 424.48,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="424.5,439.52 424.56,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="424.59,439.52 424.64,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="424.67,439.52 424.72,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="424.75,439.52 424.8,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="424.83,439.52 424.89,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="424.91,439.52 424.97,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="425,439.52 425.05,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="425.08,439.52 425.13,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="425.16,439.52 425.21,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="425.24,439.52 425.3,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="425.32,439.52 425.38,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="425.41,439.52 425.46,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="425.49,439.52 425.54,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="425.57,439.52 425.62,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="425.65,439.52 425.71,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="425.73,439.52 425.79,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="425.81,439.52 425.87,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="425.9,439.52 425.95,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="425.98,439.52 426.03,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="426.06,439.52 426.11,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="426.14,439.52 426.2,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="426.22,439.52 426.28,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="426.31,439.52 426.36,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="426.39,439.52 426.44,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="426.47,439.52 426.52,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="426.55,439.52 426.61,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="426.63,439.52 426.69,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="426.72,439.52 426.77,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="426.8,439.52 426.85,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="426.88,439.52 426.93,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="426.96,439.52 427.02,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="427.04,439.52 427.1,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="427.13,439.52 427.18,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="427.21,439.52 427.26,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="427.29,439.52 427.34,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="427.37,439.52 427.43,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="427.45,439.52 427.51,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="427.53,439.52 427.59,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="427.62,439.52 427.67,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="427.7,439.52 427.75,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="427.78,439.52 427.83,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="427.86,439.52 427.92,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="427.94,439.52 428,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="428.03,439.52 428.08,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="428.11,439.52 428.16,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="428.19,439.52 428.24,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="428.27,439.52 428.33,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="428.35,439.52 428.41,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="428.44,439.52 428.49,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="428.52,439.52 428.57,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="428.6,439.52 428.65,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="428.68,439.52 428.74,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="428.76,439.52 428.82,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="428.85,439.52 428.9,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="428.93,439.52 428.98,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="429.01,439.52 429.06,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="429.09,439.52 429.15,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="429.17,439.52 429.23,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="429.25,439.52 429.31,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="429.34,439.52 429.39,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="429.42,439.52 429.47,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="429.5,439.52 429.55,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="429.58,439.52 429.64,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="429.66,439.52 429.72,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="429.75,439.52 429.8,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="429.83,439.52 429.88,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="429.91,439.52 429.96,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="429.99,439.52 430.05,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="430.07,439.52 430.13,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="430.16,439.52 430.21,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="430.24,439.52 430.29,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="430.32,439.52 430.37,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="430.4,439.52 430.46,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="430.48,439.52 430.54,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="430.56,439.52 430.62,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="430.65,439.52 430.7,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="430.73,439.52 430.78,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="430.81,439.52 430.87,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="430.89,439.52 430.95,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="430.97,439.52 431.03,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="431.06,439.52 431.11,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="431.14,439.52 431.19,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="431.22,439.52 431.27,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="431.3,439.52 431.36,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="431.38,439.52 431.44,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="431.47,439.52 431.52,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="431.55,439.52 431.6,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="431.63,439.52 431.68,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="431.71,439.52 431.77,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="431.79,439.52 431.85,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="431.88,439.52 431.93,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="431.96,439.52 432.01,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="432.04,439.52 432.09,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="432.12,439.52 432.18,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="432.2,439.52 432.26,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="432.28,439.52 432.34,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="432.37,439.52 432.42,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="432.45,439.52 432.5,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="432.53,439.52 432.57,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="434.65,439.52 434.68,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="434.71,439.52 434.77,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="434.79,439.52 434.85,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="434.87,439.52 434.93,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="434.96,439.52 435.01,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="435.04,439.52 435.09,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="435.12,439.52 435.18,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="435.2,439.52 435.26,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="435.28,439.52 435.34,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="435.37,439.52 435.42,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="435.45,439.52 435.5,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="435.53,439.52 435.58,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="435.61,439.52 435.67,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="435.69,439.52 435.75,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="435.78,439.52 435.83,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="435.86,439.52 435.91,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="435.94,439.52 435.99,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="436.02,439.52 436.08,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="436.1,439.52 436.16,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="436.19,439.52 436.24,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="436.27,439.52 436.32,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="436.35,439.52 436.4,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="436.43,439.52 436.49,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="436.51,439.52 436.57,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="436.59,439.52 436.65,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="436.68,439.52 436.73,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="436.76,439.52 436.81,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="436.84,439.52 436.9,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="436.92,439.52 436.98,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="437,439.52 437.06,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="437.09,439.52 437.14,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="437.17,439.52 437.22,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="437.25,439.52 437.3,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="437.33,439.52 437.39,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="437.41,439.52 437.47,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="437.5,439.52 437.55,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="437.58,439.52 437.63,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="437.66,439.52 437.71,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="437.74,439.52 437.8,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="437.82,439.52 437.88,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="437.91,439.52 437.96,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="437.99,439.52 438.04,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="438.07,439.52 438.12,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="438.15,439.52 438.21,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="438.23,439.52 438.29,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="438.31,439.52 438.37,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="438.4,439.52 438.45,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="438.48,439.52 438.53,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="438.56,439.52 438.61,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="438.64,439.52 438.7,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="438.72,439.52 438.78,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="438.81,439.52 438.86,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="438.89,439.52 438.94,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="438.97,439.52 439.02,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="439.05,439.52 439.11,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="439.13,439.52 439.19,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="439.22,439.52 439.27,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="439.3,439.52 439.35,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="439.38,439.52 439.43,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="439.46,439.52 439.52,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="439.54,439.52 439.6,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="439.63,439.52 439.68,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="439.71,439.52 439.76,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="439.79,439.52 439.84,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="439.87,439.52 439.93,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="439.95,439.52 440.01,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="440.03,439.52 440.09,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="440.12,439.52 440.17,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="440.2,439.52 440.25,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="440.28,439.52 440.33,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="440.36,439.52 440.42,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="440.44,439.52 440.5,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="440.53,439.52 440.58,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="440.61,439.52 440.66,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="440.69,439.52 440.74,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="440.77,439.52 440.83,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="440.85,439.52 440.91,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="440.94,439.52 440.99,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="441.02,439.52 441.07,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="441.1,439.52 441.15,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="441.18,439.52 441.24,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="441.26,439.52 441.32,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="441.34,439.52 441.4,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="441.43,439.52 441.48,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="441.51,439.52 441.56,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="441.59,439.52 441.65,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="441.67,439.52 441.73,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="441.75,439.52 441.81,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="441.84,439.52 441.89,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="441.92,439.52 441.97,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="442,439.52 442.05,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="442.08,439.52 442.14,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="442.16,439.52 442.22,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="442.25,439.52 442.3,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="442.33,439.52 442.38,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="442.41,439.52 442.46,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="442.49,439.52 442.55,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="442.57,439.52 442.63,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="442.66,439.52 442.71,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="442.74,439.52 442.79,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="442.82,439.52 442.87,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="442.9,439.52 442.96,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="442.98,439.52 443.04,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="443.06,439.52 443.12,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="443.15,439.52 443.2,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="443.23,439.52 443.28,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="443.31,439.52 443.37,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="443.39,439.52 443.45,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="443.47,439.52 443.53,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="443.56,439.52 443.61,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="443.64,439.52 443.69,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="443.72,439.52 443.77,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="443.8,439.52 443.86,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="443.88,439.52 443.94,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="443.97,439.52 444.02,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="444.05,439.52 444.1,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="444.13,439.52 444.18,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="444.21,439.52 444.27,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="444.29,439.52 444.35,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="444.38,439.52 444.43,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="444.46,439.52 444.51,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="444.54,439.52 444.59,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="444.62,439.52 444.68,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="444.7,439.52 444.76,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="444.78,439.52 444.84,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="444.87,439.52 444.92,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="444.95,439.52 445,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="445.03,439.52 445.09,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="445.11,439.52 445.17,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="445.19,439.52 445.25,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="445.28,439.52 445.33,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="445.36,439.52 445.41,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="445.44,439.52 445.49,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="445.52,439.52 445.58,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="445.6,439.52 445.66,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="445.69,439.52 445.74,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="445.77,439.52 445.82,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="445.85,439.52 445.9,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="445.93,439.52 445.99,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.01,439.52 446.07,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.1,439.52 446.15,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.18,439.52 446.23,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.26,439.52 446.31,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.34,439.52 446.4,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.42,439.52 446.48,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.5,439.52 446.56,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.59,439.52 446.64,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.67,439.52 446.72,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.75,439.52 446.81,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.83,439.52 446.89,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.91,439.52 446.97,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447,439.52 447.05,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.08,439.52 447.13,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.16,439.52 447.21,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.24,439.52 447.3,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.32,439.52 447.38,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.41,439.52 447.46,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.49,439.52 447.54,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.57,439.52 447.62,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.65,439.52 447.71,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.73,439.52 447.79,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.82,439.52 447.87,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.9,439.52 447.95,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="447.98,439.52 448.03,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.06,439.52 448.12,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.14,439.52 448.2,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.22,439.52 448.28,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.31,439.52 448.36,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.39,439.52 448.44,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.47,439.52 448.52,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.55,439.52 448.61,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.63,439.52 448.69,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.72,439.52 448.77,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.8,439.52 448.85,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.88,439.52 448.93,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.96,439.52 449.02,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.04,439.52 449.1,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.13,439.52 449.18,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.21,439.52 449.26,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.29,439.52 449.34,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.37,439.52 449.43,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.45,439.52 449.51,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.54,439.52 449.59,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.62,439.52 449.67,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.7,439.52 449.75,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.78,439.52 449.84,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.86,439.52 449.92,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="449.94,439.52 450,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.03,439.52 450.08,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.11,439.52 450.16,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.19,439.52 450.24,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.27,439.52 450.33,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.35,439.52 450.41,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.44,439.52 450.49,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.52,439.52 450.57,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.6,439.52 450.65,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.68,439.52 450.74,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.76,439.52 450.82,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.85,439.52 450.9,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.93,439.52 450.98,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.01,439.52 451.06,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.09,439.52 451.15,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.17,439.52 451.23,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.25,439.52 451.31,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.34,439.52 451.39,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.42,439.52 451.47,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.5,439.52 451.56,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.58,439.52 451.64,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.66,439.52 451.72,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.75,439.52 451.8,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.83,439.52 451.88,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.91,439.52 451.96,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.99,439.52 452.05,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.07,439.52 452.13,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.16,439.52 452.21,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.24,439.52 452.29,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.32,439.52 452.37,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.4,439.52 452.46,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.48,439.52 452.54,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.57,439.52 452.62,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.65,439.52 452.7,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.73,439.52 452.78,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.81,439.52 452.87,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.89,439.52 452.95,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.97,439.52 453.03,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.06,439.52 453.11,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.14,439.52 453.19,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.22,439.52 453.28,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.3,439.52 453.36,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.38,439.52 453.44,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.47,439.52 453.52,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.55,439.52 453.6,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.63,439.52 453.68,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.71,439.52 453.77,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.79,439.52 453.85,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.88,439.52 453.93,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.96,439.52 454.01,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.04,439.52 454.09,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.12,439.52 454.18,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.2,439.52 454.26,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.29,439.52 454.34,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.37,439.52 454.42,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.45,439.52 454.5,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.53,439.52 454.59,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.61,439.52 454.67,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.69,439.52 454.75,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.78,439.52 454.83,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.86,439.52 454.91,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.94,439.52 455,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.02,439.52 455.08,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.1,439.52 455.16,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.19,439.52 455.24,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.27,439.52 455.32,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.35,439.52 455.4,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.43,439.52 455.49,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.51,439.52 455.57,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.6,439.52 455.65,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.68,439.52 455.73,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.76,439.52 455.81,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.84,439.52 455.9,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.92,439.52 455.98,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="456.01,439.52 456.06,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="456.09,439.52 456.14,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="456.17,439.52 456.22,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="456.25,439.52 456.31,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="456.33,439.52 456.39,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="456.41,439.52 456.47,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="456.5,439.52 456.55,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="456.58,439.52 456.63,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="456.66,439.52 456.71,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="456.74,439.52 456.8,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="456.82,439.52 456.88,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="456.91,439.52 456.96,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="456.99,439.52 457.04,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="457.07,439.52 457.12,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="457.15,439.52 457.21,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="457.23,439.52 457.29,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="457.32,439.52 457.37,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="457.4,439.52 457.45,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="457.48,439.52 457.53,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="457.56,439.52 457.62,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="457.64,439.52 457.7,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="457.73,439.52 457.78,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="457.81,439.52 457.86,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="457.89,439.52 457.94,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="457.97,439.52 458.03,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.05,439.52 458.11,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.13,439.52 458.19,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.22,439.52 458.27,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.3,439.52 458.35,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.38,439.52 458.43,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.46,439.52 458.52,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.54,439.52 458.6,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.63,439.52 458.68,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.71,439.52 458.76,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.79,439.52 458.84,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.87,439.52 458.93,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.95,439.52 459.01,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.04,439.52 459.09,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.12,439.52 459.17,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.2,439.52 459.25,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.28,439.52 459.34,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.36,439.52 459.42,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.44,439.52 459.5,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.53,439.52 459.58,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.61,439.52 459.66,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.69,439.52 459.75,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.77,439.52 459.83,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.85,439.52 459.91,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.94,439.52 459.99,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.02,439.52 460.07,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.1,439.52 460.15,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.18,439.52 460.24,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.26,439.52 460.32,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.35,439.52 460.4,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.43,439.52 460.48,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.51,439.52 460.56,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.59,439.52 460.65,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.67,439.52 460.73,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.76,439.52 460.81,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.84,439.52 460.89,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.92,439.52 460.97,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461,439.52 461.06,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.08,439.52 461.14,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.16,439.52 461.22,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.25,439.52 461.3,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.33,439.52 461.38,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.41,439.52 461.47,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.49,439.52 461.55,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.57,439.52 461.63,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.66,439.52 461.71,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.74,439.52 461.79,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.82,439.52 461.87,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.9,439.52 461.96,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.98,439.52 462.04,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.07,439.52 462.12,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.15,439.52 462.2,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.23,439.52 462.28,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.31,439.52 462.37,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.39,439.52 462.45,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.48,439.52 462.53,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.56,439.52 462.61,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.64,439.52 462.69,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.72,439.52 462.78,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.8,439.52 462.86,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.88,439.52 462.94,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.97,439.52 463.02,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.05,439.52 463.1,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.13,439.52 463.19,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.21,439.52 463.27,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.29,439.52 463.35,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.38,439.52 463.43,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.46,439.52 463.51,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.54,439.52 463.59,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.62,439.52 463.68,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.7,439.52 463.76,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.79,439.52 463.84,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.87,439.52 463.92,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.95,439.52 464,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.03,439.52 464.09,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.11,439.52 464.17,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.2,439.52 464.25,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.28,439.52 464.33,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.36,439.52 464.41,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.44,439.52 464.5,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.52,439.52 464.58,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.6,439.52 464.66,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.69,439.52 464.74,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.77,439.52 464.82,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.85,439.52 464.9,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.93,439.52 464.99,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.01,439.52 465.07,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.1,439.52 465.15,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.18,439.52 465.23,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.26,439.52 465.31,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.34,439.52 465.4,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.42,439.52 465.48,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.51,439.52 465.56,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.59,439.52 465.64,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.67,439.52 465.72,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.75,439.52 465.81,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.83,439.52 465.89,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.92,439.52 465.97,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466,439.52 466.05,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.08,439.52 466.13,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.16,439.52 466.22,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.24,439.52 466.3,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.32,439.52 466.38,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.41,439.52 466.46,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.49,439.52 466.54,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.57,439.52 466.62,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.65,439.52 466.71,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.73,439.52 466.79,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.82,439.52 466.87,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.9,439.52 466.95,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.98,439.52 467.03,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.06,439.52 467.12,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.14,439.52 467.2,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.23,439.52 467.28,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.31,439.52 467.36,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.39,439.52 467.44,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.47,439.52 467.53,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.55,439.52 467.61,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.64,439.52 467.69,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.72,439.52 467.77,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.8,439.52 467.85,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.88,439.52 467.94,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.96,439.52 468.02,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="468.04,439.52 468.1,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="468.13,439.52 468.16,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.24,439.52 470.28,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.31,439.52 470.36,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.39,439.52 470.44,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.47,439.52 470.53,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.55,439.52 470.61,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.63,439.52 470.69,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.72,439.52 470.77,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.8,439.52 470.85,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.88,439.52 470.93,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.96,439.52 471.02,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.04,439.52 471.1,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.13,439.52 471.18,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.21,439.52 471.26,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.29,439.52 471.34,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.37,439.52 471.43,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.45,439.52 471.51,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.54,439.52 471.59,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.62,439.52 471.67,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.7,439.52 471.75,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.78,439.52 471.84,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.86,439.52 471.92,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.94,439.52 472,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.03,439.52 472.08,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.11,439.52 472.16,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.19,439.52 472.25,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.27,439.52 472.33,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.35,439.52 472.41,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.44,439.52 472.49,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.52,439.52 472.57,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.6,439.52 472.65,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.68,439.52 472.74,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.76,439.52 472.82,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.85,439.52 472.9,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.93,439.52 472.98,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.01,439.52 473.06,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.09,439.52 473.15,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.17,439.52 473.23,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.26,439.52 473.31,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.34,439.52 473.39,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.42,439.52 473.47,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.5,439.52 473.56,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.58,439.52 473.64,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.66,439.52 473.72,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.75,439.52 473.8,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.83,439.52 473.88,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.91,439.52 473.97,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.99,439.52 474.05,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.07,439.52 474.13,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.16,439.52 474.21,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.24,439.52 474.29,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.32,439.52 474.37,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.4,439.52 474.46,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.48,439.52 474.54,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.57,439.52 474.62,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.65,439.52 474.7,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.73,439.52 474.78,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.81,439.52 474.87,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.89,439.52 474.95,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.98,439.52 475.03,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.06,439.52 475.11,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.14,439.52 475.19,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.22,439.52 475.28,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.3,439.52 475.36,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.38,439.52 475.44,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.47,439.52 475.52,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.55,439.52 475.6,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.63,439.52 475.69,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.71,439.52 475.77,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.79,439.52 475.85,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.88,439.52 475.93,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.96,439.52 476.01,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.04,439.52 476.09,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.12,439.52 476.18,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.2,439.52 476.26,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.29,439.52 476.34,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.37,439.52 476.42,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.45,439.52 476.5,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.53,439.52 476.59,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.61,439.52 476.67,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.7,439.52 476.75,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.78,439.52 476.83,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.86,439.52 476.91,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.94,439.52 477,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.02,439.52 477.08,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.1,439.52 477.16,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.19,439.52 477.24,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.27,439.52 477.32,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.35,439.52 477.4,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.43,439.52 477.49,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.51,439.52 477.57,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.6,439.52 477.65,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.68,439.52 477.73,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.76,439.52 477.81,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.84,439.52 477.9,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.92,439.52 477.98,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.01,439.52 478.06,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.09,439.52 478.14,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.17,439.52 478.22,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.25,439.52 478.31,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.33,439.52 478.39,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.42,439.52 478.47,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.5,439.52 478.55,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.58,439.52 478.63,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.66,439.52 478.72,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.74,439.52 478.8,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.82,439.52 478.88,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.91,439.52 478.96,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.99,439.52 479.04,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.07,439.52 479.12,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.15,439.52 479.21,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.23,439.52 479.29,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.32,439.52 479.37,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.4,439.52 479.45,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.48,439.52 479.53,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.56,439.52 479.62,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.64,439.52 479.7,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.73,439.52 479.78,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.81,439.52 479.86,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.89,439.52 479.94,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.97,439.52 480.03,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.05,439.52 480.11,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.13,439.52 480.19,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.22,439.52 480.27,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.3,439.52 480.35,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.38,439.52 480.44,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.46,439.52 480.52,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.54,439.52 480.6,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.63,439.52 480.68,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.71,439.52 480.76,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.79,439.52 480.84,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.87,439.52 480.93,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.95,439.52 481.01,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.04,439.52 481.09,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.12,439.52 481.17,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.2,439.52 481.25,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.28,439.52 481.34,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.36,439.52 481.42,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.45,439.52 481.5,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.53,439.52 481.58,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.61,439.52 481.66,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.69,439.52 481.75,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.77,439.52 481.83,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.85,439.52 481.91,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.94,439.52 481.99,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.02,439.52 482.07,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.1,439.52 482.16,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.18,439.52 482.24,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.26,439.52 482.32,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.35,439.52 482.4,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.43,439.52 482.48,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.51,439.52 482.56,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.59,439.52 482.65,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.67,439.52 482.73,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.76,439.52 482.81,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.84,439.52 482.89,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.92,439.52 482.97,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483,439.52 483.06,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.08,439.52 483.14,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.17,439.52 483.22,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.25,439.52 483.3,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.33,439.52 483.38,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.41,439.52 483.47,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.49,439.52 483.55,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.57,439.52 483.63,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.66,439.52 483.71,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.74,439.52 483.79,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.82,439.52 483.88,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.9,439.52 483.96,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.98,439.52 484.04,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="484.07,439.52 484.12,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="484.15,439.52 484.2,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="484.23,439.52 484.28,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="484.31,439.52 484.37,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="484.39,439.52 484.45,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="484.48,439.52 484.53,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="484.56,439.52 484.61,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="484.64,439.52 484.69,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="484.72,439.52 484.78,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="484.8,439.52 484.86,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="484.89,439.52 484.94,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="484.97,439.52 485.02,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.05,439.52 485.1,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.13,439.52 485.19,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.21,439.52 485.27,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.29,439.52 485.35,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.38,439.52 485.43,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.46,439.52 485.51,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.54,439.52 485.59,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.62,439.52 485.68,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.7,439.52 485.76,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.79,439.52 485.84,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.87,439.52 485.92,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.95,439.52 486,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="486.03,439.52 486.09,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="486.11,439.52 486.17,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="486.2,439.52 486.25,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="486.28,439.52 486.33,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="486.36,439.52 486.41,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="486.44,439.52 486.5,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="486.52,439.52 486.58,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="486.61,439.52 486.66,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="486.69,439.52 486.74,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="486.77,439.52 486.82,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="486.85,439.52 486.91,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="486.93,439.52 486.99,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.01,439.52 487.07,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.1,439.52 487.15,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.18,439.52 487.23,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.26,439.52 487.31,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.34,439.52 487.4,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.42,439.52 487.48,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.51,439.52 487.56,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.59,439.52 487.64,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.67,439.52 487.72,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.75,439.52 487.81,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.83,439.52 487.89,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.92,439.52 487.97,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="488,439.52 488.05,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="488.08,439.52 488.13,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="488.16,439.52 488.22,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="488.24,439.52 488.3,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="488.33,439.52 488.38,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="488.41,439.52 488.46,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="488.49,439.52 488.54,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="488.57,439.52 488.63,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="488.65,439.52 488.71,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="488.73,439.52 488.79,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="488.82,439.52 488.87,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="488.9,439.52 488.95,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="488.98,439.52 489.03,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="489.06,439.52 489.12,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="489.14,439.52 489.2,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="489.23,439.52 489.28,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="489.31,439.52 489.36,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="489.39,439.52 489.44,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="489.47,439.52 489.53,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="489.55,439.52 489.61,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="489.64,439.52 489.69,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="489.72,439.52 489.77,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="489.8,439.52 489.85,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="489.88,439.52 489.94,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="489.96,439.52 490.02,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.04,439.52 490.1,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.13,439.52 490.18,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.21,439.52 490.26,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.29,439.52 490.35,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.37,439.52 490.43,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.45,439.52 490.51,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.54,439.52 490.59,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.62,439.52 490.67,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.7,439.52 490.75,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.78,439.52 490.84,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.86,439.52 490.92,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.95,439.52 491,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="491.03,439.52 491.08,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="491.11,439.52 491.16,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="491.19,439.52 491.25,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="491.27,439.52 491.33,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="491.36,439.52 491.41,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="491.44,439.52 491.49,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="491.52,439.52 491.57,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="491.6,439.52 491.66,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="491.68,439.52 491.74,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="491.76,439.52 491.82,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="491.85,439.52 491.9,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="491.93,439.52 491.98,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492.01,439.52 492.07,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492.09,439.52 492.15,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492.17,439.52 492.23,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492.26,439.52 492.31,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492.34,439.52 492.39,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492.42,439.52 492.47,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492.5,439.52 492.56,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492.58,439.52 492.64,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492.67,439.52 492.72,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492.75,439.52 492.8,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492.83,439.52 492.88,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492.91,439.52 492.97,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492.99,439.52 493.05,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="493.08,439.52 493.13,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="493.16,439.52 493.21,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="493.24,439.52 493.29,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="493.32,439.52 493.38,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="493.4,439.52 493.46,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="493.48,439.52 493.54,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="493.57,439.52 493.62,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="493.65,439.52 493.7,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="493.73,439.52 493.79,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="493.81,439.52 493.87,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="493.89,439.52 493.95,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="493.98,439.52 494.03,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="494.06,439.52 494.11,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="494.14,439.52 494.19,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="494.22,439.52 494.28,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="494.3,439.52 494.36,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="494.39,439.52 494.44,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="494.47,439.52 494.52,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="494.55,439.52 494.6,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="494.63,439.52 494.69,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="494.71,439.52 494.77,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="494.8,439.52 494.85,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="494.88,439.52 494.93,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="494.96,439.52 495.01,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="495.04,439.52 495.1,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="495.12,439.52 495.18,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="495.2,439.52 495.26,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="495.29,439.52 495.34,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="495.37,439.52 495.42,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="495.45,439.52 495.5,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="495.53,439.52 495.59,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="495.61,439.52 495.67,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="495.7,439.52 495.75,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="495.78,439.52 495.83,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="495.86,439.52 495.91,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="495.94,439.52 496,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.02,439.52 496.08,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.11,439.52 496.16,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.19,439.52 496.24,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.27,439.52 496.32,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.35,439.52 496.41,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.43,439.52 496.49,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.52,439.52 496.57,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.6,439.52 496.65,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.68,439.52 496.73,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.76,439.52 496.82,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.84,439.52 496.9,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.92,439.52 496.98,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="497.01,439.52 497.06,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="497.09,439.52 497.14,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="497.17,439.52 497.22,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="497.25,439.52 497.31,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="497.33,439.52 497.39,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="497.42,439.52 497.47,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="497.5,439.52 497.55,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="497.58,439.52 497.63,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="497.66,439.52 497.72,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="497.74,439.52 497.8,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="497.83,439.52 497.88,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="497.91,439.52 497.96,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="497.99,439.52 498.04,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.07,439.52 498.13,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.15,439.52 498.21,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.23,439.52 498.29,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.32,439.52 498.37,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.4,439.52 498.45,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.48,439.52 498.54,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.56,439.52 498.62,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.64,439.52 498.7,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.73,439.52 498.78,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.81,439.52 498.86,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.89,439.52 498.94,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.97,439.52 499.03,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="499.05,439.52 499.11,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="499.14,439.52 499.19,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="499.22,439.52 499.27,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="499.3,439.52 499.35,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="499.38,439.52 499.44,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="499.46,439.52 499.52,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="499.55,439.52 499.6,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="499.63,439.52 499.68,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="499.71,439.52 499.76,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="499.79,439.52 499.85,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="499.87,439.52 499.93,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="499.95,439.52 500.01,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="500.04,439.52 500.09,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="500.12,439.52 500.17,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="500.2,439.52 500.26,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="500.28,439.52 500.34,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="500.36,439.52 500.42,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="500.45,439.52 500.5,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="500.53,439.52 500.58,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="500.61,439.52 500.66,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="500.69,439.52 500.75,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="500.77,439.52 500.83,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="500.86,439.52 500.91,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="500.94,439.52 500.99,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.02,439.52 501.07,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.1,439.52 501.16,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.18,439.52 501.24,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.27,439.52 501.32,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.35,439.52 501.4,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.43,439.52 501.48,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.51,439.52 501.57,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.59,439.52 501.65,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.67,439.52 501.73,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.76,439.52 501.81,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.84,439.52 501.89,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.92,439.52 501.98,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502,439.52 502.06,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.08,439.52 502.14,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.17,439.52 502.22,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.25,439.52 502.3,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.33,439.52 502.38,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.41,439.52 502.47,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.49,439.52 502.55,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.58,439.52 502.63,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.66,439.52 502.71,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.74,439.52 502.79,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.82,439.52 502.88,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.9,439.52 502.96,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.99,439.52 503.04,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="503.07,439.52 503.12,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="503.15,439.52 503.2,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="503.23,439.52 503.29,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="503.31,439.52 503.37,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="503.39,439.52 503.45,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="503.48,439.52 503.53,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="503.56,439.52 503.61,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="503.64,439.52 503.69,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="503.72,439.52 503.76,439.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="430.16,439.52 432.94,439.52 432.94,431.2 430.16,431.2 430.16,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="434.32,429.81 437.1,429.81 437.1,427.04 434.32,427.04 434.32,429.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="434.32,427.04 430.16,427.04 430.16,431.2 432.94,431.2 432.94,431.2 433.01,430.65 433.3,430.18 433.77,429.88 434.32,429.81 434.32,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="437.1,427.15 435.37,427.15 435.37,429.81 437.1,429.81 437.1,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="437.1,429.81 435.37,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="436.68,429.97 435.76,429.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="433.34,436.4 433.34,438.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="432.94,435.36 432.94,439.52 430.86,439.52 430.86,435.36 432.94,435.36 430.86,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.16,427.04 434.32,427.04 434.32,426.69 430.16,426.69 430.16,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="434.32,427.04 437.1,427.04 437.1,426.69 434.32,426.69 434.32,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.16,431.2 430.16,427.04 429.81,427.04 429.81,431.2 430.16,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.19,431.2 409.19,427.04 408.84,427.04 408.84,431.2 409.19,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.84,439.52 409.19,439.52 409.19,435.36 408.84,435.36 408.84,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.84,435.36 409.19,435.36 409.19,431.2 408.84,431.2 408.84,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.33,439.52 419.68,439.52 419.68,435.36 419.33,435.36 419.33,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.33,435.36 419.68,435.36 419.68,431.2 419.33,431.2 419.33,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="429.81,439.52 430.16,439.52 430.16,435.36 429.81,435.36 429.81,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="429.81,435.36 430.16,435.36 430.16,431.2 429.81,431.2 429.81,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.19,435.36 409.51,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.78,435.36 410.33,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.6,435.36 410.92,435.36 410.92,435.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.92,434.78 410.92,434.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.92,433.96 410.92,433.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.92,433.14 410.92,432.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.92,432.33 410.92,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.92,431.51 410.92,431.2 410.6,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.33,431.2 409.78,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.51,431.2 409.19,431.2 409.19,431.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.19,431.78 409.19,432.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.19,432.6 409.19,433.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.19,433.42 409.19,433.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.19,434.24 409.19,434.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.19,435.06 409.19,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.19,439.52 409.51,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.78,439.52 410.33,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.6,439.52 410.92,439.52 410.92,439.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.92,438.94 410.92,438.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.92,438.12 410.92,437.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.92,437.31 410.92,436.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.92,436.49 410.92,435.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.92,435.67 410.92,435.36 410.6,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="410.33,435.36 409.78,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.51,435.36 409.19,435.36 409.19,435.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.19,435.94 409.19,436.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.19,436.76 409.19,437.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.19,437.58 409.19,438.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.19,438.4 409.19,438.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="409.19,439.22 409.19,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.11,439.52 407.43,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.7,439.52 408.25,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.52,439.52 408.84,439.52 408.84,439.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.84,438.94 408.84,438.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.84,438.12 408.84,437.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.84,437.31 408.84,436.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.84,436.49 408.84,435.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.84,435.67 408.84,435.36 408.52,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.25,435.36 407.7,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.43,435.36 407.11,435.36 407.11,435.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.11,435.94 407.11,436.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.11,436.76 407.11,437.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.11,437.58 407.11,438.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.11,438.4 407.11,438.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.11,439.22 407.11,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.11,435.36 407.43,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.7,435.36 408.25,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.52,435.36 408.84,435.36 408.84,435.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.84,434.78 408.84,434.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.84,433.96 408.84,433.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.84,433.14 408.84,432.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.84,432.33 408.84,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.84,431.51 408.84,431.2 408.52,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="408.25,431.2 407.7,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.43,431.2 407.11,431.2 407.11,431.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.11,431.78 407.11,432.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.11,432.6 407.11,433.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.11,433.42 407.11,433.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.11,434.24 407.11,434.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="407.11,435.06 407.11,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.68,435.36 420,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.27,435.36 420.82,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="421.09,435.36 421.41,435.36 421.41,435.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="421.41,434.78 421.41,434.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="421.41,433.96 421.41,433.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="421.41,433.14 421.41,432.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="421.41,432.33 421.41,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="421.41,431.51 421.41,431.2 421.09,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.82,431.2 420.27,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420,431.2 419.68,431.2 419.68,431.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.68,431.78 419.68,432.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.68,432.6 419.68,433.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.68,433.42 419.68,433.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.68,434.24 419.68,434.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.68,435.06 419.68,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.68,439.52 420,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.27,439.52 420.82,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="421.09,439.52 421.41,439.52 421.41,439.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="421.41,438.94 421.41,438.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="421.41,438.12 421.41,437.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="421.41,437.31 421.41,436.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="421.41,436.49 421.41,435.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="421.41,435.67 421.41,435.36 421.09,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.82,435.36 420.27,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420,435.36 419.68,435.36 419.68,435.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.68,435.94 419.68,436.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.68,436.76 419.68,437.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.68,437.58 419.68,438.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.68,438.4 419.68,438.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="419.68,439.22 419.68,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.16,435.36 430.48,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.76,435.36 431.3,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="431.57,435.36 431.9,435.36 431.9,435.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="431.9,434.78 431.9,434.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="431.9,433.96 431.9,433.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="431.9,433.14 431.9,432.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="431.9,432.33 431.9,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="431.9,431.51 431.9,431.2 431.57,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="431.3,431.2 430.76,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.48,431.2 430.16,431.2 430.16,431.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.16,431.78 430.16,432.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.16,432.6 430.16,433.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.16,433.42 430.16,433.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.16,434.24 430.16,434.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.16,435.06 430.16,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.16,439.52 430.48,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.76,439.52 431.3,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="431.57,439.52 431.9,439.52 431.9,439.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="431.9,438.94 431.9,438.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="431.9,438.12 431.9,437.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="431.9,437.31 431.9,436.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="431.9,436.49 431.9,435.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="431.9,435.67 431.9,435.36 431.57,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="431.3,435.36 430.76,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.48,435.36 430.16,435.36 430.16,435.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.16,435.94 430.16,436.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.16,436.76 430.16,437.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.16,437.58 430.16,438.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.16,438.4 430.16,438.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.16,439.22 430.16,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="445.3,429.81 448.08,429.81 448.08,427.04 445.3,427.04 445.3,429.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="445.3,427.04 441.14,427.04 441.14,431.2 443.91,431.2 443.91,431.2 443.98,430.65 444.28,430.18 444.75,429.88 445.3,429.81 445.3,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="448.08,427.15 446.34,427.15 446.34,429.81 448.08,429.81 448.08,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="448.08,429.81 446.34,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="447.66,429.97 446.74,429.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="444.31,436.4 444.31,438.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="443.91,435.36 443.91,439.52 441.83,439.52 441.83,435.36 443.91,435.36 441.83,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="441.14,427.04 445.3,427.04 445.3,426.69 441.14,426.69 441.14,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="445.3,427.04 448.08,427.04 448.08,426.69 445.3,426.69 445.3,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="441.14,431.2 441.14,427.04 440.79,427.04 440.79,431.2 441.14,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="440.79,439.52 441.14,439.52 441.14,435.36 440.79,435.36 440.79,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="440.79,435.36 441.14,435.36 441.14,431.2 440.79,431.2 440.79,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="441.14,435.36 441.46,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="441.73,435.36 442.28,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="442.55,435.36 442.87,435.36 442.87,435.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="442.87,434.78 442.87,434.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="442.87,433.96 442.87,433.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="442.87,433.14 442.87,432.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="442.87,432.33 442.87,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="442.87,431.51 442.87,431.2 442.55,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="442.28,431.2 441.73,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="441.46,431.2 441.14,431.2 441.14,431.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="441.14,431.78 441.14,432.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="441.14,432.6 441.14,433.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="441.14,433.42 441.14,433.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="441.14,434.24 441.14,434.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="441.14,435.06 441.14,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="441.14,439.52 441.46,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="441.73,439.52 442.28,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="442.55,439.52 442.87,439.52 442.87,439.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="442.87,438.94 442.87,438.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="442.87,438.12 442.87,437.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="442.87,437.31 442.87,436.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="442.87,436.49 442.87,435.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="442.87,435.67 442.87,435.36 442.55,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="442.28,435.36 441.73,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="441.46,435.36 441.14,435.36 441.14,435.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="441.14,435.94 441.14,436.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="441.14,436.76 441.14,437.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="441.14,437.58 441.14,438.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="441.14,438.4 441.14,438.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="441.14,439.22 441.14,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="456.08,429.81 458.86,429.81 458.86,427.04 456.08,427.04 456.08,429.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="456.08,427.04 451.92,427.04 451.92,431.2 454.69,431.2 454.69,431.2 454.76,430.65 455.06,430.18 455.53,429.88 456.08,429.81 456.08,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="458.86,427.15 457.12,427.15 457.12,429.81 458.86,429.81 458.86,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="458.86,429.81 457.12,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="458.44,429.97 457.52,429.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="455.09,436.4 455.09,438.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="454.69,435.36 454.69,439.52 452.61,439.52 452.61,435.36 454.69,435.36 452.61,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="451.92,427.04 456.08,427.04 456.08,426.69 451.92,426.69 451.92,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="456.08,427.04 458.86,427.04 458.86,426.69 456.08,426.69 456.08,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="451.92,431.2 451.92,427.04 451.57,427.04 451.57,431.2 451.92,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="451.57,439.52 451.92,439.52 451.92,435.36 451.57,435.36 451.57,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="451.57,435.36 451.92,435.36 451.92,431.2 451.57,431.2 451.57,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="451.92,435.36 452.24,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="452.51,435.36 453.06,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="453.33,435.36 453.65,435.36 453.65,435.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="453.65,434.78 453.65,434.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="453.65,433.96 453.65,433.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="453.65,433.14 453.65,432.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="453.65,432.33 453.65,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="453.65,431.51 453.65,431.2 453.33,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="453.06,431.2 452.51,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="452.24,431.2 451.92,431.2 451.92,431.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="451.92,431.78 451.92,432.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="451.92,432.6 451.92,433.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="451.92,433.42 451.92,433.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="451.92,434.24 451.92,434.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="451.92,435.06 451.92,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="451.92,439.52 452.24,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="452.51,439.52 453.06,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="453.33,439.52 453.65,439.52 453.65,439.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="453.65,438.94 453.65,438.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="453.65,438.12 453.65,437.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="453.65,437.31 453.65,436.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="453.65,436.49 453.65,435.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="453.65,435.67 453.65,435.36 453.33,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="453.06,435.36 452.51,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="452.24,435.36 451.92,435.36 451.92,435.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="451.92,435.94 451.92,436.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="451.92,436.76 451.92,437.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="451.92,437.58 451.92,438.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="451.92,438.4 451.92,438.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="451.92,439.22 451.92,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="441.14,439.52 443.91,439.52 443.91,431.2 441.14,431.2 441.14,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="451.92,439.52 454.69,439.52 454.69,431.2 451.92,431.2 451.92,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="466.85,429.81 469.63,429.81 469.63,427.04 466.85,427.04 466.85,429.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="466.85,427.04 462.69,427.04 462.69,431.2 465.47,431.2 465.47,431.2 465.54,430.65 465.84,430.18 466.3,429.88 466.85,429.81 466.85,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="469.63,427.15 467.9,427.15 467.9,429.81 469.63,429.81 469.63,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="469.63,429.81 467.9,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="469.22,429.97 468.29,429.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="465.87,436.4 465.87,438.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="465.47,435.36 465.47,439.52 463.39,439.52 463.39,435.36 465.47,435.36 463.39,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.69,427.04 466.85,427.04 466.85,426.69 462.69,426.69 462.69,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="466.85,427.04 469.63,427.04 469.63,426.69 466.85,426.69 466.85,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.69,431.2 462.69,427.04 462.34,427.04 462.34,431.2 462.69,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.34,439.52 462.69,439.52 462.69,435.36 462.34,435.36 462.34,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.34,435.36 462.69,435.36 462.69,431.2 462.34,431.2 462.34,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.69,435.36 463.01,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="463.29,435.36 463.83,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="464.1,435.36 464.43,435.36 464.43,435.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="464.43,434.78 464.43,434.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="464.43,433.96 464.43,433.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="464.43,433.14 464.43,432.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="464.43,432.33 464.43,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="464.43,431.51 464.43,431.2 464.1,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="463.83,431.2 463.29,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="463.01,431.2 462.69,431.2 462.69,431.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.69,431.78 462.69,432.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.69,432.6 462.69,433.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.69,433.42 462.69,433.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.69,434.24 462.69,434.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.69,435.06 462.69,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.69,439.52 463.01,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="463.29,439.52 463.83,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="464.1,439.52 464.43,439.52 464.43,439.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="464.43,438.94 464.43,438.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="464.43,438.12 464.43,437.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="464.43,437.31 464.43,436.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="464.43,436.49 464.43,435.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="464.43,435.67 464.43,435.36 464.1,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="463.83,435.36 463.29,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="463.01,435.36 462.69,435.36 462.69,435.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.69,435.94 462.69,436.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.69,436.76 462.69,437.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.69,437.58 462.69,438.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.69,438.4 462.69,438.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.69,439.22 462.69,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="462.69,439.52 465.47,439.52 465.47,431.2 462.69,431.2 462.69,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="477.59,429.81 480.36,429.81 480.36,427.04 477.59,427.04 477.59,429.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="477.59,427.04 473.43,427.04 473.43,431.2 476.2,431.2 476.2,431.2 476.27,430.65 476.57,430.18 477.04,429.88 477.59,429.81 477.59,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="480.36,427.15 478.63,427.15 478.63,429.81 480.36,429.81 480.36,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="480.36,429.81 478.63,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="479.95,429.97 479.03,429.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="476.6,436.4 476.6,438.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="476.2,435.36 476.2,439.52 474.12,439.52 474.12,435.36 476.2,435.36 474.12,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.43,427.04 477.59,427.04 477.59,426.69 473.43,426.69 473.43,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="477.59,427.04 480.36,427.04 480.36,426.69 477.59,426.69 477.59,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.43,431.2 473.43,427.04 473.08,427.04 473.08,431.2 473.43,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.08,439.52 473.43,439.52 473.43,435.36 473.08,435.36 473.08,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.08,435.36 473.43,435.36 473.43,431.2 473.08,431.2 473.08,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.43,435.36 473.75,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="474.02,435.36 474.57,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="474.84,435.36 475.16,435.36 475.16,435.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="475.16,434.78 475.16,434.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="475.16,433.96 475.16,433.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="475.16,433.14 475.16,432.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="475.16,432.33 475.16,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="475.16,431.51 475.16,431.2 474.84,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="474.57,431.2 474.02,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.75,431.2 473.43,431.2 473.43,431.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.43,431.78 473.43,432.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.43,432.6 473.43,433.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.43,433.42 473.43,433.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.43,434.24 473.43,434.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.43,435.06 473.43,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.43,439.52 473.75,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="474.02,439.52 474.57,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="474.84,439.52 475.16,439.52 475.16,439.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="475.16,438.94 475.16,438.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="475.16,438.12 475.16,437.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="475.16,437.31 475.16,436.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="475.16,436.49 475.16,435.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="475.16,435.67 475.16,435.36 474.84,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="474.57,435.36 474.02,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.75,435.36 473.43,435.36 473.43,435.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.43,435.94 473.43,436.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.43,436.76 473.43,437.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.43,437.58 473.43,438.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.43,438.4 473.43,438.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.43,439.22 473.43,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="473.43,439.52 476.2,439.52 476.2,431.2 473.43,431.2 473.43,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="488.37,429.81 491.15,429.81 491.15,427.04 488.37,427.04 488.37,429.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="488.37,427.04 484.21,427.04 484.21,431.2 486.99,431.2 486.99,431.2 487.06,430.65 487.35,430.18 487.82,429.88 488.37,429.81 488.37,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="491.15,427.15 489.42,427.15 489.42,429.81 491.15,429.81 491.15,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="491.15,429.81 489.42,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="490.73,429.97 489.81,429.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="487.39,436.4 487.39,438.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="486.99,435.36 486.99,439.52 484.91,439.52 484.91,435.36 486.99,435.36 484.91,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="484.21,427.04 488.37,427.04 488.37,426.69 484.21,426.69 484.21,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="488.37,427.04 491.15,427.04 491.15,426.69 488.37,426.69 488.37,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="484.21,431.2 484.21,427.04 483.86,427.04 483.86,431.2 484.21,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="483.86,439.52 484.21,439.52 484.21,435.36 483.86,435.36 483.86,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="483.86,435.36 484.21,435.36 484.21,431.2 483.86,431.2 483.86,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="484.21,435.36 484.53,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="484.8,435.36 485.35,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="485.62,435.36 485.95,435.36 485.95,435.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="485.95,434.78 485.95,434.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="485.95,433.96 485.95,433.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="485.95,433.14 485.95,432.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="485.95,432.33 485.95,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="485.95,431.51 485.95,431.2 485.62,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="485.35,431.2 484.8,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="484.53,431.2 484.21,431.2 484.21,431.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="484.21,431.78 484.21,432.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="484.21,432.6 484.21,433.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="484.21,433.42 484.21,433.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="484.21,434.24 484.21,434.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="484.21,435.06 484.21,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="484.21,439.52 484.53,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="484.8,439.52 485.35,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="485.62,439.52 485.95,439.52 485.95,439.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="485.95,438.94 485.95,438.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="485.95,438.12 485.95,437.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="485.95,437.31 485.95,436.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="485.95,436.49 485.95,435.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="485.95,435.67 485.95,435.36 485.62,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="485.35,435.36 484.8,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="484.53,435.36 484.21,435.36 484.21,435.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="484.21,435.94 484.21,436.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="484.21,436.76 484.21,437.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="484.21,437.58 484.21,438.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="484.21,438.4 484.21,438.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="484.21,439.22 484.21,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="484.21,439.52 486.99,439.52 486.99,431.2 484.21,431.2 484.21,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="498.84,429.81 501.62,429.81 501.62,427.04 498.84,427.04 498.84,429.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="498.84,427.04 494.68,427.04 494.68,431.2 497.45,431.2 497.45,431.2 497.52,430.65 497.82,430.18 498.29,429.88 498.84,429.81 498.84,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="501.62,427.15 499.88,427.15 499.88,429.81 501.62,429.81 501.62,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="501.62,429.81 499.88,427.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="501.2,429.97 500.28,429.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="497.85,436.4 497.85,438.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="497.45,435.36 497.45,439.52 495.37,439.52 495.37,435.36 497.45,435.36 495.37,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="494.68,427.04 498.84,427.04 498.84,426.69 494.68,426.69 494.68,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="498.84,427.04 501.62,427.04 501.62,426.69 498.84,426.69 498.84,427.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="494.68,431.2 494.68,427.04 494.33,427.04 494.33,431.2 494.68,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="494.33,439.52 494.68,439.52 494.68,435.36 494.33,435.36 494.33,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="494.33,435.36 494.68,435.36 494.68,431.2 494.33,431.2 494.33,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="494.68,435.36 495,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="495.27,435.36 495.82,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="496.09,435.36 496.41,435.36 496.41,435.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="496.41,434.78 496.41,434.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="496.41,433.96 496.41,433.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="496.41,433.14 496.41,432.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="496.41,432.33 496.41,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="496.41,431.51 496.41,431.2 496.09,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="495.82,431.2 495.27,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="495,431.2 494.68,431.2 494.68,431.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="494.68,431.78 494.68,432.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="494.68,432.6 494.68,433.14" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="494.68,433.42 494.68,433.96" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="494.68,434.24 494.68,434.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="494.68,435.06 494.68,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="494.68,439.52 495,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="495.27,439.52 495.82,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="496.09,439.52 496.41,439.52 496.41,439.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="496.41,438.94 496.41,438.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="496.41,438.12 496.41,437.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="496.41,437.31 496.41,436.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="496.41,436.49 496.41,435.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="496.41,435.67 496.41,435.36 496.09,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="495.82,435.36 495.27,435.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="495,435.36 494.68,435.36 494.68,435.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="494.68,435.94 494.68,436.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="494.68,436.76 494.68,437.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="494.68,437.58 494.68,438.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="494.68,438.4 494.68,438.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="494.68,439.22 494.68,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="494.68,439.52 497.45,439.52 497.45,431.2 494.68,431.2 494.68,439.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="505.06,427.49 507.83,427.49 507.83,427.14 505.06,427.14 505.06,427.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="504.71,433.03 505.06,433.03 505.06,427.49 504.71,427.49 504.71,433.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="504.71,438.58 505.06,438.58 505.06,433.03 504.71,433.03 504.71,438.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="507.14,431.65 507.14,427.49 505.06,427.49 505.06,431.65 507.14,431.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="507.14,431.65 509.22,431.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="507.14,427.49 509.22,427.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="509.22,431.65 509.06,430.85 508.61,430.17 507.93,429.72 507.14,429.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="507.14,429.57 507.93,429.41 508.61,428.96 509.06,428.28 509.22,427.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="507.14,435.81 507.14,431.65 505.06,431.65 505.06,435.81 507.14,435.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="507.14,435.81 509.22,435.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="507.14,431.65 509.22,431.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="509.22,435.81 509.06,435.01 508.61,434.34 507.93,433.88 507.14,433.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="507.14,433.73 507.93,433.57 508.61,433.12 509.06,432.44 509.22,431.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="505.06,427.49 507.14,435.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="505.06,435.81 507.14,427.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="511.67,433.03 511.67,437.19 513.75,437.19 513.75,433.03 511.67,433.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="511.67,433.03 509.59,433.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="511.67,437.19 509.59,437.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="509.59,433.03 509.75,433.83 510.2,434.5 510.87,434.95 511.67,435.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="511.67,435.11 510.87,435.27 510.2,435.72 509.75,436.4 509.59,437.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="511.67,428.87 511.67,433.03 513.75,433.03 513.75,428.87 511.67,428.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="511.67,428.87 509.59,428.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="511.67,433.03 509.59,433.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="509.59,428.87 509.75,429.67 510.2,430.34 510.87,430.79 511.67,430.95" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="511.67,430.95 510.87,431.11 510.2,431.56 509.75,432.24 509.59,433.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="513.75,437.19 511.67,428.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="513.75,428.87 511.67,437.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="507.14,438.58 507.14,438.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.14,438.49 507.14,438.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.14,438.41 507.14,438.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.14,438.33 507.14,438.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.14,438.25 507.14,438.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.14,438.16 507.14,438.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.14,438.08 507.14,438.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.14,438 507.14,437.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.14,437.92 507.14,437.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.14,437.84 507.14,437.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.14,437.75 507.14,437.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.14,437.67 507.14,437.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.14,437.59 507.14,437.53 507.18,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.21,437.53 507.26,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.29,437.53 507.34,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.37,437.53 507.43,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.45,437.53 507.51,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.53,437.53 507.59,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.62,437.53 507.67,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.7,437.53 507.75,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.78,437.53 507.83,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.86,437.53 507.92,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="507.94,437.53 508,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="508.03,437.53 508.08,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="508.11,437.53 508.16,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="508.19,437.53 508.24,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="508.27,437.53 508.33,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="508.35,437.53 508.41,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="508.44,437.53 508.49,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="508.52,437.53 508.57,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="508.6,437.53 508.65,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="508.68,437.53 508.74,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="508.76,437.53 508.82,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="508.84,437.53 508.9,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="508.93,437.53 508.98,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="509.01,437.53 509.06,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="509.09,437.53 509.15,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="509.17,437.53 509.23,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="509.25,437.53 509.31,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="509.34,437.53 509.39,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="509.42,437.53 509.47,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="509.5,437.53 509.55,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="509.58,437.53 509.64,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="509.66,437.53 509.72,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="509.75,437.53 509.8,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="509.83,437.53 509.88,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="509.91,437.53 509.96,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="509.99,437.53 510.05,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="510.07,437.53 510.13,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="510.16,437.53 510.21,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="510.24,437.53 510.29,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="510.32,437.53 510.37,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="510.4,437.53 510.46,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="510.48,437.53 510.54,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="510.56,437.53 510.62,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="510.65,437.53 510.7,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="510.73,437.53 510.78,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="510.81,437.53 510.87,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="510.89,437.53 510.95,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="510.97,437.53 511.03,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="511.06,437.53 511.11,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="511.14,437.53 511.19,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="511.22,437.53 511.27,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="511.3,437.53 511.36,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="511.38,437.53 511.44,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="511.47,437.53 511.52,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="511.55,437.53 511.6,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="511.63,437.53 511.68,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="511.71,437.53 511.77,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="511.79,437.53 511.85,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="511.88,437.53 511.93,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="511.96,437.53 512.01,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="512.04,437.53 512.09,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="512.12,437.53 512.18,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="512.2,437.53 512.26,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="512.28,437.53 512.34,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="512.37,437.53 512.42,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="512.45,437.53 512.5,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="512.53,437.53 512.58,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="512.61,437.53 512.67,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="512.69,437.53 512.75,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="512.78,437.53 512.83,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="512.86,437.53 512.91,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="512.94,437.53 512.99,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="513.02,437.53 513.08,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="513.1,437.53 513.16,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="513.19,437.53 513.24,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="513.27,437.53 513.32,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="513.35,437.53 513.4,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="513.43,437.53 513.49,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="513.51,437.53 513.57,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="513.6,437.53 513.65,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="513.68,437.53 513.73,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="513.76,437.53 513.81,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="513.84,437.53 513.9,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="513.92,437.53 513.98,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="514,437.53 514.06,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="514.09,437.53 514.14,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="514.17,437.53 514.22,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="514.25,437.53 514.3,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="514.33,437.53 514.39,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="514.41,437.53 514.47,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="514.5,437.53 514.55,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="514.58,437.53 514.63,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="514.66,437.53 514.71,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="514.74,437.53 514.8,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="514.82,437.53 514.88,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="514.91,437.53 514.96,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="514.99,437.53 515.04,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.07,437.53 515.12,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.15,437.53 515.21,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.23,437.53 515.29,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.31,437.53 515.37,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.4,437.53 515.45,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.48,437.53 515.53,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.56,437.53 515.62,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.64,437.53 515.7,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.72,437.53 515.78,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.81,437.53 515.86,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.89,437.53 515.94,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="515.97,437.53 516.02,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.05,437.53 516.11,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.13,437.53 516.19,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.22,437.53 516.27,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.3,437.53 516.35,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.38,437.53 516.43,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.46,437.53 516.52,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.54,437.53 516.6,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.63,437.53 516.68,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.71,437.53 516.76,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.79,437.53 516.84,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.87,437.53 516.93,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="516.95,437.53 517.01,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.03,437.53 517.09,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.12,437.53 517.17,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.2,437.53 517.25,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.28,437.53 517.34,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.36,437.53 517.42,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.44,437.53 517.5,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.53,437.53 517.58,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.61,437.53 517.66,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.69,437.53 517.74,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.77,437.53 517.83,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.85,437.53 517.91,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="517.94,437.53 517.99,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.02,437.53 518.07,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.1,437.53 518.15,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.18,437.53 518.24,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.26,437.53 518.32,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.35,437.53 518.4,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.43,437.53 518.48,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.51,437.53 518.56,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.59,437.53 518.65,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.67,437.53 518.73,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.75,437.53 518.81,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.84,437.53 518.89,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="518.92,437.53 518.97,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519,437.53 519.06,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519.08,437.53 519.14,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519.16,437.53 519.22,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519.25,437.53 519.3,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519.33,437.53 519.38,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519.41,437.53 519.46,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519.49,437.53 519.55,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519.57,437.53 519.63,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519.66,437.53 519.71,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519.74,437.53 519.79,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519.82,437.53 519.87,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519.9,437.53 519.96,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="519.98,437.53 520.04,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="520.07,437.53 520.12,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="520.15,437.53 520.2,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="520.23,437.53 520.28,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="520.31,437.53 520.37,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="520.39,437.53 520.45,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="520.47,437.53 520.53,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="520.56,437.53 520.61,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="520.64,437.53 520.69,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="520.72,437.53 520.78,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="520.8,437.53 520.86,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="520.88,437.53 520.94,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="520.97,437.53 521.02,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.05,437.53 521.1,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.13,437.53 521.18,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.21,437.53 521.27,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.29,437.53 521.35,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.38,437.53 521.43,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.46,437.53 521.51,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.54,437.53 521.59,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.62,437.53 521.68,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.7,437.53 521.76,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.79,437.53 521.84,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.87,437.53 521.92,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="521.95,437.53 522,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="522.03,437.53 522.09,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="522.11,437.53 522.17,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="522.19,437.53 522.25,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="522.28,437.53 522.33,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="522.36,437.53 522.41,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="522.44,437.53 522.49,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="522.52,437.53 522.58,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="522.6,437.53 522.66,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="522.69,437.53 522.74,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="522.77,437.53 522.82,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="522.85,437.53 522.9,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="522.93,437.53 522.99,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.01,437.53 523.07,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.1,437.53 523.15,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.18,437.53 523.23,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.26,437.53 523.31,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.34,437.53 523.4,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.42,437.53 523.48,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.51,437.53 523.56,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.59,437.53 523.64,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.67,437.53 523.72,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.75,437.53 523.81,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.83,437.53 523.89,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="523.91,437.53 523.97,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524,437.53 524.05,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.08,437.53 524.13,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.16,437.53 524.21,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.24,437.53 524.3,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.32,437.53 524.38,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.41,437.53 524.46,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.49,437.53 524.54,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.57,437.53 524.62,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.65,437.53 524.71,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.73,437.53 524.79,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.82,437.53 524.87,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.9,437.53 524.95,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="524.98,437.53 525.03,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.06,437.53 525.12,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.14,437.53 525.2,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.22,437.53 525.28,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.31,437.53 525.36,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.39,437.53 525.44,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.47,437.53 525.53,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.55,437.53 525.61,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.63,437.53 525.69,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.72,437.53 525.77,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.8,437.53 525.85,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.88,437.53 525.93,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="525.96,437.53 526.02,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.04,437.53 526.1,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.13,437.53 526.18,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.21,437.53 526.26,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.29,437.53 526.34,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.37,437.53 526.43,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.45,437.53 526.51,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.54,437.53 526.59,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.62,437.53 526.67,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.7,437.53 526.75,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.78,437.53 526.84,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.86,437.53 526.92,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="526.94,437.53 527,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="527.03,437.53 527.08,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="527.11,437.53 527.16,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="527.19,437.53 527.25,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="527.27,437.53 527.33,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="527.35,437.53 527.41,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="527.44,437.53 527.49,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="527.52,437.53 527.57,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="527.6,437.53 527.65,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="527.68,437.53 527.74,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="527.76,437.53 527.82,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="527.85,437.53 527.9,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="527.93,437.53 527.98,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="528.01,437.53 528.06,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="528.09,437.53 528.15,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="528.17,437.53 528.23,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="528.26,437.53 528.31,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="528.34,437.53 528.39,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="528.42,437.53 528.47,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="528.5,437.53 528.56,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="528.58,437.53 528.64,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="528.66,437.53 528.72,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="528.75,437.53 528.8,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="528.83,437.53 528.88,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="528.91,437.53 528.97,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="528.99,437.53 529.05,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="529.07,437.53 529.13,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="529.16,437.53 529.21,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="529.24,437.53 529.29,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="529.32,437.53 529.37,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="529.4,437.53 529.46,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="529.48,437.53 529.54,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="529.57,437.53 529.62,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="529.65,437.53 529.7,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="529.73,437.53 529.78,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="529.81,437.53 529.87,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="529.89,437.53 529.95,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="529.98,437.53 530.02,437.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,387.06 532.39,387.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,387.15 532.39,387.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,387.23 532.39,387.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,387.32 532.39,387.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,387.4 532.39,387.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,387.48 532.39,387.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,387.56 532.39,387.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,387.64 532.39,387.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,387.72 532.39,387.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,387.81 532.39,387.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,387.89 532.39,387.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,387.97 532.39,388.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,388.05 532.39,388.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,388.13 532.39,388.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,388.22 532.39,388.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,388.3 532.39,388.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,388.38 532.39,388.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,388.46 532.39,388.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,388.54 532.39,388.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,388.63 532.39,388.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,388.71 532.39,388.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,388.79 532.39,388.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,388.87 532.39,388.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,388.95 532.39,389.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,389.03 532.39,389.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,389.12 532.39,389.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,389.2 532.39,389.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,389.28 532.39,389.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,389.36 532.39,389.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,389.44 532.39,389.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,389.53 532.39,389.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,389.61 532.39,389.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,389.69 532.39,389.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,389.77 532.39,389.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,389.85 532.39,389.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,389.94 532.39,389.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,390.02 532.39,390.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,390.1 532.39,390.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,390.18 532.39,390.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,390.26 532.39,390.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,390.35 532.39,390.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,390.43 532.39,390.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,390.51 532.39,390.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,390.59 532.39,390.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,390.67 532.39,390.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,390.75 532.39,390.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,390.84 532.39,390.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,390.92 532.39,390.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,391 532.39,391.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,391.08 532.39,391.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,391.16 532.39,391.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,391.25 532.39,391.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,391.33 532.39,391.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,391.41 532.39,391.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,391.49 532.39,391.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,391.57 532.39,391.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,391.66 532.39,391.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,391.74 532.39,391.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,391.82 532.39,391.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,391.9 532.39,391.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,391.98 532.39,392.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,392.07 532.39,392.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,392.15 532.39,392.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,392.23 532.39,392.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,392.31 532.39,392.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,392.39 532.39,392.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,392.47 532.39,392.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,392.56 532.39,392.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,392.64 532.39,392.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,392.72 532.39,392.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,392.8 532.39,392.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,392.88 532.39,392.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,392.97 532.39,393.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,393.05 532.39,393.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,393.13 532.39,393.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,393.21 532.39,393.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,393.29 532.39,393.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,393.38 532.39,393.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,393.46 532.39,393.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,393.54 532.39,393.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,393.62 532.39,393.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,393.7 532.39,393.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,393.79 532.39,393.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,393.87 532.39,393.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,393.95 532.39,394" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,394.03 532.39,394.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,394.11 532.39,394.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,394.19 532.39,394.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,394.28 532.39,394.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,394.36 532.39,394.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,394.44 532.39,394.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,394.52 532.39,394.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,394.6 532.39,394.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,394.69 532.39,394.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,394.77 532.39,394.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,394.85 532.39,394.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,394.93 532.39,394.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,395.01 532.39,395.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,395.1 532.39,395.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,395.18 532.39,395.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,395.26 532.39,395.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,395.34 532.39,395.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,395.42 532.39,395.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,395.51 532.39,395.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,395.59 532.39,395.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,395.67 532.39,395.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.39,395.75 532.38,395.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,395.83 532.38,395.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,395.91 532.38,395.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,396 532.38,396.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,396.08 532.38,396.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,396.16 532.38,396.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,396.24 532.38,396.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,396.32 532.38,396.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,396.41 532.38,396.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,396.49 532.38,396.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,396.57 532.38,396.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,396.65 532.38,396.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,396.73 532.38,396.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,396.82 532.38,396.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,396.9 532.38,396.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,396.98 532.38,397.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,397.06 532.38,397.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,397.14 532.38,397.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,397.22 532.38,397.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,397.31 532.38,397.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,397.39 532.38,397.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,397.47 532.38,397.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,397.55 532.38,397.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,397.63 532.38,397.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,397.72 532.38,397.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,397.8 532.38,397.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,397.88 532.38,397.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,397.96 532.38,398.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,398.04 532.38,398.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,398.13 532.38,398.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,398.21 532.38,398.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,398.29 532.38,398.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,398.37 532.38,398.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,398.45 532.38,398.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,398.54 532.38,398.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,398.62 532.38,398.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,398.7 532.38,398.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,398.78 532.38,398.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,398.86 532.38,398.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,398.94 532.38,399" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,399.03 532.38,399.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,399.11 532.38,399.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,399.19 532.38,399.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,399.27 532.38,399.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,399.35 532.38,399.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,399.44 532.38,399.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,399.52 532.38,399.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,399.6 532.38,399.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,399.68 532.38,399.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,399.76 532.38,399.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,399.85 532.38,399.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,399.93 532.38,399.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,400.01 532.38,400.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,400.09 532.38,400.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,400.17 532.38,400.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,400.26 532.38,400.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,400.34 532.38,400.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,400.42 532.38,400.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,400.5 532.38,400.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,400.58 532.38,400.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,400.66 532.38,400.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,400.75 532.38,400.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,400.83 532.38,400.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,400.91 532.38,400.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,400.99 532.38,401.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,401.07 532.38,401.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,401.16 532.38,401.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,401.24 532.38,401.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,401.32 532.38,401.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,401.4 532.38,401.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,401.48 532.38,401.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,401.57 532.38,401.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,401.65 532.38,401.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,401.73 532.38,401.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,401.81 532.38,401.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,401.89 532.38,401.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,401.98 532.38,402.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,402.06 532.38,402.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,402.14 532.38,402.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,402.22 532.38,402.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,402.3 532.38,402.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,402.38 532.38,402.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,402.47 532.38,402.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,402.55 532.38,402.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,402.63 532.38,402.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,402.71 532.38,402.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,402.79 532.38,402.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,402.88 532.38,402.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,402.96 532.38,403.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,403.04 532.38,403.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,403.12 532.38,403.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,403.2 532.38,403.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,403.29 532.38,403.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,403.37 532.38,403.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,403.45 532.38,403.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,403.53 532.38,403.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,403.61 532.38,403.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,403.7 532.38,403.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,403.78 532.38,403.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,403.86 532.38,403.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,403.94 532.38,404" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,404.02 532.38,404.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,404.1 532.38,404.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,404.19 532.38,404.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,404.27 532.38,404.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,404.35 532.38,404.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,404.43 532.38,404.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,404.51 532.38,404.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,404.6 532.38,404.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,404.68 532.38,404.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,404.76 532.38,404.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,404.84 532.38,404.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,404.92 532.38,404.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,405.01 532.38,405.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,405.09 532.38,405.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,405.17 532.38,405.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,405.25 532.38,405.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,405.33 532.38,405.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,405.42 532.38,405.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,405.5 532.38,405.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,405.58 532.38,405.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,405.66 532.38,405.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,405.74 532.38,405.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,405.82 532.38,405.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,405.91 532.38,405.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,405.99 532.38,406.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,406.07 532.38,406.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,406.15 532.38,406.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,406.23 532.38,406.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,406.32 532.38,406.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,406.4 532.38,406.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,406.48 532.38,406.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,406.56 532.38,406.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,406.64 532.38,406.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,406.73 532.38,406.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,406.81 532.38,406.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,406.89 532.38,406.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,406.97 532.38,407.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,407.05 532.38,407.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,407.13 532.38,407.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,407.22 532.38,407.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,407.3 532.38,407.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,407.38 532.38,407.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,407.46 532.38,407.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,407.54 532.38,407.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,407.63 532.38,407.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,407.71 532.38,407.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,407.79 532.38,407.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,407.87 532.38,407.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,407.95 532.38,408.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,408.04 532.38,408.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,408.12 532.38,408.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,408.2 532.38,408.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,408.28 532.38,408.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,408.36 532.38,408.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,408.45 532.38,408.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,408.53 532.38,408.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,408.61 532.38,408.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,408.69 532.38,408.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,408.77 532.38,408.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,408.85 532.38,408.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,408.94 532.38,408.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,409.02 532.38,409.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,409.1 532.38,409.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,409.18 532.38,409.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,409.26 532.38,409.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,409.35 532.38,409.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.38,409.43 532.37,409.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,409.51 532.37,409.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,409.59 532.37,409.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,409.67 532.37,409.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,409.76 532.37,409.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,409.84 532.37,409.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,409.92 532.37,409.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,410 532.37,410.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,410.08 532.37,410.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,410.17 532.37,410.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,410.25 532.37,410.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,410.33 532.37,410.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,410.41 532.37,410.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,410.49 532.37,410.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,410.57 532.37,410.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,410.66 532.37,410.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,410.74 532.37,410.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,410.82 532.37,410.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,410.9 532.37,410.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,410.98 532.37,411.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,411.07 532.37,411.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,411.15 532.37,411.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,411.23 532.37,411.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,411.31 532.37,411.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,411.39 532.37,411.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,411.48 532.37,411.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,411.56 532.37,411.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,411.64 532.37,411.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,411.72 532.37,411.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,411.8 532.37,411.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,411.89 532.37,411.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,413.92 532.37,413.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,413.99 532.37,414.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,414.07 532.37,414.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,414.16 532.37,414.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,414.24 532.37,414.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,414.32 532.37,414.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,414.4 532.37,414.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,414.48 532.37,414.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,414.57 532.37,414.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,414.65 532.37,414.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,414.73 532.37,414.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,414.81 532.37,414.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,414.89 532.37,414.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,414.98 532.37,415.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,415.06 532.37,415.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,415.14 532.37,415.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,415.22 532.37,415.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,415.3 532.37,415.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,415.38 532.37,415.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,415.47 532.37,415.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,415.55 532.37,415.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,415.63 532.37,415.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,415.71 532.37,415.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,415.79 532.37,415.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,415.88 532.37,415.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,415.96 532.37,416.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,416.04 532.37,416.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,416.12 532.37,416.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,416.2 532.37,416.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,416.29 532.37,416.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,416.37 532.37,416.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,416.45 532.37,416.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,416.53 532.37,416.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,416.61 532.37,416.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,416.7 532.37,416.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,416.78 532.37,416.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,416.86 532.37,416.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,416.94 532.37,417" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,417.02 532.37,417.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,417.1 532.37,417.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,417.19 532.37,417.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,417.27 532.37,417.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,417.35 532.37,417.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,417.43 532.37,417.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,417.51 532.37,417.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,417.6 532.37,417.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,417.68 532.37,417.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,417.76 532.37,417.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,417.84 532.37,417.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,417.92 532.37,417.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,418.01 532.37,418.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,418.09 532.37,418.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,418.17 532.37,418.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,418.25 532.37,418.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,418.33 532.37,418.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,418.42 532.37,418.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,418.5 532.37,418.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,418.58 532.37,418.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,418.66 532.37,418.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,418.74 532.37,418.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,418.82 532.37,418.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,418.91 532.37,418.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,418.99 532.37,419.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,419.07 532.37,419.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,419.15 532.37,419.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,419.23 532.37,419.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,419.32 532.37,419.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,419.4 532.37,419.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,419.48 532.37,419.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,419.56 532.37,419.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,419.64 532.37,419.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,419.73 532.37,419.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,419.81 532.37,419.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,419.89 532.37,419.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,419.97 532.37,420.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,420.05 532.37,420.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,420.13 532.37,420.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,420.22 532.37,420.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,420.3 532.37,420.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,420.38 532.37,420.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,420.46 532.37,420.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,420.54 532.37,420.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,420.63 532.37,420.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,420.71 532.37,420.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,420.79 532.37,420.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,420.87 532.37,420.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,420.95 532.37,421.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,421.04 532.37,421.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,421.12 532.37,421.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,421.2 532.37,421.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,421.28 532.37,421.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,421.36 532.37,421.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,421.45 532.37,421.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,421.53 532.37,421.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,421.61 532.37,421.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,421.69 532.37,421.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,421.77 532.37,421.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,421.85 532.37,421.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,421.94 532.37,421.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,422.02 532.37,422.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,422.1 532.37,422.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,422.18 532.37,422.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,422.26 532.37,422.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,422.35 532.37,422.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,422.43 532.37,422.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,422.51 532.37,422.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,422.59 532.37,422.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,422.67 532.37,422.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,422.76 532.37,422.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,422.84 532.37,422.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,422.92 532.37,422.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,423 532.37,423.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.37,423.08 532.36,423.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,423.17 532.36,423.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,423.25 532.36,423.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,423.33 532.36,423.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,423.41 532.36,423.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,423.49 532.36,423.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,423.57 532.36,423.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,423.66 532.36,423.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,423.74 532.36,423.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,423.82 532.36,423.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,423.9 532.36,423.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,423.98 532.36,424.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,424.07 532.36,424.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,424.15 532.36,424.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,424.23 532.36,424.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,424.31 532.36,424.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,424.39 532.36,424.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,424.48 532.36,424.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,424.56 532.36,424.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,424.64 532.36,424.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,424.72 532.36,424.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,424.8 532.36,424.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,424.89 532.36,424.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,424.97 532.36,425.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,425.05 532.36,425.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,425.13 532.36,425.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,425.21 532.36,425.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,425.29 532.36,425.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,425.38 532.36,425.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,425.46 532.36,425.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,425.54 532.36,425.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,425.62 532.36,425.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,425.7 532.36,425.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,425.79 532.36,425.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,425.87 532.36,425.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,425.95 532.36,426" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,426.03 532.36,426.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,426.11 532.36,426.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,426.2 532.36,426.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,426.28 532.36,426.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,426.36 532.36,426.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,426.44 532.36,426.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,426.52 532.36,426.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,426.61 532.36,426.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,426.69 532.36,426.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,426.77 532.36,426.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,426.85 532.36,426.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,426.93 532.36,426.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,427.01 532.36,427.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,427.1 532.36,427.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,427.18 532.36,427.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,427.26 532.36,427.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,427.34 532.36,427.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,427.42 532.36,427.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,427.51 532.36,427.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,427.59 532.36,427.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,427.67 532.36,427.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,427.75 532.36,427.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,427.83 532.36,427.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,427.92 532.36,427.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,428 532.36,428.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,428.08 532.36,428.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,428.16 532.36,428.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,428.24 532.36,428.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,428.33 532.36,428.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,428.41 532.36,428.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,428.49 532.36,428.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,428.57 532.36,428.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,428.65 532.36,428.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,428.73 532.36,428.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,428.82 532.36,428.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,428.9 532.36,428.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,428.98 532.36,429.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,429.06 532.36,429.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,429.14 532.36,429.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,429.23 532.36,429.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,429.31 532.36,429.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,429.39 532.36,429.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,429.47 532.36,429.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,429.55 532.36,429.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,429.64 532.36,429.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,429.72 532.36,429.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,429.8 532.36,429.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,429.88 532.36,429.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,429.96 532.36,430.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,430.04 532.36,430.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,430.13 532.36,430.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,430.21 532.36,430.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,430.29 532.36,430.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,430.37 532.36,430.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,430.45 532.36,430.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,430.54 532.36,430.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,430.62 532.36,430.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,430.7 532.36,430.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,430.78 532.36,430.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,430.86 532.36,430.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,430.95 532.36,431" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,431.03 532.36,431.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,431.11 532.36,431.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,431.19 532.36,431.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,431.27 532.36,431.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,431.36 532.36,431.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,431.44 532.36,431.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,431.52 532.36,431.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,431.6 532.36,431.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,431.68 532.36,431.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,431.76 532.36,431.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,431.85 532.36,431.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,431.93 532.36,431.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,432.01 532.36,432.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,432.09 532.36,432.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,432.17 532.36,432.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,432.26 532.36,432.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,432.34 532.36,432.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,432.42 532.36,432.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,432.5 532.36,432.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,432.58 532.36,432.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,432.67 532.36,432.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,432.75 532.36,432.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,432.83 532.36,432.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,432.91 532.36,432.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,432.99 532.36,433.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,433.08 532.36,433.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,433.16 532.36,433.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,433.24 532.36,433.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,433.32 532.36,433.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,433.4 532.36,433.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,433.48 532.36,433.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,433.57 532.36,433.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,433.65 532.36,433.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,433.73 532.36,433.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,433.81 532.36,433.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,433.89 532.36,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,433.98 532.36,434.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,434.06 532.36,434.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,434.14 532.36,434.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,434.22 532.36,434.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,434.3 532.36,434.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,434.39 532.36,434.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,434.47 532.36,434.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,434.55 532.36,434.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,434.63 532.36,434.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,434.71 532.36,434.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,434.8 532.36,434.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,434.88 532.36,434.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,434.96 532.36,435.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,435.04 532.36,435.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,435.12 532.36,435.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,435.2 532.36,435.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,435.29 532.36,435.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,435.37 532.36,435.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,435.45 532.36,435.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,435.53 532.36,435.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,435.61 532.36,435.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,435.7 532.36,435.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,435.78 532.36,435.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="532.36,435.86 532.36,435.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="514.48,429.88 517.05,429.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="517.05,436.74 514.48,436.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="514.29,434.46 516.67,434.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="514.29,436.55 514.29,430.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="514.29,436.55 514.34,436.69 514.48,436.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="514.48,429.88 514.34,429.93 514.29,430.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="517.05,436.36 517.05,434.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="517.05,434.84 516.94,434.57 516.67,434.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="516.67,436.74 516.94,436.63 517.05,436.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="513.9,436.74 513.9,429.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="514.29,429.5 514.02,429.61 513.9,429.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="514.29,429.5 516.67,429.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="517.05,429.88 516.94,429.61 516.67,429.5" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="516.67,437.13 516.94,437.01 517.05,436.74" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="516.67,437.13 514.29,437.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="513.9,436.74 514.02,437.01 514.29,437.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="517.05,432.55 516.94,432.28 516.67,432.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="516.67,434.46 516.94,434.34 517.05,434.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="517.05,434.07 517.05,432.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="514.29,432.17 516.67,432.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="517.05,431.79 517.05,430.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="516.67,432.17 516.94,432.06 517.05,431.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="517.05,430.26 516.94,429.99 516.67,429.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="521.06,431.54 521.24,430.54 521.78,429.67 522.59,429.05 523.57,428.78 524.59,428.87 525.5,429.32 526.19,430.08 526.56,431.03 526.56,432.05 526.19,433 525.5,433.75 524.59,434.21 523.57,434.3 522.59,434.02 521.78,433.41 521.24,432.54 521.06,431.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="522.44,428.41 522.49,428.61 522.62,428.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="525.04,428.76 525.17,428.61 525.22,428.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="525.04,426.51 525.04,428.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="522.62,428.76 522.62,426.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="525.22,426.38 525.22,428.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="525.22,426.38 525.17,426.24 525.06,426.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="525.04,426.51 525,426.37 524.87,426.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="524.87,426.28 523.83,426.16 522.78,426.28" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="522.78,426.28 522.66,426.37 522.62,426.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="522.44,428.41 522.44,426.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="525.06,426.16 523.83,425.99 522.6,426.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="522.6,426.16 522.49,426.24 522.44,426.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="525.04,428.76 522.62,428.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="520.42,431.17 520.62,431.23 520.82,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="522.03,429.1 521.96,428.91 521.81,428.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="520.08,427.97 522.03,429.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="520.82,431.2 518.87,430.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="520.06,427.76 521.81,428.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="520.06,427.76 519.92,427.73 519.79,427.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="520.08,427.97 519.94,427.94 519.8,428.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="519.8,428.01 519.18,428.85 518.76,429.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="518.76,429.82 518.77,429.96 518.87,430.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="520.42,431.17 518.67,430.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="519.79,427.78 519.03,428.76 518.56,429.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="518.56,429.91 518.57,430.05 518.67,430.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="522.03,429.1 520.82,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="521.81,434.3 521.96,434.17 522.03,433.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="520.82,431.87 520.62,431.84 520.42,431.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="518.87,433 520.82,431.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="522.03,433.98 520.08,435.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="518.67,432.92 520.43,431.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="518.67,432.92 518.57,433.02 518.56,433.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="518.87,433 518.77,433.11 518.76,433.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="518.76,433.26 519.18,434.22 519.8,435.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="519.8,435.07 519.94,435.13 520.08,435.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="521.81,434.3 520.06,435.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="518.56,433.16 519.03,434.31 519.79,435.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="519.79,435.29 519.92,435.35 520.06,435.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="520.82,431.87 522.03,433.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="525.22,434.67 525.17,434.47 525.04,434.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="522.62,434.31 522.49,434.47 522.44,434.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="522.62,436.57 522.62,434.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="525.04,434.31 525.04,436.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="522.44,436.7 522.44,434.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="522.44,436.7 522.49,436.83 522.6,436.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="522.62,436.57 522.66,436.71 522.78,436.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="522.78,436.79 523.83,436.91 524.87,436.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="524.87,436.79 525,436.71 525.04,436.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="525.22,434.67 525.22,436.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="522.6,436.92 523.83,437.08 525.06,436.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="525.06,436.92 525.17,436.83 525.22,436.7" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="522.62,434.31 525.04,434.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="527.23,431.9 527.04,431.84 526.84,431.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="525.62,433.98 525.7,434.17 525.85,434.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="527.58,435.1 525.62,433.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="526.84,431.87 528.79,433" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="527.6,435.32 525.85,434.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="527.6,435.32 527.74,435.35 527.87,435.29" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="527.58,435.1 527.72,435.13 527.86,435.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="527.86,435.07 528.48,434.22 528.9,433.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="528.9,433.26 528.89,433.11 528.79,433" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="527.23,431.9 528.99,432.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="527.87,435.29 528.63,434.31 529.1,433.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="529.1,433.16 529.09,433.02 528.99,432.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="525.62,433.98 526.84,431.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="525.85,428.77 525.7,428.91 525.62,429.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="526.84,431.2 527.04,431.23 527.23,431.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="528.79,430.07 526.84,431.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="525.62,429.1 527.58,427.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="528.99,430.16 527.23,431.17" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="528.99,430.16 529.09,430.05 529.1,429.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="528.79,430.07 528.89,429.96 528.9,429.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="528.9,429.82 528.48,428.85 527.86,428.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="527.86,428.01 527.72,427.94 527.58,427.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="525.85,428.77 527.6,427.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="529.1,429.91 528.63,428.76 527.87,427.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="527.87,427.78 527.74,427.73 527.6,427.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="526.84,431.2 525.62,429.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="427.61,422.21 427.61,422.56 433.16,422.56 433.16,422.21 427.61,422.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="417.98,422.21 417.98,422.56 422.83,422.56 422.83,422.21 417.98,422.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="417.98,408.21 417.98,410.98 426.3,410.98 426.3,408.21 417.98,408.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="422.14,415.84 427.7,415.84 427.7,418.61 422.14,418.61 422.14,415.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="422.14,418.61 417.98,418.61 417.98,414.45 420.76,414.45 420.76,414.45 420.83,415 421.12,415.47 421.59,415.77 422.14,415.84 422.14,418.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="420.76,414.45 417.98,414.45 417.98,410.98 420.76,410.98 420.76,414.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="426.3,408.21 426.3,408.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="426.3,408.8 426.3,409.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="426.3,409.62 426.3,409.94 426.61,409.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="426.88,409.94 427.43,409.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="427.7,409.94 428.25,409.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="428.52,409.94 429.07,409.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="429.34,409.94 429.88,409.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.16,409.94 430.46,409.94 430.46,409.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.46,409.35 430.46,408.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="430.46,408.53 430.46,408.21 430.16,408.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="429.88,408.21 429.34,408.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="429.07,408.21 428.52,408.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="428.25,408.21 427.7,408.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="427.43,408.21 426.88,408.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="426.61,408.21 426.3,408.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="422.14,408.21 422.14,408.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="422.14,408.8 422.14,409.35" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="422.14,409.62 422.14,409.94 422.45,409.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="422.72,409.94 423.27,409.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="423.54,409.94 424.09,409.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="424.36,409.94 424.9,409.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="425.18,409.94 425.72,409.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="426,409.94 426.3,409.94 426.3,409.62" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="426.3,409.35 426.3,408.8" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="426.3,408.53 426.3,408.21 426,408.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="425.72,408.21 425.18,408.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="424.9,408.21 424.36,408.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="424.09,408.21 423.54,408.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="423.27,408.21 422.72,408.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="422.45,408.21 422.14,408.21" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="425.26,411.38 423.18,411.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="426.3,410.98 422.14,410.98 422.14,408.9 426.3,408.9 426.3,410.98 422.14,408.9" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="425.96,418.49 427.7,418.49 427.7,415.84 425.96,415.84 425.96,418.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="425.96,415.84 427.7,418.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="426.38,415.68 427.3,415.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="424.01,414.15 423.71,413.43 423.16,412.88 422.43,412.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="422.75,413.13 422.44,412.99 422.13,413.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="422.75,413.13 423.46,413.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="423.49,414.46 423.6,414.15 423.46,413.84" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="423.83,414.18 423.57,413.53 423.06,413.03 422.4,412.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="423.83,414.18 424.01,414.15" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="422.4,412.78 422.43,412.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="421.14,413.87 420.98,414.11 421,414.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="421,414.39 421.47,415.12 422.2,415.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="421.14,413.87 422.13,413.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="422.2,415.6 422.49,415.61 422.73,415.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="423.49,414.46 422.73,415.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.8,431.48 403.09,432.2 403.65,432.74 404.38,433.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.05,432.5 404.36,432.63 404.67,432.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.05,432.5 403.34,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.31,431.16 403.2,431.48 403.34,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.97,431.45 403.23,432.1 403.74,432.6 404.4,432.85" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="402.97,431.45 402.8,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.4,432.85 404.38,433.02" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.66,431.76 405.82,431.52 405.81,431.23" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.81,431.23 405.33,430.5 404.6,430.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="405.66,431.76 404.67,432.53" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="404.6,430.03 404.32,430.02 404.08,430.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="403.31,431.16 404.08,430.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="413.65,433.06 414.37,432.77 414.92,432.21 415.19,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="414.67,431.8 414.81,431.5 414.7,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="414.67,431.8 413.96,432.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="413.34,432.55 413.65,432.66 413.96,432.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="413.62,432.89 414.27,432.63 414.77,432.12 415.02,431.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="413.62,432.89 413.65,433.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="415.02,431.46 415.19,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="413.93,430.2 413.69,430.04 413.41,430.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="413.41,430.05 412.68,430.53 412.2,431.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="413.93,430.2 414.7,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="412.2,431.26 412.19,431.54 412.35,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="413.34,432.55 412.35,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="424.14,433.06 424.86,432.77 425.4,432.21 425.68,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="425.16,431.8 425.29,431.5 425.19,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="425.16,431.8 424.44,432.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="423.82,432.55 424.14,432.66 424.44,432.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="424.11,432.89 424.76,432.63 425.26,432.12 425.51,431.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="424.11,432.89 424.14,433.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="425.51,431.46 425.68,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="424.42,430.2 424.18,430.04 423.89,430.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="423.89,430.05 423.16,430.53 422.69,431.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="424.42,430.2 425.19,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="422.69,431.26 422.68,431.54 422.84,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="423.82,432.55 422.84,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="434.62,433.06 435.34,432.77 435.89,432.21 436.16,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="435.64,431.8 435.78,431.5 435.67,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="435.64,431.8 434.93,432.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="434.31,432.55 434.62,432.66 434.93,432.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="434.59,432.89 435.25,432.63 435.74,432.12 435.99,431.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="434.59,432.89 434.62,433.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="435.99,431.46 436.16,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="434.91,430.2 434.67,430.04 434.38,430.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="434.38,430.05 433.65,430.53 433.18,431.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="434.91,430.2 435.67,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="433.18,431.26 433.16,431.54 433.32,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="434.31,432.55 433.32,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="445.6,433.06 446.32,432.77 446.86,432.21 447.14,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="446.62,431.8 446.75,431.5 446.65,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="446.62,431.8 445.9,432.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="445.28,432.55 445.6,432.66 445.9,432.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="445.57,432.89 446.22,432.63 446.72,432.12 446.97,431.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="445.57,432.89 445.6,433.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="446.97,431.46 447.14,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="445.88,430.2 445.64,430.04 445.35,430.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="445.35,430.05 444.62,430.53 444.15,431.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="445.88,430.2 446.65,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="444.15,431.26 444.14,431.54 444.3,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="445.28,432.55 444.3,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="456.38,433.06 457.1,432.77 457.64,432.21 457.92,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="457.4,431.8 457.53,431.5 457.43,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="457.4,431.8 456.68,432.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="456.06,432.55 456.38,432.66 456.68,432.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="456.35,432.89 457,432.63 457.5,432.12 457.75,431.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="456.35,432.89 456.38,433.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="457.75,431.46 457.92,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="456.66,430.2 456.42,430.04 456.13,430.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="456.13,430.05 455.4,430.53 454.93,431.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="456.66,430.2 457.43,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="454.93,431.26 454.92,431.54 455.08,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="456.06,432.55 455.08,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="467.15,433.06 467.88,432.77 468.42,432.21 468.69,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="468.17,431.8 468.31,431.5 468.21,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="468.17,431.8 467.46,432.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="466.84,432.55 467.15,432.66 467.46,432.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="467.12,432.89 467.78,432.63 468.27,432.12 468.52,431.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="467.12,432.89 467.15,433.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="468.52,431.46 468.69,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="467.44,430.2 467.2,430.04 466.91,430.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="466.91,430.05 466.18,430.53 465.71,431.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="467.44,430.2 468.21,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="465.71,431.26 465.69,431.54 465.85,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="466.84,432.55 465.85,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="477.89,433.06 478.61,432.77 479.15,432.21 479.43,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="478.91,431.8 479.04,431.5 478.94,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="478.91,431.8 478.19,432.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="477.57,432.55 477.89,432.66 478.19,432.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="477.86,432.89 478.51,432.63 479.01,432.12 479.26,431.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="477.86,432.89 477.89,433.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="479.26,431.46 479.43,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="478.17,430.2 477.93,430.04 477.64,430.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="477.64,430.05 476.91,430.53 476.44,431.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="478.17,430.2 478.94,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="476.44,431.26 476.43,431.54 476.59,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="477.57,432.55 476.59,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="488.67,433.06 489.39,432.77 489.94,432.21 490.21,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="489.69,431.8 489.83,431.5 489.72,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="489.69,431.8 488.98,432.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="488.36,432.55 488.67,432.66 488.98,432.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="488.64,432.89 489.3,432.63 489.79,432.12 490.04,431.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="488.64,432.89 488.67,433.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="490.04,431.46 490.21,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="488.95,430.2 488.72,430.04 488.43,430.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="488.43,430.05 487.7,430.53 487.23,431.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="488.95,430.2 489.72,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="487.23,431.26 487.21,431.54 487.37,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="488.36,432.55 487.37,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="499.14,433.06 499.86,432.77 500.4,432.21 500.68,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="500.16,431.8 500.29,431.5 500.19,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="500.16,431.8 499.44,432.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="498.82,432.55 499.14,432.66 499.44,432.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="499.11,432.89 499.76,432.63 500.26,432.12 500.51,431.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="499.11,432.89 499.14,433.06" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="500.51,431.46 500.68,431.48" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="499.42,430.2 499.18,430.04 498.89,430.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="498.89,430.05 498.16,430.53 497.69,431.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="499.42,430.2 500.19,431.18" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="497.69,431.26 497.68,431.54 497.84,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="498.82,432.55 497.84,431.78" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="513.69,423.81 517.85,423.81 517.85,422.42 513.69,422.42 513.69,423.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="530.29,423.24 530.29,427.4 532.37,427.4 532.37,423.24 530.29,423.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="530.29,423.24 528.21,423.24" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="530.29,427.4 528.21,427.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="528.21,423.24 528.37,424.03 528.82,424.71 529.49,425.16 530.29,425.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="530.29,425.32 529.49,425.48 528.82,425.93 528.37,426.6 528.21,427.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.48,254.07 319.96,252.14 320.53,251.57" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="320.21,253.06 320.56,252.71" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="320.48,254.07 321.05,253.5" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="321.53,251.38 321.56,251.7 321.52,251.97 321.42,252.2 321.37,252.24 321.22,252.28 321.08,252.18 320.96,251.95 320.94,251.86 320.91,251.54 320.95,251.27 321.05,251.05 321.1,251 321.25,250.96 321.39,251.06 321.53,251.38 321.65,251.84 321.73,252.34 321.72,252.71 321.61,252.93 321.53,253.02 321.37,253.06 321.28,252.92" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="468.22,242.43 461.86,242.43 461.86,250.29 468.22,250.29 468.22,242.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.61,262.83 326.53,262.83 326.53,264.67 328.61,264.67 328.61,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.53,305.47 327.8,305.47 327.8,318.3 336.53,318.3 336.53,305.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.15,298.94 468.68,298.94 468.68,302 472.15,302 472.15,298.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.52,319.4 523.26,319.4 523.26,326.22 526.52,326.22 526.52,319.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="503.82,338.81 492.66,338.81 492.66,348.06 503.82,348.06 503.82,338.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="491.74,348.75 488.04,348.75 488.04,350.37 491.74,350.37 491.74,348.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.17,266.22 469.43,266.22 469.43,269.93 471.17,269.93 471.17,266.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.78,304.6 505.78,306.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.75,196.54 432.79,196.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="399.11,196.54 397.15,196.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="399.11,225.36 397.15,225.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="434.75,225.36 432.79,225.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="363.45,225.36 361.49,225.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="468.97,265.76 468.97,270.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="363.45,196.54 361.49,196.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="501.08,282.23 505.78,282.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.08,275.64 501.08,282.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="501.08,275.64 505.78,275.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="505.78,282.23 505.78,275.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="504.57,275.64 504.57,282.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="502.29,275.64 502.29,282.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="382.44,293.76 371.28,293.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.28,293.76 371.28,290.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="371.28,290.93 370.97,290.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.75,294.08 370.97,294.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="370.97,290.93 370.97,294.08" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.75,290.93 382.44,290.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.44,290.93 382.44,293.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.65,281.4 363.65,291.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.65,281.4 363.97,281.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.65,291.13 363.97,291.13" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="363.97,291.13 363.97,281.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="449.39,390.45 450.47,390.33 451.47,389.92 452.33,389.27 453,388.42 453.41,387.42 453.56,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="453.78,385.8 453.56,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="453.56,385.8 453.56,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="453.56,386.35 453.78,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="449.39,386.35 449.39,390.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="449.6,390.45 449.6,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="449.6,386.35 449.39,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="449.17,385.8 449.17,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="449.17,386.35 449.39,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="449.39,386.35 449.39,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="449.39,385.8 449.17,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="453.78,385.8 453.78,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.1,385.8 458,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="453.78,386.35 457.77,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="453.78,386.35 453.78,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.1,386.35 461.87,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.87,385.8 462.1,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458,386.35 457.77,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.77,385.8 458,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.77,385.8 453.78,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458,386.35 461.87,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.19,385.8 462.1,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.19,386.35 465.97,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="465.97,385.8 466.19,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.1,386.35 465.97,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.19,386.35 468.09,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.19,385.8 468.09,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="436.64,385.8 434.39,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="436.64,386.35 434.39,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.09,386.35 467.87,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.87,386.35 467.87,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.87,385.8 468.09,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.09,385.8 468.09,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.29,386.35 457.29,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.83,386.35 460.83,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.34,386.35 464.34,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.29,385.8 457.52,385.8 457.52,386.35 457.29,386.35 457.29,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.83,385.8 461.06,385.8 461.06,386.35 460.83,386.35 460.83,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.34,385.8 464.56,385.8 464.56,386.35 464.34,386.35 464.34,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="453.78,385.8 453.78,386.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.52,386.08 460.83,386.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="461.06,386.08 464.34,386.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.56,386.08 467.87,386.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.29,386.08 453.78,386.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.35,385.8 445.57,385.8 445.57,386.35 445.35,386.35 445.35,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.66,385.8 441.88,385.8 441.88,386.35 441.66,386.35 441.66,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="437.96,385.8 438.18,385.8 438.18,386.35 437.96,386.35 437.96,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.39,385.8 434.62,385.8 434.62,386.35 434.39,386.35 434.39,385.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.62,386.08 437.96,386.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.18,386.08 441.66,386.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.88,386.08 445.35,386.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.57,386.08 449.17,386.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="435.08,393.42 443.79,393.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="435.08,393.11 444.1,393.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="443.79,393.42 443.79,401.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="443.79,401.82 444.1,401.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="444.1,401.82 444.1,393.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.54,369.77 313.72,368.93 314.23,368.23 314.98,367.79 315.84,367.7 316.66,367.97 317.3,368.55 317.66,369.34 317.66,370.21 317.3,371 316.66,371.58 315.84,371.84 314.98,371.75 314.23,371.32 313.72,370.62 313.54,369.77" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="312.69,373.92 311.97,373.63 311.42,373.07 311.15,372.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.67,372.66 311.53,372.36 311.64,372.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.67,372.66 312.39,373.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313,373.41 312.69,373.51 312.39,373.38" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="312.72,373.75 312.07,373.48 311.57,372.98 311.32,372.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="312.72,373.75 312.69,373.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.32,372.31 311.15,372.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="312.41,371.05 312.65,370.9 312.93,370.91" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="312.93,370.91 313.66,371.38 314.14,372.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="312.41,371.05 311.64,372.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="314.14,372.11 314.15,372.4 313.99,372.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313,373.41 313.99,372.64" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.93,374.26 317.28,374.68 316.51,374.8 315.75,374.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="316.31,374.37 315.99,374.3 315.79,374.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="316.31,374.37 317.31,374.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.69,373.71 317.6,374.02 317.31,374.2" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.81,374.13 317.21,374.52 316.51,374.63 315.83,374.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.81,374.13 317.93,374.26" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.83,374.45 315.75,374.61" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.42,372.84 315.43,372.55 315.61,372.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.61,372.33 316.41,372 317.28,372.03" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.42,372.84 315.79,374.04" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.28,372.03 317.53,372.19 317.63,372.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.69,373.71 317.63,372.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.29,365.51 319.01,365.8 319.56,366.36 319.83,367.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="319.31,366.77 319.45,367.07 319.34,367.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="319.31,366.77 318.6,366.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.98,366.02 318.29,365.91 318.6,366.05" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.26,365.68 318.92,365.94 319.41,366.45 319.66,367.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.26,365.68 318.29,365.51" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="319.66,367.11 319.83,367.09" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.57,368.37 318.33,368.53 318.05,368.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.05,368.52 317.32,368.04 316.84,367.31" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.57,368.37 319.34,367.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="316.84,367.31 316.83,367.03 316.99,366.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.98,366.02 316.99,366.79" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="310.73,369.65 310.52,368.9 310.63,368.12 311.03,367.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.1,368.07 311.26,367.77 311.57,367.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.1,368.07 310.97,369.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.33,369.58 311.05,369.39 310.97,369.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="310.89,369.57 310.69,368.88 310.79,368.18 311.16,367.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="310.89,369.57 310.73,369.65" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.16,367.58 311.03,367.46" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="312.82,367.66 313.09,367.76 313.26,367.99" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.26,367.99 313.33,368.86 313.05,369.68" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="312.82,367.66 311.57,367.66" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.05,369.68 312.83,369.87 312.54,369.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="311.33,369.58 312.54,369.89" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.43,365.07 314.11,364.68 314.88,364.59 315.63,364.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.05,365.03 315.38,365.11 315.56,365.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.05,365.03 314.05,365.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.65,365.63 313.76,365.32 314.05,365.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.55,365.2 314.16,364.84 314.86,364.76 315.54,364.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.55,365.2 313.43,365.07" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.54,364.97 315.63,364.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.87,366.6 315.85,366.89 315.67,367.1" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.67,367.1 314.85,367.39 313.98,367.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="315.87,366.6 315.56,365.39" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.98,367.32 313.74,367.16 313.65,366.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.65,365.63 313.65,366.88" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.7,369.87 320.82,370.64 320.61,371.39 320.12,372" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.14,371.39 319.94,371.66 319.62,371.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.14,371.39 320.39,370.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.1,369.86 320.35,370.08 320.39,370.41" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.54,369.93 320.64,370.63 320.46,371.32 320.01,371.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.54,369.93 320.7,369.87" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.01,371.87 320.12,372" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.38,371.57 318.12,371.45 317.99,371.19" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="317.99,371.19 318.02,370.32 318.41,369.54" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.38,371.57 319.62,371.73" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="318.41,369.54 318.65,369.39 318.94,369.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="320.1,369.86 318.94,369.4" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="382.75,294.08 382.75,290.93" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="435.08,393.42 435.08,393.11" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="358.54,250.88 343.26,250.88 343.26,248.26 358.54,248.26 358.54,250.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="354.97,249.55 355.06,249.92 355.06,249.92 355.32,250.25 355.32,250.25 355.71,250.46 355.71,250.46 356.18,250.54 356.18,250.54 356.66,250.46 356.66,250.46 357.04,250.25 357.04,250.25 357.31,249.92 357.31,249.92 357.4,249.55 357.4,249.55 357.31,249.19 357.31,249.19 357.04,248.86 357.04,248.86 356.66,248.65 356.66,248.65 356.18,248.57 356.18,248.57 355.71,248.65 355.71,248.65 355.32,248.86 355.32,248.86 355.06,249.19 355.06,249.19 354.97,249.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="351.04,249.55 351.13,249.92 351.13,249.92 351.4,250.25 351.4,250.25 351.78,250.46 351.78,250.46 352.26,250.54 352.26,250.54 352.73,250.46 352.73,250.46 353.12,250.25 353.12,250.25 353.38,249.92 353.38,249.92 353.47,249.55 353.47,249.55 353.38,249.19 353.38,249.19 353.12,248.86 353.12,248.86 352.73,248.65 352.73,248.65 352.26,248.57 352.26,248.57 351.78,248.65 351.78,248.65 351.4,248.86 351.4,248.86 351.13,249.19 351.13,249.19 351.04,249.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="347.43,249.55 347.52,249.92 347.52,249.92 347.79,250.25 347.79,250.25 348.17,250.46 348.17,250.46 348.65,250.54 348.65,250.54 349.12,250.46 349.12,250.46 349.5,250.25 349.5,250.25 349.77,249.92 349.77,249.92 349.86,249.55 349.86,249.55 349.77,249.19 349.77,249.19 349.5,248.86 349.5,248.86 349.12,248.65 349.12,248.65 348.65,248.57 348.65,248.57 348.17,248.65 348.17,248.65 347.79,248.86 347.79,248.86 347.52,249.19 347.52,249.19 347.43,249.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="343.77,249.55 343.86,249.92 343.86,249.92 344.12,250.25 344.12,250.25 344.51,250.46 344.51,250.46 344.98,250.54 344.98,250.54 345.46,250.46 345.46,250.46 345.84,250.25 345.84,250.25 346.11,249.92 346.11,249.92 346.19,249.55 346.19,249.55 346.11,249.19 346.11,249.19 345.84,248.86 345.84,248.86 345.46,248.65 345.46,248.65 344.98,248.57 344.98,248.57 344.51,248.65 344.51,248.65 344.12,248.86 344.12,248.86 343.86,249.19 343.86,249.19 343.77,249.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="342.58,265.19 342.58,257.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.05,265.19 342.05,258.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.22,259.01 354.22,265.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.1,259.01 354.1,265.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="350.4,259.01 350.4,265.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="350.29,259.01 350.29,265.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="346.33,259.01 346.33,265.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="346.21,259.01 346.21,265.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="339.5,257.91 339.5,251.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.02,257.91 340.02,251.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.97,412.08 483.97,422.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="363.46,269.59 362.62,269.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.75,264.96 358.87,264.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="363.46,269.75 363.46,268.95" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="362.62,268.89 362.77,268.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.38,268.89 358.52,268.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="362.62,268.89 362.62,269.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.26,258.9 357.69,258.9" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="357.26,259.01 357.69,259.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.48,259.01 354.62,259.88 355.03,260.67 355.67,261.28 356.46,261.67 357.34,261.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="357.26,259.01 357.26,261.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.1,258.9 354.48,258.9" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.22,259.01 354.48,259.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="357.26,258.9 357.26,259.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.48,258.9 354.48,259.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.67,258.9 354.1,258.9" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.67,259.01 354.1,259.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="350.9,259.01 351.04,259.88 351.45,260.67 352.08,261.28 352.88,261.67 353.75,261.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.67,259.01 353.67,261.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="350.29,258.9 350.9,258.9" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="350.4,259.01 350.9,259.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.67,258.9 353.67,259.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="350.9,258.9 350.9,259.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="349.86,258.9 350.29,258.9" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="349.86,259.01 350.29,259.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="347.08,259.01 347.23,259.88 347.63,260.67 348.27,261.28 349.06,261.67 349.94,261.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="349.86,259.01 349.86,261.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="346.21,258.9 347.08,258.9" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="346.33,259.01 347.08,259.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="349.86,258.9 349.86,259.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="347.08,258.9 347.08,259.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.78,258.9 346.21,258.9" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.78,259.01 346.21,259.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.01,259.01 343.15,259.88 343.56,260.67 344.19,261.28 344.99,261.67 345.86,261.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.78,259.01 345.78,261.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="342.58,258.9 343.01,258.9" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="342.58,259.01 343.01,259.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.78,258.9 345.78,259.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="343.01,258.9 343.01,259.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="355.89,261.92 355.59,261.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="355.59,261.99 355.31,262.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="355.31,262.23 355.14,262.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="355.14,262.56 355.07,262.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="355.07,262.98 355.17,263.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="354.72,265.1 354.72,264.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="354.72,264.33 354.92,264.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="354.92,264.29 355.14,264.13 355.24,263.88 355.17,263.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="356.62,263.61 356.55,263.88 356.65,264.13 356.87,264.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="357.07,265.1 354.72,265.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="357.07,264.33 356.87,264.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="357.07,265.1 357.07,264.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="356.62,263.61 356.72,262.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="356.72,262.98 356.65,262.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="356.65,262.56 356.48,262.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="356.48,262.23 356.2,261.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="356.2,261.99 355.89,261.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="352.29,261.93 351.99,262.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="351.99,262.01 351.71,262.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="351.71,262.24 351.54,262.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="351.54,262.58 351.47,263" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="351.47,263 351.57,263.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="351.12,265.11 351.12,264.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="351.12,264.35 351.32,264.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="351.32,264.3 351.54,264.15 351.64,263.89 351.57,263.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="353.02,263.63 352.95,263.89 353.05,264.15 353.27,264.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="353.47,265.11 351.12,265.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="353.47,264.35 353.27,264.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="353.47,265.11 353.47,264.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="353.02,263.63 353.12,263" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="353.12,263 353.05,262.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="353.05,262.58 352.88,262.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="352.88,262.24 352.6,262.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="352.6,262.01 352.29,261.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="348.29,261.92 347.99,261.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="347.99,261.99 347.71,262.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="347.71,262.23 347.53,262.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="347.53,262.56 347.47,262.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="347.47,262.98 347.56,263.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="347.12,265.1 347.12,264.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="347.12,264.33 347.31,264.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="347.31,264.29 347.54,264.13 347.63,263.88 347.56,263.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="349.02,263.61 348.94,263.88 349.04,264.13 349.27,264.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="349.46,265.1 347.12,265.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="349.46,264.33 349.27,264.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="349.46,265.1 349.46,264.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="349.02,263.61 349.11,262.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="349.11,262.98 349.05,262.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="349.05,262.56 348.87,262.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="348.87,262.23 348.59,261.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="348.59,261.99 348.29,261.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="344.41,261.88 344.11,261.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="344.11,261.96 343.83,262.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="343.83,262.19 343.65,262.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="343.65,262.52 343.59,262.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="343.59,262.94 343.68,263.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="343.24,265.06 343.24,264.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="343.24,264.29 343.43,264.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="343.43,264.25 343.66,264.09 343.76,263.84 343.68,263.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="345.14,263.57 345.07,263.84 345.16,264.09 345.39,264.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="345.59,265.06 343.24,265.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="345.59,264.29 345.39,264.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="345.59,265.06 345.59,264.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="345.14,263.57 345.23,262.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="345.23,262.94 345.17,262.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="345.17,262.52 344.99,262.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="344.99,262.19 344.71,261.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="344.71,261.96 344.41,261.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="363.46,268.95 363.4,252.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.07,261.67 337.95,261.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="338.07,258.9 337.95,258.9" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="478.43,178.52 459.43,178.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="534.65,319.4 534.65,319.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,319.17 533.95,319.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,319.17 533.95,319.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,319.4 534.65,319.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,318.82 534.65,318.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="534.65,318.6 533.95,318.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,318.6 533.95,318.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="533.95,318.82 534.65,318.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.17,312.06 309.23,311.88 309.29,311.48 309.81,313.41" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="310.06,312.1 310.85,311.31" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="311,310.23 311.07,310.05 311.12,309.64 311.64,311.57" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="311.87,308.9 311.76,309.12 311.75,309.49 311.82,309.99 311.9,310.27 312.07,310.68 312.23,310.87 312.38,310.83 312.47,310.74 312.58,310.52 312.59,310.16 312.51,309.65 312.44,309.38 312.27,308.96 312.11,308.78 311.95,308.81 311.87,308.9" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="312.77,309.39 313.56,308.61" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="314.13,309.08 313.61,307.16 314.74,308.47 314.22,306.54" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="314.57,306.19 315.31,307.9 315.01,305.76 315.74,307.47 315.45,305.32" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="315.79,305.56 315.76,305.47 315.76,305.24 315.78,305.11 315.84,304.93 316.01,304.75 316.13,304.76 316.19,304.81 316.29,304.95 316.34,305.13 316.34,305.36 316.33,305.72 316.14,307.08 316.75,306.46" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="321.38,279.43 321.45,279.25 321.5,278.84 322.02,280.77" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="322.28,279.46 323.06,278.68" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="323.28,277.64 323.26,277.55 323.25,277.32 323.27,277.19 323.34,277.01 323.51,276.83 323.62,276.84 323.69,276.88 323.78,277.02 323.83,277.21 323.84,277.44 323.83,277.8 323.63,279.15 324.25,278.54" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="324.25,276.09 324.15,276.31 324.13,276.68 324.21,277.18 324.29,277.45 324.45,277.87 324.61,278.06 324.77,278.02 324.86,277.93 324.96,277.71 324.98,277.34 324.9,276.84 324.82,276.57 324.66,276.15 324.5,275.96 324.34,276 324.25,276.09" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="325.16,276.58 325.95,275.79" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="326.68,274.01 326.55,273.91 326.39,273.95 326.22,274.12 326.11,274.35 326.07,274.62 326.12,274.8 326.22,274.94 326.28,274.99 326.4,274.99 326.71,274.92 326.82,274.92 326.89,274.97 326.98,275.11 327.05,275.38 327.02,275.66 326.91,275.88 326.73,276.05 326.58,276.09 326.44,276" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="326.87,273.47 327.61,275.18 327.31,273.03 328.04,274.74 327.75,272.6" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="488.18,369.58 488.24,369.4 488.3,369 488.82,370.92" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="489.56,368.32 489.47,368.18 489.33,368.08 489.22,368.08 489.04,368.25 488.98,368.43 488.94,368.7 488.95,368.93 488.98,369.25 489.1,369.71 489.22,369.94 489.31,370.08 489.45,370.18 489.56,370.18 489.74,370.01 489.8,369.83 489.84,369.56 489.83,369.33" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="489.87,368.01 489.84,367.92 489.84,367.69 489.85,367.56 489.92,367.38 490.09,367.21 490.2,367.21 490.27,367.26 490.37,367.4 490.41,367.58 490.42,367.81 490.41,368.17 490.22,369.53 490.83,368.92" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="490.74,367.14 490.71,367.05 490.71,366.82 490.73,366.69 490.79,366.51 490.97,366.33 491.08,366.34 491.15,366.39 491.24,366.53 491.29,366.71 491.29,366.94 491.28,367.3 491.09,368.65 491.7,368.04" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="314.22,435.78 316.19,435.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.22,437.74 316.19,437.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="316.19,435.78 316.19,437.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.22,435.78 314.22,437.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.22,435.78 314.22,437.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="316.19,435.78 316.19,437.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.22,437.74 316.19,437.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.22,435.78 316.19,435.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.21,390.15 312.21,440.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.79,456.87 375.03,456.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.49,456.17 375.03,456.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.24,456.08 353.55,456.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.24,455.39 353.55,455.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.55,455.39 353.55,456.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.24,455.39 354.24,456.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="344.33,440.17 328.58,440.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.91,440.17 352.72,440.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.72,440.17 325.72,439.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.91,439.13 325.72,439.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.91,440.17 327.91,439.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.7,420.61 310.69,387.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.21,440.17 325.72,440.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.4,349.36 271.4,349.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,349.45 271.4,349.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,349.54 271.4,349.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,349.62 271.4,349.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,349.7 271.4,349.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,349.78 271.4,349.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,349.86 271.4,349.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,349.94 271.4,350" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,350.03 271.4,350.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,350.11 271.4,350.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,350.19 271.4,350.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,350.27 271.4,350.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,350.35 271.4,350.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,350.44 271.4,350.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,350.52 271.4,350.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,350.6 271.4,350.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,350.68 271.4,350.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,350.76 271.4,350.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,350.85 271.4,350.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,350.93 271.4,350.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,351.01 271.4,351.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,351.09 271.4,351.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,351.17 271.4,351.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,351.25 271.4,351.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,351.34 271.4,351.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,351.42 271.4,351.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,351.5 271.4,351.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,351.58 271.4,351.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,351.66 271.4,351.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,351.75 271.4,351.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,351.83 271.4,351.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,351.91 271.4,351.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,351.99 271.4,352.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,352.07 271.4,352.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,352.16 271.4,352.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,352.24 271.4,352.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,352.32 271.4,352.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,352.4 271.4,352.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,352.48 271.4,352.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,352.57 271.4,352.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,352.65 271.4,352.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,352.73 271.4,352.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,352.81 271.4,352.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,352.89 271.4,352.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,352.97 271.4,353.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,353.06 271.4,353.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,353.14 271.4,353.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,353.22 271.4,353.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,353.3 271.4,353.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,353.38 271.4,353.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,353.47 271.4,353.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,353.55 271.4,353.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,353.63 271.4,353.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,353.71 271.4,353.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,353.79 271.4,353.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,353.88 271.4,353.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,353.96 271.4,354.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,354.04 271.4,354.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,354.12 271.4,354.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,354.2 271.4,354.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,354.29 271.4,354.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,354.37 271.4,354.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,354.45 271.4,354.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,354.53 271.4,354.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,354.61 271.4,354.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,354.69 271.4,354.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,354.78 271.4,354.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,354.86 271.4,354.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,354.94 271.4,355" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,355.02 271.4,355.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,355.1 271.4,355.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,355.19 271.4,355.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,355.27 271.4,355.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,355.35 271.4,355.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,355.43 271.4,355.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,355.51 271.4,355.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,355.6 271.4,355.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,355.68 271.4,355.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,355.76 271.4,355.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,355.84 271.4,355.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,355.92 271.4,355.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,356.01 271.4,356.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,356.09 271.4,356.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,356.17 271.4,356.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,356.25 271.4,356.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,356.33 271.4,356.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,356.41 271.4,356.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,356.5 271.4,356.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,356.58 271.4,356.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,356.66 271.4,356.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,356.74 271.4,356.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,356.82 271.4,356.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,356.91 271.4,356.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,356.99 271.4,357.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,357.07 271.4,357.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,357.15 271.4,357.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,357.23 271.4,357.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,357.32 271.4,357.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,357.4 271.4,357.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,357.48 271.4,357.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,357.56 271.4,357.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,357.64 271.4,357.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,357.73 271.4,357.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,357.81 271.4,357.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,357.89 271.4,357.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,357.97 271.4,358.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,358.05 271.4,358.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,358.13 271.4,358.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,358.22 271.4,358.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,358.3 271.4,358.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,358.38 271.4,358.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,358.46 271.4,358.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,358.54 271.4,358.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,358.63 271.4,358.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,358.71 271.4,358.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,358.79 271.4,358.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,358.87 271.4,358.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,358.95 271.4,359.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,359.04 271.4,359.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,359.12 271.4,359.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,359.2 271.4,359.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,359.28 271.4,359.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,359.36 271.4,359.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,359.44 271.4,359.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,359.53 271.4,359.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,359.61 271.4,359.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,359.69 271.4,359.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,359.77 271.4,359.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,359.85 271.4,359.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,359.94 271.4,359.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,360.02 271.4,360.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,360.1 271.4,360.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,360.18 271.4,360.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,360.26 271.4,360.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,360.35 271.4,360.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,360.43 271.4,360.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,360.51 271.4,360.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,360.59 271.4,360.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,360.67 271.4,360.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,360.76 271.4,360.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,360.84 271.4,360.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,360.92 271.4,360.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,361 271.4,361.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,361.08 271.4,361.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,361.16 271.4,361.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,361.25 271.4,361.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,361.33 271.4,361.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,361.41 271.4,361.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,361.49 271.4,361.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,361.57 271.4,361.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,361.66 271.4,361.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,361.74 271.4,361.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,361.82 271.4,361.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,361.9 271.4,361.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,361.98 271.4,362.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,362.07 271.4,362.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,362.15 271.4,362.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,362.23 271.4,362.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,362.31 271.4,362.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,362.39 271.4,362.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,362.48 271.4,362.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,362.56 271.4,362.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,362.64 271.4,362.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,362.72 271.4,362.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,362.8 271.4,362.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,362.88 271.4,362.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,362.97 271.4,363.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,363.05 271.4,363.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,363.13 271.4,363.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,363.21 271.4,363.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,363.29 271.4,363.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,363.38 271.4,363.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,363.46 271.4,363.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,363.54 271.4,363.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,363.62 271.4,363.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,363.7 271.4,363.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,363.79 271.4,363.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,363.87 271.4,363.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,363.95 271.4,364" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,364.03 271.4,364.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,364.11 271.4,364.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,364.2 271.4,364.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,364.28 271.4,364.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,364.36 271.4,364.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,364.44 271.4,364.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,364.52 271.4,364.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,364.6 271.4,364.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,364.69 271.4,364.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,364.77 271.4,364.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,364.85 271.4,364.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,364.93 271.4,364.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,365.01 271.4,365.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,365.1 271.4,365.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,365.18 271.4,365.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,365.26 271.4,365.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,365.34 271.4,365.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,365.42 271.4,365.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,365.51 271.4,365.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,365.59 271.4,365.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,365.67 271.4,365.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,365.75 271.4,365.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,365.83 271.4,365.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,365.92 271.4,365.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,366 271.4,366.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,366.08 271.4,366.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,366.16 271.4,366.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,366.24 271.4,366.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,366.32 271.4,366.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,366.41 271.4,366.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,366.49 271.4,366.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,366.57 271.4,366.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,366.65 271.4,366.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,366.73 271.4,366.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,366.82 271.4,366.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,366.9 271.4,366.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,366.98 271.4,367.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,367.06 271.4,367.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,367.14 271.4,367.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,367.23 271.4,367.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,367.31 271.4,367.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,367.39 271.4,367.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,367.47 271.4,367.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,367.55 271.4,367.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,367.63 271.4,367.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,367.72 271.4,367.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,367.8 271.4,367.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,367.88 271.4,367.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,367.96 271.4,368.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,368.04 271.4,368.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,368.13 271.4,368.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,368.21 271.4,368.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,368.29 271.4,368.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,368.37 271.4,368.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,368.45 271.4,368.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,368.54 271.4,368.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,368.62 271.4,368.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,368.7 271.4,368.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,368.78 271.4,368.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,368.86 271.4,368.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,368.95 271.4,369" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,369.03 271.4,369.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,369.11 271.4,369.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,369.19 271.4,369.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,369.27 271.4,369.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,369.35 271.4,369.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,369.44 271.4,369.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,369.52 271.4,369.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,369.6 271.4,369.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,369.68 271.4,369.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,369.76 271.4,369.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,369.85 271.4,369.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,369.93 271.4,369.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,370.01 271.4,370.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,370.09 271.4,370.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,370.17 271.4,370.23" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,370.26 271.4,370.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,370.34 271.4,370.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,370.42 271.4,370.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,370.5 271.4,370.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,370.58 271.4,370.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,370.67 271.4,370.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,370.75 271.4,370.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,370.83 271.4,370.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,370.91 271.4,370.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,370.99 271.4,371.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,371.07 271.4,371.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,371.16 271.4,371.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,371.24 271.4,371.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,371.32 271.4,371.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,371.4 271.4,371.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,371.48 271.4,371.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,371.57 271.4,371.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,371.65 271.4,371.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,371.73 271.4,371.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,371.81 271.4,371.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,371.89 271.4,371.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,371.98 271.4,372.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,372.06 271.4,372.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,372.14 271.4,372.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,372.22 271.4,372.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,372.3 271.4,372.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,372.39 271.4,372.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,372.47 271.4,372.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,372.55 271.4,372.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,372.63 271.4,372.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,372.71 271.4,372.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,372.79 271.4,372.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,372.88 271.4,372.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,372.96 271.4,373.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,373.04 271.4,373.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,373.12 271.4,373.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,373.2 271.4,373.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,373.29 271.4,373.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,373.37 271.4,373.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,373.45 271.4,373.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,373.53 271.4,373.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,373.61 271.4,373.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,373.7 271.4,373.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,373.78 271.4,373.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,373.86 271.4,373.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,373.94 271.4,374" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,374.02 271.4,374.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,374.11 271.4,374.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,374.19 271.4,374.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,374.27 271.4,374.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,374.35 271.4,374.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,374.43 271.4,374.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,374.51 271.4,374.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,374.6 271.4,374.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,374.68 271.4,374.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,374.76 271.4,374.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,374.84 271.4,374.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,374.92 271.4,374.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,375.01 271.4,375.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,375.09 271.4,375.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,375.17 271.4,375.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,375.25 271.4,375.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,375.33 271.4,375.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,375.42 271.4,375.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,375.5 271.4,375.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,375.58 271.4,375.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,375.66 271.4,375.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,375.74 271.4,375.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,375.83 271.4,375.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,375.91 271.4,375.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,375.99 271.4,376.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,376.07 271.4,376.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,376.15 271.4,376.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,376.23 271.4,376.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,376.32 271.4,376.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,376.4 271.4,376.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,376.48 271.4,376.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,376.56 271.4,376.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,376.64 271.4,376.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,376.73 271.4,376.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,376.81 271.4,376.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,376.89 271.4,376.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,376.97 271.4,377.03" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,377.05 271.4,377.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,377.14 271.4,377.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,377.22 271.4,377.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,377.3 271.4,377.35" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,377.38 271.4,377.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,377.46 271.4,377.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,377.54 271.4,377.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,377.63 271.4,377.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,377.71 271.4,377.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,377.79 271.4,377.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,377.87 271.4,377.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,377.95 271.4,378.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,378.04 271.4,378.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,378.12 271.4,378.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,378.2 271.4,378.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,378.28 271.4,378.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,378.36 271.4,378.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,378.45 271.4,378.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,378.53 271.4,378.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,378.61 271.4,378.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,378.69 271.4,378.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,378.77 271.4,378.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,378.86 271.4,378.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,378.94 271.4,378.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,379.02 271.4,379.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,379.1 271.4,379.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,379.18 271.4,379.24" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,379.26 271.4,379.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,379.35 271.4,379.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,379.43 271.4,379.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,379.51 271.4,379.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,379.59 271.4,379.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,379.67 271.4,379.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,379.76 271.4,379.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,379.84 271.4,379.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,379.92 271.4,379.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.4,380 271.4,380.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="268.57,419.42 269.61,419.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,419.65 268.57,419.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,395.96 270.59,395.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.59,395.96 270.59,395.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.59,395.06 271.32,395.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.32,395.06 271.32,393.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.32,393.49 270.59,393.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.59,393.49 270.59,392.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.59,392.59 269.61,392.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.04,422.4 300.04,420.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.17,392.59 268.17,395.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.21,408.67 300.57,408.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.86,422.4 300.04,422.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.54,409.64 296.31,409.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.04,420.61 297.24,420.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.78,393.41 281.72,393.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,392.13 281.72,392.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,390.86 281.72,390.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.38,393.67 287.62,393.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.72,393.68 281.95,393.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,393.41 287.38,393.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,392.13 287.38,392.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,390.86 287.38,390.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.24,394.32 278.24,395.31 278.29,395.51 278.39,395.64 278.54,395.7 278.64,395.7 278.78,395.64 278.88,395.51 278.93,395.31 278.93,394.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.33,395.7 279.33,394.32 279.78,394.32 279.92,394.38 279.97,394.45 280.02,394.58 280.02,394.78 279.97,394.91 279.92,394.98 279.78,395.04 279.33,395.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="283.78,394.42 283.78,395.42 283.83,395.61 283.93,395.75 284.08,395.81 284.18,395.81 284.33,395.75 284.43,395.61 284.48,395.42 284.48,394.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.87,395.81 284.87,394.42 285.32,394.42 285.47,394.49 285.52,394.56 285.57,394.69 285.57,394.89 285.52,395.02 285.47,395.08 285.32,395.15 284.87,395.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.27,422.4 300.27,426.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.04,422.4 300.04,421.7 300.27,421.7 300.27,422.4 300.04,422.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.78,393.41 281.72,393.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,393.29 281.72,393.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,393.41 287.38,393.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,393.29 287.38,393.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,392.13 287.38,392.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,390.86 287.38,390.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.72,393.68 281.95,393.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.38,393.67 287.62,393.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,392.02 281.72,392.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,392.02 287.38,392.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,390.75 281.72,390.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,390.75 287.38,390.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.9,393.41 278.97,393.23 279.15,393.16 279.32,393.23 279.39,393.41 279.32,393.58 279.15,393.65 278.97,393.58 278.9,393.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.35,393.41 284.42,393.23 284.6,393.16 284.77,393.23 284.84,393.41 284.77,393.58 284.6,393.65 284.42,393.58 284.35,393.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.98,405.87 305.98,398.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.19,407.53 305.19,406.14 305.54,406.14 305.69,406.21 305.79,406.34 305.84,406.47 305.89,406.67 305.89,407 305.84,407.2 305.79,407.33 305.69,407.46 305.54,407.53 305.19,407.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.23,407.53 306.23,406.14 306.93,407.53 306.93,406.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.74,405.42 305.81,405.24 305.98,405.17 306.16,405.24 306.23,405.42 306.16,405.59 305.98,405.67 305.81,405.59 305.74,405.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.35,397.64 305.99,398" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.38,397.66 306.02,398.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.42,397.68 306.06,398.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.45,397.7 306.09,398.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.49,397.72 306.13,398.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.53,397.75 306.17,398.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.56,397.77 306.2,398.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.6,397.79 306.24,398.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.63,397.81 306.27,398.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.67,397.83 306.31,398.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.7,397.85 306.34,398.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.74,397.87 306.38,398.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.78,397.89 306.42,398.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.81,397.91 306.45,398.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.85,397.93 306.49,398.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.88,397.95 306.52,398.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.92,397.97 306.56,398.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.95,397.99 306.59,398.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,398.01 306.63,398.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.31,397.62 305.86,398.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.28,397.6 305.73,398.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.24,397.58 305.6,398.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.2,397.56 305.46,398.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.17,397.54 305.33,398.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.13,397.52 305.2,398.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.1,397.5 305.06,398.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.06,397.48 304.93,398.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.03,397.46 304.85,398.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.99,397.44 304.85,398.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.88,397.49 304.85,398.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.74,397.57 304.85,398.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.61,397.65 304.85,398.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.48,397.73 304.85,398.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.34,397.8 304.85,398.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.21,397.88 304.85,398.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.08,397.96 304.85,398.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.94,398.03 304.85,398.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.62,398.09 306.1,397.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.98,398.13 304.62,398.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.98,398 304.85,398.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.85,398.66 304.85,398.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.73,398.99 304.73,397.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.85,398.09 305.98,397.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.05,423.23 305.53,421.31 306.1,420.74" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="305.78,422.22 306.13,421.87" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="306.05,423.23 306.62,422.67" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="306.46,420.84 306.52,420.66 306.58,420.26 307.1,422.19" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="301.47,423.55 300.95,421.62 301.52,421.06" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="301.2,422.54 301.54,422.19" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="301.47,423.55 302.03,422.98" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="301.95,421.21 301.92,421.12 301.92,420.89 301.93,420.75 302,420.58 302.17,420.4 302.28,420.41 302.35,420.45 302.45,420.59 302.49,420.78 302.5,421 302.49,421.37 302.3,422.72 302.91,422.11" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="295.82,433.17 299.87,433.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.82,433.17 295.82,436.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.87,433.17 299.87,436.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.82,436.79 299.87,436.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.34,438.8 304.46,438.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.34,438.8 301.34,442.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.46,438.8 304.46,442.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.34,442.85 304.46,442.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.58,409.49 270.79,409.59 271,409.18 270.79,409.08 270.58,409.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.92,413.39 277.16,416.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.61,413.5 278.81,413.08 279.02,413.18 278.81,413.6 278.61,413.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.99,421.42 293.24,424.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.89,421.63 295.1,421.21 295.3,421.32 295.1,421.73 294.89,421.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.2,421.52 296.26,422.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.16,422.26 296.36,421.85 296.57,421.95 296.36,422.36 296.16,422.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.1,421.73 296.16,422.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.3,421.32 296.36,421.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.55,417.7 285.79,421.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.24,417.81 287.45,417.39 287.65,417.5 287.45,417.91 287.24,417.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.57,417.21 287.34,417.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.26,417.32 286.46,416.9 286.67,417.01 286.46,417.42 286.26,417.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.36,417.11 284.6,420.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.67,417.01 287.45,417.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.46,417.42 287.24,417.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.57,421.95 295.3,421.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.45,417.39 286.67,417.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.81,413.08 271,409.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.26,422.05 295.2,421.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.34,417.6 286.57,417.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.71,413.29 274.9,411.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.7,411.29 270.89,409.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.36,422.36 295.1,421.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.24,417.81 286.46,417.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="279.67,414.94 279.73,414.76 279.79,414.35 280.3,416.28" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="281.05,413.68 280.95,413.54 280.82,413.44 280.7,413.44 280.53,413.61 280.47,413.79 280.43,414.06 280.43,414.29 280.47,414.61 280.59,415.07 280.71,415.3 280.8,415.44 280.93,415.54 281.05,415.54 281.22,415.37 281.28,415.19 281.32,414.92 281.32,414.69" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="281.78,412.71 281.69,412.57 281.53,412.61 281.45,412.69 281.34,412.92 281.33,413.28 281.41,413.78 281.53,414.24 281.67,414.57 281.81,414.66 281.96,414.62 282.01,414.58 282.11,414.36 282.15,414.09 282.12,413.77 282.1,413.67 281.98,413.44 281.84,413.35 281.69,413.39 281.64,413.43 281.54,413.65 281.5,413.92 281.53,414.24" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="283.3,416.41 283.36,416.23 283.42,415.83 283.93,417.75" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="284.67,415.15 284.58,415.01 284.44,414.91 284.33,414.91 284.16,415.08 284.1,415.26 284.06,415.53 284.06,415.76 284.09,416.08 284.22,416.54 284.33,416.77 284.43,416.91 284.56,417.01 284.67,417.01 284.85,416.84 284.91,416.66 284.95,416.39 284.94,416.16" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="285.34,413.9 284.9,414.34 285.08,415.21 285.1,415.08 285.2,414.85 285.33,414.72 285.49,414.68 285.63,414.78 285.74,415.01 285.79,415.19 285.82,415.51 285.79,415.78 285.68,416.01 285.55,416.14 285.39,416.18 285.32,416.13 285.23,415.99" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="288.3,419.25 288.36,419.07 288.42,418.66 288.94,420.59" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="289.68,417.99 289.59,417.85 289.45,417.75 289.34,417.75 289.16,417.92 289.1,418.1 289.06,418.37 289.07,418.6 289.1,418.92 289.22,419.38 289.34,419.61 289.43,419.75 289.57,419.85 289.68,419.85 289.86,419.68 289.92,419.5 289.96,419.23 289.95,419" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="290.26,416.83 290.16,418.55 290.82,417.9" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="290.26,416.83 290.77,418.76" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="291.93,420.72 291.99,420.54 292.05,420.14 292.57,422.06" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="293.31,419.46 293.21,419.32 293.08,419.22 292.97,419.22 292.79,419.39 292.73,419.57 292.69,419.84 292.7,420.07 292.73,420.39 292.85,420.85 292.97,421.08 293.06,421.22 293.2,421.32 293.31,421.32 293.48,421.15 293.55,420.97 293.58,420.7 293.58,420.47" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="293.53,418.65 294.01,418.17 293.95,419.17 294.08,419.04 294.19,419.04 294.26,419.09 294.38,419.32 294.43,419.51 294.46,419.82 294.42,420.1 294.31,420.32 294.18,420.45 294.03,420.49 293.96,420.44 293.86,420.3" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="290.9,430.13 291.96,430.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.7,430.54 291.76,431.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.06,426.23 282.84,426.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.27,425.82 283.04,426.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.96,425.92 280.2,429.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.85,426.13 282.06,425.72 282.27,425.82 282.06,426.23 281.85,426.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.16,426.03 282.94,426.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.84,426.62 283.04,426.21 283.25,426.31 283.04,426.72 282.84,426.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.15,426.52 281.4,430.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.59,430.23 288.84,433.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.76,431.07 291.96,430.65 292.17,430.76 291.96,431.17 291.76,431.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.8,430.33 291.86,430.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.49,430.44 290.7,430.02 290.9,430.13 290.7,430.54 290.49,430.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="280.15,427.29 279.05,425.63 279.4,424.91" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="279.57,426.42 279.79,425.98" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="280.15,427.29 280.51,426.58" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="279.9,423.92 279.63,424.47 280.07,425.24 280.04,425.1 280.08,424.86 280.16,424.69 280.29,424.61 280.45,424.65 280.64,424.84 280.74,424.99 280.87,425.29 280.92,425.56 280.89,425.8 280.81,425.97 280.67,426.05 280.59,426.03 280.46,425.93" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="284.42,429.42 283.32,427.76 283.68,427.04" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="283.84,428.55 284.06,428.11" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="284.42,429.42 284.78,428.71" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="284.12,426.16 284.58,427.82 284.99,426.99" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="284.12,426.16 285.22,427.82" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="288.78,431.6 287.68,429.93 288.04,429.22" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="288.21,430.73 288.43,430.29" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="288.78,431.6 289.14,430.88" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="288.26,428.77 288.56,428.17 288.82,429.13 288.9,428.97 289.01,428.94 289.09,428.96 289.27,429.14 289.38,429.3 289.51,429.59 289.56,429.86 289.53,430.11 289.45,430.27 289.31,430.36 289.23,430.34 289.1,430.23" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="296.26,422.57 294.64,425.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.06,426.02 296.68,422.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.69,430.76 294.95,426.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.49,430.66 294.75,426.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.68,422.78 296.78,422.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.78,422.57 296.36,422.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.36,422.36 296.26,422.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.68,422.78 296.26,422.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.47,422.67 294.85,425.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.95,426.23 294.54,426.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.06,426.02 294.64,425.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.95,426.23 295.06,426.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.59,430.97 292.69,430.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.69,430.76 292.27,430.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.27,430.55 292.17,430.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.59,430.97 292.17,430.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.78,422.57 296.68,422.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.06,426.02 294.95,426.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.69,430.76 292.59,430.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.59,430.97 292.17,430.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.17,430.76 292.27,430.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.64,425.81 296.26,422.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.26,422.57 296.36,422.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="296.78,422.57 296.86,422.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.36,422.36 296.78,422.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.36,422.36 297.24,420.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.57,414.45 269.61,414.45 269.61,414.68 268.57,414.68 268.57,414.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,419.42 269.61,419.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,419.65 268.92,419.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,419.65 269.61,414.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.06,414.68 269.06,419.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,419.65 268.57,414.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,409.7 268.57,414.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.06,414.45 269.06,409.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,409.7 269.61,414.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,409.7 269.61,409.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,409.47 268.92,409.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,409.47 268.57,409.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,409.7 269.61,409.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.55,393.67 276.78,393.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.55,393.67 276.78,393.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.38,394.6 287.62,394.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.38,394.6 287.62,394.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.55,394.6 276.78,394.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.55,394.6 276.78,394.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.61,409.47 270.59,409.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.59,409.47 270.59,408.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.59,408.57 271.32,408.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.32,408.57 271.32,407" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.32,407 270.59,407" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.59,407 270.59,406.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.59,406.1 269.61,406.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.17,406.1 268.17,409.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.17,409.47 269.61,409.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.61,409.47 268.57,409.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.23,408.67 299.23,406.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.21,408.67 297.21,406.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.21,408.67 299.23,408.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.21,406.97 299.23,406.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.28,430.55 294.54,426.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.64,425.81 294.54,426.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.96,431.17 292.17,430.76 292.59,430.97 292.38,431.38 291.96,431.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,419.65 268.57,419.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.63,420.33 270.59,420.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.59,420.33 270.59,419.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.59,419.61 269.61,419.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.17,419.7 269.61,419.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.17,419.7 268.17,422.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.17,422.82 272.18,422.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="273.63,420.33 272.18,422.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="272.86,421.65 274.2,422.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.1,421.25 274.41,421.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.93,421.68 273.14,421.27 273.35,421.37 273.14,421.79 272.93,421.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.24,421.58 274.3,422.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.2,422.31 274.41,421.9 274.61,422 274.41,422.42 274.2,422.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.51,422.21 272.76,425.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="275.78,425.12 274.68,423.45 275.04,422.73" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="275.21,424.25 275.43,423.8" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="275.78,425.12 276.14,424.4" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="275.69,421.98 275.56,421.87 275.43,421.96 275.37,422.07 275.34,422.32 275.44,422.67 275.68,423.12 275.94,423.51 276.18,423.77 276.34,423.82 276.47,423.74 276.5,423.68 276.53,423.44 276.48,423.17 276.35,422.87 276.3,422.79 276.11,422.61 275.95,422.56 275.82,422.65 275.79,422.71 275.76,422.95 275.81,423.22 275.94,423.51" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="299.23,395.06 299.23,393.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.21,395.06 297.21,393.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.21,395.06 299.23,395.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.21,393.79 299.23,393.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="278.61,413.5 270.79,409.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,419.61 269.61,419.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,414.68 269.12,419.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.12,414.45 269.12,409.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,405.87 269.61,405.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,405.87 269.61,406.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,406.1 269.61,401.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.06,401.13 269.06,405.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,406.1 268.57,401.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,396.15 268.57,400.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.06,400.9 269.06,396.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,396.15 269.61,401.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,396.15 269.61,395.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,395.92 268.92,395.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,395.92 268.57,396.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,396.15 269.61,396.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.17,395.92 269.61,395.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.61,395.92 268.57,395.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,406.1 268.57,405.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.17,406.1 269.61,406.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.12,401.13 269.12,405.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.12,400.9 269.12,396.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,406.1 269.61,406.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,392.36 269.61,392.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,392.36 269.61,392.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,392.59 268.57,392.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.17,392.59 269.61,392.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.57,392.59 269.61,392.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="274.59,411.49 274.8,411.08 275.01,411.18 274.8,411.6 274.59,411.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.94,395.32 301.94,407.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.71,395.32 301.71,407.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.71,406.15 301.94,406.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.71,406.15 301.94,406.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.71,407.07 301.94,407.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.71,407.07 301.94,407.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.71,395.32 301.94,395.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.71,395.32 301.94,395.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.71,396.24 301.94,396.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.71,396.24 301.94,396.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.61,382.45 270.59,382.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.17,379.32 268.37,379.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.23,382.43 294.23,382.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.68,382.43 288.43,382.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.23,381.73 294.23,382.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.68,381.63 289.68,382.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.73,390.58 289.68,390.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.54,409.64 301.54,387.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.31,409.64 296.31,390.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.21,408.57 297.21,390.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.57,408.67 300.57,390.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.73,388.83 287.73,381.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.43,388.14 288.43,382.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.43,389.89 289.68,389.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.23,390.58 296.31,390.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.23,389.89 295.23,389.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.23,390.58 294.23,389.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.68,390.58 289.68,389.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.23,388.14 295.23,382.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.21,408.67 300.57,408.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.59,379.32 270.59,382.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.68,381.63 289.35,381.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.68,382.43 288.43,382.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.73,390.58 289.68,390.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.43,389.89 289.68,389.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.73,390.58 287.73,381.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.43,389.89 288.43,382.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.23,381.63 294.23,382.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.68,381.63 289.68,382.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.23,382.43 294.23,382.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.23,389.89 295.23,389.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="294.23,390.58 294.23,389.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.68,390.58 289.68,389.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.23,389.89 295.23,382.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.21,379.84 296.21,381.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.21,381.63 294.23,381.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.54,409.64 296.31,409.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.78,393.41 281.72,393.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,381.73 276.78,394.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,392.13 281.72,392.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,390.86 281.72,390.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,389.59 281.72,389.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,388.32 281.72,388.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,387.05 281.72,387.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,387.05 287.38,387.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,385.78 281.72,385.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,385.78 287.38,385.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.38,393.67 287.62,393.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.55,381.96 276.55,394.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.62,381.96 287.62,394.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.72,393.68 281.95,393.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,381.73 281.95,393.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.72,381.73 281.72,393.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,393.41 287.38,393.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,392.13 287.38,392.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,390.86 287.38,390.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,389.59 287.38,389.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,388.32 287.38,388.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.15,393.83 279.15,388.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.6,393.86 284.6,388.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.62,381.96 287.73,381.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,384.51 281.72,384.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,384.51 287.38,384.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,383.24 281.72,383.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,383.24 287.38,383.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.24,394.32 278.24,395.31 278.29,395.51 278.39,395.64 278.54,395.7 278.64,395.7 278.78,395.64 278.88,395.51 278.93,395.31 278.93,394.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.33,395.7 279.33,394.32 279.78,394.32 279.92,394.38 279.97,394.45 280.02,394.58 280.02,394.78 279.97,394.91 279.92,394.98 279.78,395.04 279.33,395.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="283.78,394.42 283.78,395.42 283.83,395.61 283.93,395.75 284.08,395.81 284.18,395.81 284.33,395.75 284.43,395.61 284.48,395.42 284.48,394.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.87,395.81 284.87,394.42 285.32,394.42 285.47,394.49 285.52,394.56 285.57,394.69 285.57,394.89 285.52,395.02 285.47,395.08 285.32,395.15 284.87,395.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.54,396.88 301.71,396.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.94,396.88 310.29,396.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.53,396.88 310.7,396.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.54,405.42 301.71,405.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.94,405.42 310.29,405.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.53,405.42 310.7,405.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.38,381.73 287.38,394.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.62,381.96 287.62,394.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,381.73 281.95,393.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.72,381.73 281.72,393.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,381.73 276.78,394.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.55,381.96 276.55,394.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,393.41 281.72,393.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,393.29 281.72,393.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,387.05 281.72,387.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,387.05 287.38,387.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,393.41 287.38,393.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,393.29 287.38,393.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,392.13 287.38,392.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,390.86 287.38,390.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,389.59 287.38,389.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,388.32 287.38,388.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.72,393.68 281.95,393.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.38,393.67 287.62,393.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,385.78 281.72,385.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,385.78 287.38,385.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,384.51 281.72,384.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,384.51 287.38,384.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,383.24 281.72,383.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,383.24 287.38,383.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.31,381.96 287.38,381.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.62,381.96 287.73,381.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="288.65,382.65 295,382.65 295,389.66 288.65,389.66 288.65,382.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.65,389.66 295,382.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.65,382.65 295,389.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.54,380.1 292.62,380.02 294.23,381.63 294.15,381.71 292.54,380.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.54,380.1 292.46,380.02 290.85,381.63 290.93,381.71 292.54,380.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.54,392.11 292.62,392.19 294.23,390.58 294.15,390.5 292.54,392.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.54,392.11 292.46,392.19 290.85,390.58 290.93,390.5 292.54,392.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.78,392.02 281.72,392.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,392.02 287.38,392.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,390.75 281.72,390.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,390.75 287.38,390.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,389.48 281.72,389.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,389.48 287.38,389.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,388.21 281.72,388.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,388.21 287.38,388.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,386.94 281.72,386.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,386.94 287.38,386.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,385.66 281.72,385.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,385.66 287.38,385.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,384.39 281.72,384.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,384.39 287.38,384.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,383.12 281.72,383.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,383.12 287.38,383.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.9,393.41 278.97,393.23 279.15,393.16 279.32,393.23 279.39,393.41 279.32,393.58 279.15,393.65 278.97,393.58 278.9,393.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.35,393.41 284.42,393.23 284.6,393.16 284.77,393.23 284.84,393.41 284.77,393.58 284.6,393.65 284.42,393.58 284.35,393.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.15,387.56 280.28,388.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.28,388.79 279.15,388.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.51,389.05 279.15,388.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.03,387.37 280.51,388.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.51,387.77 279.15,388.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.55,387.79 279.19,388.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.58,387.81 279.22,388.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.62,387.83 279.26,388.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.65,387.86 279.29,388.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.69,387.88 279.33,388.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.73,387.9 279.36,388.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.76,387.92 279.4,388.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.8,387.94 279.44,388.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.83,387.96 279.47,388.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.87,387.98 279.51,388.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.9,388 279.54,388.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.94,388.02 279.58,388.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.97,388.04 279.61,388.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.01,388.06 279.65,388.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.05,388.08 279.69,388.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.08,388.1 279.72,388.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.12,388.12 279.76,388.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.15,388.14 279.79,388.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.19,388.16 279.83,388.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.22,388.19 279.86,388.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.26,388.21 279.9,388.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.28,388.24 279.94,388.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.28,388.29 279.97,388.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.28,388.35 280.01,388.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.28,388.41 280.04,388.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.28,388.46 280.08,388.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.28,388.52 280.11,388.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.28,388.58 280.15,388.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.28,388.63 280.19,388.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.28,388.69 280.22,388.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.28,388.74 280.26,388.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.48,387.75 279.03,388.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.44,387.73 278.89,388.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.4,387.71 278.76,388.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.37,387.69 278.63,388.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.33,387.67 278.49,388.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.3,387.65 278.36,388.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.26,387.63 278.23,388.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.23,387.61 278.09,388.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.19,387.59 278.01,388.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.15,387.57 278.01,388.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.04,387.63 278.01,388.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.91,387.7 278.01,388.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.77,387.78 278.01,388.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.64,387.86 278.01,388.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.51,387.93 278.01,388.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.37,388.01 278.01,388.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.24,388.09 278.01,388.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.11,388.16 278.01,388.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.78,388.22 279.26,387.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.15,388.26 277.78,389.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.15,388.13 278.01,388.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.01,388.79 278.01,388.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.9,389.12 277.9,388.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.01,388.22 279.15,387.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.28,388.22 280.28,388.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="280.4,388.02 280.4,389.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.6,387.56 285.73,388.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.73,388.79 284.6,388.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.96,389.05 284.6,388.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.48,387.37 285.96,388.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.96,387.77 284.6,388.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285,387.79 284.63,388.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.03,387.81 284.67,388.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.07,387.83 284.71,388.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.1,387.86 284.74,388.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.14,387.88 284.78,388.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.17,387.9 284.81,388.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.21,387.92 284.85,388.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.25,387.94 284.88,388.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.28,387.96 284.92,388.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.32,387.98 284.96,388.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.35,388 284.99,388.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.39,388.02 285.03,388.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.42,388.04 285.06,388.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.46,388.06 285.1,388.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.49,388.08 285.13,388.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.53,388.1 285.17,388.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.57,388.12 285.21,388.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.6,388.14 285.24,388.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.64,388.16 285.28,388.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.67,388.19 285.31,388.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.71,388.21 285.35,388.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.73,388.24 285.38,388.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.73,388.29 285.42,388.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.73,388.35 285.46,388.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.73,388.41 285.49,388.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.73,388.46 285.53,388.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.73,388.52 285.56,388.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.73,388.58 285.6,388.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.73,388.63 285.63,388.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.73,388.69 285.67,388.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.73,388.74 285.71,388.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.92,387.75 284.47,388.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.89,387.73 284.34,388.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.85,387.71 284.21,388.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.82,387.69 284.07,388.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.78,387.67 283.94,388.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.75,387.65 283.81,388.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.71,387.63 283.67,388.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.67,387.61 283.54,388.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.64,387.59 283.46,388.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.6,387.57 283.46,388.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.49,387.63 283.46,388.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.35,387.7 283.46,388.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.22,387.78 283.46,388.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.09,387.86 283.46,388.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="283.95,387.93 283.46,388.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="283.82,388.01 283.46,388.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="283.69,388.09 283.46,388.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="283.56,388.16 283.46,388.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="283.23,388.22 284.71,387.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.6,388.26 283.23,389.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.6,388.13 283.46,388.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="283.46,388.79 283.46,388.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="283.34,389.12 283.34,388.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="283.46,388.22 284.6,387.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.73,388.22 285.73,388.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.85,388.02 285.85,389.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.98,405.87 305.98,398.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.19,407.53 305.19,406.14 305.54,406.14 305.69,406.21 305.79,406.34 305.84,406.47 305.89,406.67 305.89,407 305.84,407.2 305.79,407.33 305.69,407.46 305.54,407.53 305.19,407.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.23,407.53 306.23,406.14 306.93,407.53 306.93,406.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.74,405.42 305.81,405.24 305.98,405.17 306.16,405.24 306.23,405.42 306.16,405.59 305.98,405.67 305.81,405.59 305.74,405.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.98,397.43 307.12,398.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="307.12,398.66 305.98,398" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="307.35,398.92 305.98,398.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.87,397.24 307.35,398.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.35,397.64 305.99,398" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.38,397.66 306.02,398.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.42,397.68 306.06,398.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.45,397.7 306.09,398.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.49,397.72 306.13,398.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.53,397.75 306.17,398.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.56,397.77 306.2,398.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.6,397.79 306.24,398.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.63,397.81 306.27,398.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.67,397.83 306.31,398.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.7,397.85 306.34,398.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.74,397.87 306.38,398.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.78,397.89 306.42,398.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.81,397.91 306.45,398.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.85,397.93 306.49,398.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.88,397.95 306.52,398.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.92,397.97 306.56,398.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.95,397.99 306.59,398.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.99,398.01 306.63,398.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="307.03,398.03 306.66,398.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="307.06,398.05 306.7,398.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="307.1,398.08 306.74,398.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="307.12,398.11 306.77,398.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="307.12,398.16 306.81,398.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="307.12,398.22 306.84,398.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="307.12,398.28 306.88,398.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="307.12,398.33 306.91,398.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="307.12,398.39 306.95,398.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="307.12,398.45 306.99,398.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="307.12,398.5 307.02,398.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="307.12,398.56 307.06,398.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="307.12,398.61 307.09,398.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.31,397.62 305.86,398.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.28,397.6 305.73,398.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.24,397.58 305.6,398.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.2,397.56 305.46,398.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.17,397.54 305.33,398.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.13,397.52 305.2,398.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.1,397.5 305.06,398.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.06,397.48 304.93,398.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.03,397.46 304.85,398.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.99,397.44 304.85,398.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.88,397.49 304.85,398.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.74,397.57 304.85,398.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.61,397.65 304.85,398.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.48,397.73 304.85,398.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.34,397.8 304.85,398.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.21,397.88 304.85,398.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.08,397.96 304.85,398.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.94,398.03 304.85,398.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.62,398.09 306.1,397.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.98,398.13 304.62,398.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.98,398 304.85,398.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.85,398.66 304.85,398.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.73,398.99 304.73,397.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.85,398.09 305.98,397.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="307.12,398.09 307.12,398.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="307.23,397.89 307.23,398.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.55,393.67 276.78,393.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.55,393.67 276.78,393.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.38,394.6 287.62,394.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.38,394.6 287.62,394.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.55,394.6 276.78,394.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.55,394.6 276.78,394.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.23,408.67 299.23,406.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.21,408.67 297.21,406.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.21,408.67 299.23,408.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.21,406.97 299.23,406.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.23,395.06 299.23,393.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.21,395.06 297.21,393.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.21,395.06 299.23,395.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.21,393.79 299.23,393.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.57,387.39 269.61,387.39 269.61,387.63 268.57,387.63 268.57,387.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,392.59 269.61,387.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.06,387.63 269.06,392.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,392.59 268.57,387.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,382.64 268.57,387.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.06,387.39 269.06,382.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,382.64 269.61,387.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,382.64 269.61,382.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,382.41 268.92,382.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,382.41 268.57,382.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,382.64 269.61,382.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.17,382.41 269.61,382.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.61,382.41 268.57,382.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.12,387.63 269.12,392.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.12,387.39 269.12,382.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.17,379.32 268.17,382.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.94,395.32 301.94,407.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.71,395.32 301.71,407.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.71,406.15 301.94,406.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.71,406.15 301.94,406.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.71,407.07 301.94,407.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.71,407.07 301.94,407.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.71,395.32 301.94,395.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.71,395.32 301.94,395.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.71,396.24 301.94,396.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.71,396.24 301.94,396.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.29,395.32 310.29,407.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.53,395.32 310.53,407.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.53,406.15 310.29,406.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.53,406.15 310.29,406.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.53,407.07 310.29,407.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.53,407.07 310.29,407.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.53,395.32 310.29,395.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.53,395.32 310.29,395.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.53,396.24 310.29,396.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.53,396.24 310.29,396.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="308.71,420.61 310.7,420.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.71,421.7 308.71,420.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.82,422.4 308.82,422.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.76,421.7 308.53,421.7 308.53,422.4 308.76,422.4 308.76,421.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.53,426.53 308.53,422.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.53,421.93 308.53,421.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.53,421.7 308.76,421.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="309.23,433.17 311.33,433.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.23,436.79 311.33,436.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.23,433.17 309.23,436.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.33,433.17 311.33,436.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.82,422.4 308.76,422.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="308.82,422.92 309.23,422.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.55,443.57 325.55,440.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.93,442.91 318.93,441.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="315.81,442.91 315.81,441.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.23,442.91 325.55,442.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="315.81,441.26 318.93,441.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.23,442.91 309.23,436.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.23,422.92 309.23,433.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.99,442.55 344.99,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.79,441.85 353.26,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.79,441.85 353.26,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.72,442.55 352.72,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.66,442.55 336.66,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.47,441.85 344.99,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.47,441.85 344.99,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.47,442.55 344.47,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.32,442.55 328.32,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.14,442.55 336.14,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.14,441.85 336.66,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.14,441.85 336.66,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.99,441.85 344.99,443.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.47,441.85 344.47,443.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.14,441.85 336.14,443.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.66,441.85 336.66,443.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.55,443.57 325.55,442.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.32,443.57 328.32,442.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.14,442.72 328.32,442.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.47,442.72 336.66,442.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.72,442.72 344.99,442.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.47,443.44 344.99,443.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.14,443.44 336.66,443.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.32,440.17 328.32,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.14,441.85 336.66,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.47,441.85 344.99,441.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.72,442.72 344.99,442.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.99,443.44 344.47,443.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.66,443.44 336.14,443.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.96,442.72 328.32,442.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.32,443.28 328.32,443.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.32,443.59 327.8,443.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,443.59 327.8,443.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.8,443.11 326.07,443.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.07,443.11 326.07,443.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.07,443.57 325.55,443.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="325.55,442.91 325.09,442.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.99,441.85 345.22,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.22,441.85 345.22,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.22,442.55 344.99,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.99,442.55 344.99,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.49,441.85 352.72,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.72,441.85 352.72,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.72,442.55 352.49,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.49,442.55 352.49,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.22,442.09 352.49,442.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.22,442.32 352.49,442.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.72,441.85 344.99,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.72,442.55 344.99,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.66,441.85 336.89,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.89,441.85 336.89,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.89,442.55 336.66,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.66,442.55 336.66,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.24,441.85 344.47,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.47,441.85 344.47,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.47,442.55 344.24,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.24,442.55 344.24,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.89,442.09 344.24,442.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.89,442.32 344.24,442.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.47,441.85 336.66,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.47,442.55 336.66,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.14,441.85 328.32,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.14,442.55 328.32,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.14,441.85 335.91,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.91,441.85 335.91,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.14,442.55 336.14,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.91,442.55 336.14,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.32,441.85 328.32,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.33,441.85 331.1,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.55,441.85 328.32,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.55,442.55 328.55,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.32,442.55 328.55,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.33,442.55 331.33,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.1,442.55 331.33,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.1,441.85 331.1,442.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.1,442.32 328.55,442.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.1,442.09 328.55,442.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.91,442.32 331.33,442.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.91,442.09 331.33,442.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.55,441.85 331.06,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.99,441.85 352.72,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.59,441.85 336.14,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.66,441.85 344.47,441.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="271.23,354.28 271.23,353.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.61,382.45 270.59,382.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.17,379.32 268.37,379.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.82,368.27 270.82,380.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.59,379.32 270.59,382.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.83,354.54 270.82,366.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.23,353.04 270.54,353.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.23,354.54 271.23,353.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.23,354.54 270.54,354.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.23,366.77 270.54,366.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.23,368.27 270.54,368.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.54,369.03 268.37,369.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.54,365.9 268.37,365.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.23,368.27 271.23,366.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.59,379.32 268.37,379.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.61,382.64 269.61,382.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.61,382.41 268.92,382.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,382.41 268.57,382.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.57,382.64 269.61,382.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.17,382.41 269.61,382.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.61,382.41 268.57,382.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.17,369.03 268.17,365.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.17,379.32 268.17,382.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.37,369.03 268.37,379.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.17,369.03 268.37,369.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.37,350.29 268.37,352.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.17,352.48 270.54,352.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.17,365.9 268.37,365.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.37,355.61 268.37,365.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.17,355.61 268.17,352.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.17,355.61 268.37,355.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.54,355.61 268.37,355.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.83,349.36 270.83,353.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.54,398.1 301.71,398.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.94,398.1 310.29,398.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.53,398.1 310.7,398.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.54,399.32 301.71,399.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.94,399.32 310.29,399.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.53,399.32 310.7,399.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.54,400.54 301.71,400.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.94,400.54 310.29,400.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.53,400.54 310.7,400.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.54,401.76 301.71,401.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.94,401.76 310.29,401.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.53,401.76 310.7,401.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.54,402.98 301.71,402.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.94,402.98 310.29,402.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.53,402.98 310.7,402.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.54,404.2 301.71,404.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.94,404.2 310.29,404.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.53,404.2 310.7,404.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.61,413.5 278.81,413.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.46,417.42 286.67,417.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.24,417.81 287.45,417.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="295.1,421.73 295.3,421.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.98,428.17 286.62,429.19 286.55,430.28 286.75,431.34 287.23,432.32 287.94,433.14 288.84,433.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="281.4,430.03 282.42,430.39 283.51,430.46 284.57,430.26 285.55,429.78 286.37,429.07 286.98,428.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="278.34,423.86 277.98,424.89 277.91,425.97 278.11,427.04 278.59,428.01 279.3,428.83 280.2,429.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="272.76,425.73 273.78,426.08 274.87,426.16 275.93,425.95 276.91,425.47 277.73,424.76 278.34,423.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.38,419.36 291.02,420.38 290.95,421.47 291.15,422.53 291.63,423.51 292.34,424.33 293.24,424.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.79,421.22 286.82,421.57 287.9,421.65 288.97,421.45 289.95,420.97 290.77,420.26 291.38,419.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="282.74,415.05 282.38,416.08 282.31,417.16 282.51,418.23 282.99,419.2 283.7,420.02 284.6,420.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.16,416.92 278.18,417.27 279.27,417.35 280.33,417.14 281.31,416.66 282.13,415.95 282.74,415.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="259.78,349.36 270.83,349.36" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="259.78,349.36 259.78,352.47" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="260.7,350.29 260.7,353.62" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="260.7,350.29 268.37,350.29" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="261.49,321.64 260.92,321.64" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="248.2,315.97 253.88,321.64" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="249.36,315.81 254.26,320.71" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="261.49,320.71 260.92,320.71" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="256.76,320.71 254.26,320.71" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="256.76,321.64 253.88,321.64" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="256.76,320.71 256.76,321.64" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="260.92,320.71 260.92,321.64" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="260.92,320.95 260.69,320.95" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="260.69,320.95 260.69,321.41" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="260.69,321.41 260.92,321.41" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="260.92,321.41 260.92,320.95" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="257,320.95 256.76,320.95" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="256.76,320.95 256.76,321.41" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="256.76,321.41 257,321.41" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="257,321.41 257,320.95" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="260.8,317.25 259.63,317.4 258.57,317.92 257.73,318.74 257.18,319.78 257,320.95" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="260.69,320.95 260.69,317.25" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="248.2,315.97 247.05,315.97" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="247.05,315.97 247.05,315.04" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="247.05,315.04 248.43,315.04" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="248.43,315.04 248.43,309.49" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="248.43,309.49 247.05,309.49" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="247.05,309.49 247.05,308.8" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="247.05,308.8 248.43,308.8" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="248.43,308.8 248.43,303.25" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="248.43,303.25 247.05,303.25" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="247.05,303.25 247.05,302.33" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="247.05,302.33 251.22,298.15" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="249.36,315.81 249.36,301.32" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="249.36,301.32 252.53,298.15" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="252.53,298.15 261.49,298.15" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="261.49,298.15 261.49,325.67" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="262.42,324.75 262.42,297" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="262.42,297 246.12,297" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="260.7,353.62 250.77,353.62" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="250.77,353.62 250.77,353.51" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="250.77,353.51 246.12,353.51" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="246.12,352.58 250.77,352.58" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="250.77,352.58 250.77,352.47" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="250.77,352.47 259.78,352.47" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="259.84,331.57 259.84,330.18 260.19,330.18 260.33,330.25 260.43,330.38 260.48,330.51 260.53,330.71 260.53,331.04 260.48,331.24 260.43,331.37 260.33,331.51 260.19,331.57 259.84,331.57" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="260.88,331.57 260.88,330.18 261.57,331.57 261.57,330.18" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="296.21,379.84 296.21,375.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="296.21,375.45 299.11,375.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.68,376.54 297.68,383.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.68,376.54 297.68,383.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.68,383.03 300.3,383.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.68,381.63 287.73,381.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.54,388.94 295.9,388.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="295.9,390.58 295.9,381.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.57,390.1 297.21,390.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.59,381.34 276.55,381.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.55,380.06 276.55,381.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.59,380.06 276.55,380.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.59,381.34 276.55,381.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.55,380.06 276.55,381.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.59,380.06 276.55,380.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.57,400.9 269.61,400.9 269.61,401.13 268.57,401.13 268.57,400.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.54,369.03 270.54,365.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.54,355.61 270.54,352.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.83,349.36 270.86,349.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="270.88,349.36 270.94,349.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="270.96,349.36 271.02,349.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.05,349.36 271.1,349.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.13,349.36 271.18,349.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.21,349.36 271.26,349.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.29,349.36 271.35,349.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.37,349.36 271.4,349.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="300.27,426.53 301.34,426.39 302.34,425.97 303.19,425.32 303.85,424.46 304.26,423.47 304.4,422.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.4,422.4 304.54,423.47 304.96,424.46 305.61,425.32 306.47,425.97 307.46,426.39 308.53,426.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.83,381.73 287.73,381.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="273.83,381.96 276.55,381.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="273.83,381.73 273.83,381.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.62,381.96 287.73,381.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.72,381.73 281.95,381.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,381.96 287.38,381.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,381.96 281.72,381.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.78,381.96 281.72,381.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="273.83,381.73 287.73,381.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="273.83,381.96 276.55,381.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="273.83,381.73 273.83,381.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.95,381.96 287.38,381.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.72,381.73 281.95,381.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.62,381.96 287.73,381.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.73,381.96 287.73,381.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="223.64,327.25 223.64,330.03 224.83,330.03" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="225.33,330.03 225.33,327.25" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="226.12,330.03 226.12,327.25 227.5,330.03 227.5,327.25" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="228.3,330.03 228.3,327.25" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="229.68,327.25 228.3,329.1" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="228.79,328.44 229.68,330.03" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="232.95,327.25 232.95,330.03" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="232.26,327.25 233.65,327.25" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="234.64,327.25 234.44,327.39 234.24,327.65 234.14,327.92 234.04,328.31 234.04,328.97 234.14,329.37 234.24,329.63 234.44,329.9 234.64,330.03 235.03,330.03 235.23,329.9 235.43,329.63 235.53,329.37 235.63,328.97 235.63,328.31 235.53,327.92 235.43,327.65 235.23,327.39 235.03,327.25 234.64,327.25" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="239.59,327.92 239.49,327.65 239.29,327.39 239.1,327.25 238.7,327.25 238.5,327.39 238.3,327.65 238.2,327.92 238.1,328.31 238.1,328.97 238.2,329.37 238.3,329.63 238.5,329.9 238.7,330.03 239.1,330.03 239.29,329.9 239.49,329.63 239.59,329.37" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="240.18,330.03 240.98,327.25 241.77,330.03" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="240.48,329.1 241.47,329.1" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="242.36,330.03 242.36,327.25 243.26,327.25 243.55,327.39 243.65,327.52 243.75,327.78 243.75,328.05 243.65,328.31 243.55,328.44 243.26,328.58" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="242.36,328.58 243.26,328.58 243.55,328.71 243.65,328.84 243.75,329.1 243.75,329.5 243.65,329.76 243.55,329.9 243.26,330.03 242.36,330.03" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="244.89,335.16 230.48,335.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="230.48,335.16 232.17,336.85" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="230.48,335.16 232.17,333.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="251.22,298.15 246.12,298.15" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="488.18,373.39 488.24,373.21 488.3,372.8 488.82,374.73" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="489.56,372.12 489.47,371.98 489.33,371.89 489.22,371.88 489.04,372.06 488.98,372.24 488.94,372.51 488.95,372.74 488.98,373.05 489.1,373.51 489.22,373.75 489.31,373.89 489.45,373.98 489.56,373.99 489.74,373.81 489.8,373.63 489.84,373.36 489.83,373.13" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="489.87,371.82 489.84,371.73 489.84,371.5 489.85,371.36 489.92,371.18 490.09,371.01 490.2,371.01 490.27,371.06 490.37,371.2 490.41,371.39 490.42,371.61 490.41,371.98 490.22,373.33 490.83,372.72" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="490.66,370.44 491.14,369.96 491.08,370.96 491.21,370.83 491.32,370.83 491.39,370.88 491.5,371.11 491.55,371.3 491.58,371.62 491.55,371.89 491.44,372.11 491.31,372.24 491.15,372.28 491.08,372.23 490.99,372.09" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="349.6,295.28 349.4,295.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.6,289.73 349.6,295.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.4,289.73 349.6,289.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.4,295.28 349.4,289.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.74,364.3 470.94,364.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.84,360.2 470.84,364.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.05,360.2 470.84,360.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="471.05,364.3 471.05,360.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.05,360.2 478.84,360.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.05,364.3 479.05,360.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.74,364.3 478.94,364.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.84,360.2 478.84,364.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.84,364.3 471.9,364.16 472.89,363.75 473.74,363.1 474.39,362.25 474.8,361.26 474.94,360.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.94,360.2 475.08,361.26 475.49,362.25 476.15,363.1 477,363.75 477.98,364.16 479.05,364.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.6,278.52 349.4,278.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.6,284.07 349.6,278.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.4,284.07 349.6,284.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.4,278.52 349.4,284.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.66,332.64 506.66,328.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.87,332.64 506.66,332.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.87,328.54 506.87,332.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.87,332.64 514.66,332.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.87,328.54 514.87,332.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.66,332.64 514.66,328.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="510.77,332.64 510.63,331.58 510.22,330.59 509.56,329.74 508.71,329.09 507.73,328.68 506.66,328.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="514.87,328.54 513.81,328.68 512.82,329.09 511.97,329.74 511.31,330.59 510.91,331.58 510.77,332.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+</svg>

+ 5918 - 0
src/components/Map/MainMapComponent/images/FourthFloorC.svg

@@ -0,0 +1,5918 @@
+<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="284.13 156.67 229.09 293.37">
+  <title>Produce by Acme CAD Converter</title>
+  <desc>Produce by Acme CAD Converter</desc>
+<polyline points="452.12,376.73 452.09,376.69 452.04,376.67 451.98,376.67 451.93,376.69 451.9,376.73 451.9,376.77 451.92,376.82 451.93,376.84 451.96,376.86 452.06,376.9 452.09,376.92 452.11,376.94 452.12,376.98 452.12,377.05 452.09,377.09 452.04,377.11 451.98,377.11 451.93,377.09 451.9,377.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.22,377.11 452.22,376.67 452.42,376.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.22,376.88 452.34,376.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.22,377.11 452.42,377.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.52,377.11 452.52,376.67 452.66,376.67 452.71,376.69 452.72,376.71 452.74,376.75 452.74,376.8 452.72,376.84 452.71,376.86 452.66,376.88 452.52,376.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.63,376.88 452.74,377.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.85,376.67 452.97,377.11 453.1,376.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.16,377.11 453.16,376.67 453.37,376.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.16,376.88 453.29,376.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.16,377.11 453.37,377.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.46,377.11 453.46,376.67 453.61,376.67 453.65,376.69 453.67,376.71 453.69,376.75 453.69,376.8 453.67,376.84 453.65,376.86 453.61,376.88 453.46,376.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.57,376.88 453.69,377.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.08,395.98 480.05,395.94 480,395.92 479.94,395.92 479.89,395.94 479.86,395.98 479.86,396.03 479.87,396.07 479.89,396.09 479.92,396.11 480.02,396.15 480.05,396.17 480.06,396.19 480.08,396.24 480.08,396.3 480.05,396.34 480,396.36 479.94,396.36 479.89,396.34 479.86,396.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.17,396.36 480.17,395.92 480.38,395.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.17,396.13 480.3,396.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.17,396.36 480.38,396.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.47,396.36 480.47,395.92 480.62,395.92 480.66,395.94 480.68,395.96 480.7,396 480.7,396.05 480.68,396.09 480.66,396.11 480.62,396.13 480.47,396.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.59,396.13 480.7,396.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.81,395.92 480.93,396.36 481.06,395.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.12,396.36 481.12,395.92 481.33,395.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.12,396.13 481.25,396.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.12,396.36 481.33,396.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.42,396.36 481.42,395.92 481.56,395.92 481.61,395.94 481.63,395.96 481.64,396 481.64,396.05 481.63,396.09 481.61,396.11 481.56,396.13 481.42,396.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.53,396.13 481.64,396.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.39,384.31 473.35,384.31 473.35,385.42 465.39,385.42 465.39,384.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.39,385.42 473.35,385.42 473.35,388.4 465.39,388.4 465.39,385.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.85,384.31 479.05,384.31 479.05,386.97 474.85,386.97 474.85,384.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.3,386.6 457.6,386.6 457.6,389.26 452.3,389.26 452.3,386.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.2,390.84 463.73,390.84 463.73,392.94 460.2,392.94 460.2,390.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.31,392.94 463.62,392.94 463.62,397.58 460.31,397.58 460.31,392.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="457.32,393.15 459.97,393.15 459.97,397.13 457.32,397.13 457.32,393.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.27,393.15 456.93,393.15 456.93,397.13 454.27,397.13 454.27,393.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.18,393.15 453.83,393.15 453.83,397.13 451.18,397.13 451.18,393.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.65,409.25 459.65,406.59 463.63,406.59 463.63,409.25 459.65,409.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="468.77,403.88 471.42,403.88 471.42,409.18 468.77,409.18 468.77,403.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.97,400.36 474.97,397.7 478.95,397.7 478.95,400.36 474.97,400.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.97,397.42 474.97,394.77 478.95,394.77 478.95,397.42 474.97,397.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.97,406.81 474.97,404.16 478.95,404.16 478.95,406.81 474.97,406.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.39,406.54 459.39,403.23 464.03,403.23 464.03,406.54 459.39,406.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.06,402.7 454.6,402.7 454.6,409.33 451.06,409.33 451.06,402.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.06,402.75 454.6,402.75 454.6,404.85 451.06,404.85 451.06,402.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.06,404.96 454.6,404.96 454.6,407.06 451.06,407.06 451.06,404.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.06,407.17 454.6,407.17 454.6,409.27 451.06,409.27 451.06,407.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.79,387.61 466.79,387.17 466.9,387.17 466.95,387.19 466.98,387.23 466.99,387.28 467.01,387.34 467.01,387.44 466.99,387.51 466.98,387.55 466.95,387.59 466.9,387.61 466.79,387.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.12,387.61 467.12,387.17 467.33,387.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.12,387.38 467.25,387.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.12,387.61 467.33,387.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.64,387.23 467.61,387.19 467.56,387.17 467.5,387.17 467.45,387.19 467.42,387.23 467.42,387.28 467.44,387.32 467.45,387.34 467.48,387.36 467.58,387.4 467.61,387.42 467.63,387.44 467.64,387.49 467.64,387.55 467.61,387.59 467.56,387.61 467.5,387.61 467.45,387.59 467.42,387.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.74,387.61 467.74,387.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.96,387.17 467.74,387.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.82,387.36 467.96,387.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.85,404.96 460.85,404.52 460.96,404.52 461.01,404.54 461.04,404.58 461.06,404.62 461.07,404.68 461.07,404.79 461.06,404.85 461.04,404.89 461.01,404.94 460.96,404.96 460.85,404.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.18,404.96 461.18,404.52 461.39,404.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.18,404.73 461.31,404.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.18,404.96 461.39,404.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.7,404.58 461.67,404.54 461.63,404.52 461.56,404.52 461.52,404.54 461.48,404.58 461.48,404.62 461.5,404.66 461.52,404.68 461.55,404.71 461.64,404.75 461.67,404.77 461.69,404.79 461.7,404.83 461.7,404.89 461.67,404.94 461.63,404.96 461.56,404.96 461.52,404.94 461.48,404.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.8,404.96 461.8,404.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.02,404.52 461.8,404.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.88,404.71 462.02,404.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.77,394.29 451.77,393.85 451.92,393.85 451.96,393.87 451.98,393.89 452,393.93 452,393.97 451.98,394.01 451.96,394.04 451.92,394.06 451.77,394.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.89,394.06 452,394.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.11,394.29 452.23,393.85 452.36,394.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.15,394.14 452.31,394.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.69,393.95 452.67,393.91 452.64,393.87 452.61,393.85 452.55,393.85 452.52,393.87 452.49,393.91 452.47,393.95 452.45,394.01 452.45,394.12 452.47,394.18 452.49,394.23 452.52,394.27 452.55,394.29 452.61,394.29 452.64,394.27 452.67,394.23 452.69,394.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.79,394.29 452.79,393.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.01,393.85 452.79,394.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.86,394.04 453.01,394.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.87,394.29 454.87,393.85 455.01,393.85 455.06,393.87 455.08,393.89 455.09,393.93 455.09,393.97 455.08,394.01 455.06,394.04 455.01,394.06 454.87,394.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.98,394.06 455.09,394.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.2,394.29 455.33,393.85 455.46,394.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.25,394.14 455.41,394.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.79,393.95 455.77,393.91 455.74,393.87 455.71,393.85 455.65,393.85 455.61,393.87 455.58,393.91 455.57,393.95 455.55,394.01 455.55,394.12 455.57,394.18 455.58,394.23 455.61,394.27 455.65,394.29 455.71,394.29 455.74,394.27 455.77,394.23 455.79,394.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.88,394.29 455.88,393.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="456.1,393.85 455.88,394.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="455.96,394.04 456.1,394.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="457.92,394.29 457.92,393.85 458.06,393.85 458.11,393.87 458.12,393.89 458.14,393.93 458.14,393.97 458.12,394.01 458.11,394.04 458.06,394.06 457.92,394.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.03,394.06 458.14,394.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.25,394.29 458.37,393.85 458.5,394.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.3,394.14 458.45,394.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.83,393.95 458.82,393.91 458.79,393.87 458.75,393.85 458.69,393.85 458.66,393.87 458.63,393.91 458.61,393.95 458.6,394.01 458.6,394.12 458.61,394.18 458.63,394.23 458.66,394.27 458.69,394.29 458.75,394.29 458.79,394.27 458.82,394.23 458.83,394.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="458.93,394.29 458.93,393.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.15,393.85 458.93,394.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="459.01,394.04 459.15,394.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.77,403.83 451.77,403.39 451.92,403.39 451.96,403.41 451.98,403.43 452,403.47 452,403.52 451.98,403.56 451.96,403.58 451.92,403.6 451.77,403.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.89,403.6 452,403.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.11,403.83 452.23,403.39 452.36,403.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.15,403.68 452.31,403.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.69,403.49 452.67,403.45 452.64,403.41 452.61,403.39 452.55,403.39 452.52,403.41 452.49,403.45 452.47,403.49 452.45,403.56 452.45,403.66 452.47,403.73 452.49,403.77 452.52,403.81 452.55,403.83 452.61,403.83 452.64,403.81 452.67,403.77 452.69,403.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.79,403.83 452.79,403.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.01,403.39 452.79,403.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.86,403.58 453.01,403.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.77,405.99 451.77,405.54 451.92,405.54 451.96,405.57 451.98,405.59 452,405.63 452,405.67 451.98,405.71 451.96,405.73 451.92,405.75 451.77,405.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.89,405.75 452,405.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.11,405.99 452.23,405.54 452.36,405.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.15,405.84 452.31,405.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.69,405.65 452.67,405.61 452.64,405.57 452.61,405.54 452.55,405.54 452.52,405.57 452.49,405.61 452.47,405.65 452.45,405.71 452.45,405.82 452.47,405.88 452.49,405.92 452.52,405.97 452.55,405.99 452.61,405.99 452.64,405.97 452.67,405.92 452.69,405.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.79,405.99 452.79,405.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.01,405.54 452.79,405.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.86,405.73 453.01,405.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.77,408.31 451.77,407.86 451.92,407.86 451.96,407.89 451.98,407.91 452,407.95 452,407.99 451.98,408.03 451.96,408.05 451.92,408.08 451.77,408.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="451.89,408.08 452,408.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.11,408.31 452.23,407.86 452.36,408.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.15,408.16 452.31,408.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.69,407.97 452.67,407.93 452.64,407.89 452.61,407.86 452.55,407.86 452.52,407.89 452.49,407.93 452.47,407.97 452.45,408.03 452.45,408.14 452.47,408.2 452.49,408.24 452.52,408.29 452.55,408.31 452.61,408.31 452.64,408.29 452.67,408.24 452.69,408.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.79,408.31 452.79,407.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.01,407.86 452.79,408.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.86,408.05 453.01,408.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.25,407.73 460.25,407.29 460.39,407.29 460.44,407.31 460.45,407.33 460.47,407.37 460.47,407.41 460.45,407.46 460.44,407.48 460.39,407.5 460.25,407.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.36,407.5 460.47,407.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.58,407.73 460.7,407.29 460.83,407.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.63,407.58 460.78,407.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.16,407.39 461.15,407.35 461.11,407.31 461.08,407.29 461.02,407.29 460.99,407.31 460.96,407.35 460.94,407.39 460.93,407.46 460.93,407.56 460.94,407.62 460.96,407.67 460.99,407.71 461.02,407.73 461.08,407.73 461.11,407.71 461.15,407.67 461.16,407.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.26,407.73 461.26,407.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.48,407.29 461.26,407.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.34,407.48 461.48,407.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="469.37,405.01 469.37,404.57 469.51,404.57 469.56,404.59 469.58,404.61 469.59,404.66 469.59,404.7 469.58,404.74 469.56,404.76 469.51,404.78 469.37,404.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="469.48,404.78 469.59,405.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="469.7,405.01 469.83,404.57 469.96,405.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="469.75,404.87 469.91,404.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.29,404.68 470.27,404.63 470.24,404.59 470.21,404.57 470.14,404.57 470.11,404.59 470.08,404.63 470.07,404.68 470.05,404.74 470.05,404.85 470.07,404.91 470.08,404.95 470.11,404.99 470.14,405.01 470.21,405.01 470.24,404.99 470.27,404.95 470.29,404.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.38,405.01 470.38,404.57" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.6,404.57 470.38,404.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.46,404.76 470.6,405.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.57,405.3 475.57,404.86 475.72,404.86 475.76,404.88 475.78,404.9 475.79,404.94 475.79,404.98 475.78,405.02 475.76,405.05 475.72,405.07 475.57,405.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.68,405.07 475.79,405.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.91,405.3 476.03,404.86 476.16,405.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.95,405.15 476.11,405.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.49,404.96 476.47,404.92 476.44,404.88 476.41,404.86 476.35,404.86 476.32,404.88 476.28,404.92 476.27,404.96 476.25,405.02 476.25,405.13 476.27,405.19 476.28,405.23 476.32,405.28 476.35,405.3 476.41,405.3 476.44,405.28 476.47,405.23 476.49,405.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.58,405.3 476.58,404.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.8,404.86 476.58,405.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.66,405.05 476.8,405.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.57,395.9 475.57,395.46 475.72,395.46 475.76,395.48 475.78,395.5 475.79,395.54 475.79,395.59 475.78,395.63 475.76,395.65 475.72,395.67 475.57,395.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.68,395.67 475.79,395.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.91,395.9 476.03,395.46 476.16,395.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.95,395.76 476.11,395.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.49,395.57 476.47,395.52 476.44,395.48 476.41,395.46 476.35,395.46 476.32,395.48 476.28,395.52 476.27,395.57 476.25,395.63 476.25,395.73 476.27,395.8 476.28,395.84 476.32,395.88 476.35,395.9 476.41,395.9 476.44,395.88 476.47,395.84 476.49,395.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.58,395.9 476.58,395.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.8,395.46 476.58,395.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.66,395.65 476.8,395.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.57,398.84 475.57,398.4 475.72,398.4 475.76,398.42 475.78,398.44 475.79,398.48 475.79,398.52 475.78,398.57 475.76,398.59 475.72,398.61 475.57,398.61" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.68,398.61 475.79,398.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.91,398.84 476.03,398.4 476.16,398.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.95,398.69 476.11,398.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.49,398.5 476.47,398.46 476.44,398.42 476.41,398.4 476.35,398.4 476.32,398.42 476.28,398.46 476.27,398.5 476.25,398.57 476.25,398.67 476.27,398.73 476.28,398.78 476.32,398.82 476.35,398.84 476.41,398.84 476.44,398.82 476.47,398.78 476.49,398.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.58,398.84 476.58,398.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.8,398.4 476.58,398.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.66,398.59 476.8,398.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.45,385.45 475.45,385.01 475.59,385.01 475.64,385.03 475.65,385.05 475.67,385.09 475.67,385.13 475.65,385.17 475.64,385.2 475.59,385.22 475.45,385.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.56,385.22 475.67,385.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.78,385.45 475.91,385.01 476.03,385.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.83,385.3 475.99,385.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.36,385.11 476.35,385.07 476.32,385.03 476.29,385.01 476.22,385.01 476.19,385.03 476.16,385.07 476.14,385.11 476.13,385.17 476.13,385.28 476.14,385.34 476.16,385.39 476.19,385.43 476.22,385.45 476.29,385.45 476.32,385.43 476.35,385.39 476.36,385.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.46,385.45 476.46,385.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.68,385.01 476.46,385.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.54,385.2 476.68,385.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="452.9,387.74 452.9,387.3 453.04,387.3 453.09,387.32 453.1,387.34 453.12,387.38 453.12,387.42 453.1,387.47 453.09,387.49 453.04,387.51 452.9,387.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.01,387.51 453.12,387.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.23,387.74 453.35,387.3 453.48,387.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.28,387.59 453.43,387.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.81,387.4 453.8,387.36 453.76,387.32 453.73,387.3 453.67,387.3 453.64,387.32 453.61,387.36 453.59,387.4 453.58,387.47 453.58,387.57 453.59,387.63 453.61,387.68 453.64,387.72 453.67,387.74 453.73,387.74 453.76,387.72 453.8,387.68 453.81,387.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.91,387.74 453.91,387.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="454.13,387.3 453.91,387.59" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="453.99,387.49 454.13,387.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.97,394.06 460.97,393.62 461.08,393.62 461.12,393.64 461.16,393.68 461.17,393.72 461.19,393.79 461.19,393.89 461.17,393.95 461.16,394 461.12,394.04 461.08,394.06 460.97,394.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.3,394.06 461.3,393.62 461.5,393.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.3,393.83 461.42,393.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.3,394.06 461.5,394.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.82,393.68 461.79,393.64 461.74,393.62 461.68,393.62 461.63,393.64 461.6,393.68 461.6,393.72 461.61,393.77 461.63,393.79 461.66,393.81 461.76,393.85 461.79,393.87 461.8,393.89 461.82,393.93 461.82,394 461.79,394.04 461.74,394.06 461.68,394.06 461.63,394.04 461.6,394" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.91,394.06 461.91,393.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.13,393.62 461.91,393.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.99,393.81 462.13,394.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.8,391.98 460.8,391.53 460.94,391.53 460.99,391.55 461,391.58 461.02,391.62 461.02,391.66 461,391.7 460.99,391.72 460.94,391.74 460.8,391.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.91,391.74 461.02,391.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.13,391.98 461.26,391.53 461.38,391.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.18,391.83 461.33,391.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.71,391.64 461.7,391.6 461.67,391.55 461.63,391.53 461.57,391.53 461.54,391.55 461.51,391.6 461.49,391.64 461.48,391.7 461.48,391.81 461.49,391.87 461.51,391.91 461.54,391.95 461.57,391.98 461.63,391.98 461.67,391.95 461.7,391.91 461.71,391.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.81,391.98 461.81,391.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.03,391.53 461.81,391.83" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.89,391.72 462.03,391.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="508.47,256.93 508.47,258.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.35,256.93 510.35,258.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,258.8 510.35,258.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,256.93 510.35,256.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,279.8 510.35,279.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,281.68 510.35,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.35,279.8 510.35,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,279.8 508.47,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,279.8 482.83,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,281.68 484.71,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,279.8 484.71,279.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,279.8 448.8,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.68,279.8 450.68,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,281.68 450.68,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,279.8 450.68,279.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,279.8 414.77,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.64,279.8 416.64,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,281.68 416.64,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,279.8 416.64,279.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,279.8 380.73,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.61,279.8 382.61,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,281.68 382.61,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,279.8 382.61,279.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,279.8 348.58,279.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,281.68 348.58,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.58,279.8 348.58,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,279.8 346.7,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.67,279.8 314.54,279.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.67,281.68 314.54,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,279.8 314.54,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.67,279.8 312.67,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.91,279.8 288.91,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,281.68 288.91,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,279.8 288.91,279.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,305.44 510.35,305.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,307.31 510.35,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.35,305.44 510.35,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,305.44 508.47,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,305.44 482.83,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,307.31 484.71,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,305.44 484.71,305.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,305.44 448.8,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.68,305.44 450.68,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,307.31 450.68,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,305.44 450.68,305.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,305.44 414.77,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.64,305.44 416.64,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,307.31 416.64,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,305.44 416.64,305.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,305.44 380.73,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.61,305.44 382.61,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,307.31 382.61,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,305.44 382.61,305.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,305.44 348.58,305.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,307.31 348.58,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.58,305.44 348.58,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,305.44 346.7,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.67,305.44 314.54,305.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.67,307.31 314.54,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,305.44 314.54,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.67,305.44 312.67,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,305.44 287.03,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,307.31 288.08,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,305.44 288.08,305.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,331.07 510.35,331.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,332.95 510.35,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.35,331.07 510.35,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,331.07 508.47,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,331.07 482.83,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.71,331.07 484.71,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,332.95 484.71,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,331.07 484.71,331.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,331.07 380.73,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.61,331.07 382.61,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,332.95 382.61,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,331.07 382.61,331.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,331.24 348.58,331.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,333.12 348.58,333.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.58,331.24 348.58,333.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,331.24 346.7,333.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,331.07 287.03,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.96,331.07 288.96,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,332.95 288.96,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,331.07 288.96,331.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,356.71 510.79,356.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,358.59 510.79,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,356.71 508.47,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,356.71 482.83,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.71,356.71 484.71,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,358.59 484.71,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,356.71 484.71,356.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,356.71 448.8,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.68,356.71 450.68,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,358.59 450.68,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,356.71 450.68,356.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,356.71 414.77,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.64,356.71 416.64,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,358.59 416.64,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,356.71 416.64,356.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,356.71 380.73,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.61,356.71 382.61,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,358.59 382.61,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,356.71 382.61,356.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,356.71 348.58,356.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,358.59 348.58,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.58,356.71 348.58,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,356.71 346.7,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,356.71 287.03,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.96,356.71 288.96,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,358.59 288.96,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,356.71 288.96,356.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,382.34 510.35,382.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,384.22 510.35,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.35,382.34 510.35,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,382.34 508.47,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,382.34 482.83,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.71,382.34 484.71,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,384.22 484.71,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,382.34 484.71,382.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,382.34 448.8,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.68,382.34 450.68,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,384.22 450.68,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,382.34 450.68,382.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,382.34 414.77,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.64,382.34 416.64,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,384.22 416.64,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,382.34 416.64,382.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,382.34 380.73,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.61,382.34 382.61,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,384.22 382.61,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,382.34 382.61,382.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,382.34 348.58,382.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,384.22 348.58,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.58,382.34 348.58,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,382.34 346.7,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.67,382.34 314.54,382.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.67,384.22 314.54,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,382.34 314.54,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.67,382.34 312.67,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,379.58 287.03,381.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.91,379.58 288.91,381.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,381.46 288.91,381.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,379.58 288.91,379.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,407.98 510.32,407.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,409.86 510.35,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.32,407.98 510.32,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,407.98 508.47,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,407.98 482.83,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.71,407.98 484.71,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,409.86 484.71,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,407.98 484.71,407.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,407.98 448.8,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.68,407.98 450.68,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,409.86 450.68,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,407.98 450.68,407.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,407.98 414.77,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.64,407.98 416.64,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,409.86 416.64,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,407.98 416.64,407.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,407.98 380.73,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.61,407.98 382.61,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,409.86 382.61,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,407.98 382.61,407.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,407.98 348.58,407.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,409.86 348.58,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.58,407.98 348.58,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,407.98 346.7,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.67,407.98 314.54,407.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.67,409.86 314.54,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,407.98 314.54,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.67,407.98 312.67,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.85,407.98 299.85,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.73,407.98 301.73,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.85,409.86 301.73,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.85,407.98 301.73,407.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.35,430.85 510.35,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.36,432.73 510.35,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.36,430.85 510.35,430.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.85,430.85 301.73,430.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.85,432.73 301.73,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.73,430.85 301.73,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.85,430.85 299.85,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.64,172.17 348.63,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.49,170.29 348.94,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.63,171.4 348.94,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,170.29 346.34,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,170.29 346.34,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,170.29 346.34,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.78,170.29 346.34,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.78,170.74 348.49,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.95,254.83 486.37,254.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.41,254.3 493.41,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.47,254.3 492.47,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.47,254.3 493.41,254.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.33,254.96 493.33,256.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.56,254.96 492.56,256.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.7,254.52 486.7,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.37,254.52 486.37,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.37,255.63 486.7,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.19,254.52 499.19,255.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.52,254.52 499.52,255.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.37,256.23 506.15,256.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.37,254.96 505.37,256.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.15,254.96 506.15,256.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.29,254.3 505.29,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.23,254.3 506.23,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,261.04 512.31,261.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,261.98 512.31,261.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,261.98 512.97,261.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,261.13 511.04,261.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,261.9 511.04,261.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.15,256.23 511.04,256.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,267.76 511.65,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,268.09 511.65,268.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,274.72 511.04,274.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,273.94 511.04,273.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,274.8 512.97,273.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,274.8 512.31,274.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,273.86 512.31,273.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,280.9 511.65,280.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,280.57 511.65,280.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,286.68 512.31,286.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,287.62 512.31,287.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,287.62 512.97,286.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,286.76 511.04,286.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,287.53 511.04,287.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,293.39 511.65,293.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,293.72 511.65,293.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.56,255.63 492.56,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.56,256.23 493.33,256.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.7,255.63 486.7,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.56,255.63 486.7,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.56,254.96 486.7,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.92,255.38 492.34,255.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.92,255.21 492.34,255.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.34,255.63 492.56,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.56,255.63 492.56,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.56,254.96 492.34,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.34,254.96 492.34,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.7,255.63 486.92,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.92,255.63 486.92,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.92,254.96 486.7,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.7,254.96 486.7,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.19,255.62 499.52,255.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.19,255.63 499.52,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.19,254.96 499.19,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.33,254.96 493.33,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.19,254.96 493.33,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.19,255.63 493.33,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.55,255.38 498.97,255.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.55,255.21 498.97,255.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="498.97,255.63 499.19,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.19,255.63 499.19,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.19,254.96 498.97,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="498.97,254.96 498.97,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.33,255.63 493.55,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.55,255.63 493.55,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.55,254.96 493.33,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.33,254.96 493.33,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="505.37,255.63 505.37,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.29,254.3 506.23,254.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.52,255.63 499.52,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.37,255.63 499.52,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.37,254.96 499.52,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.74,255.38 505.15,255.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.74,255.21 505.15,255.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="505.15,255.63 505.37,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="505.37,255.63 505.37,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="505.37,254.96 505.15,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="505.15,254.96 505.15,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.52,255.63 499.74,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.74,255.63 499.74,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.74,254.96 499.52,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.52,254.96 499.52,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.15,255.63 506.37,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.37,255.63 506.37,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.37,254.96 506.15,254.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.15,254.96 506.15,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="505.29,254.96 505.37,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.15,254.96 506.23,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,261.13 511.65,261.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,255.49 512.31,261.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,255.49 511.65,261.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,261.13 512.31,260.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,260.9 511.65,260.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,260.9 511.65,261.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,261.13 512.31,261.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,267.76 511.65,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,267.76 511.65,268.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,267.76 512.31,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,261.9 512.31,261.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,261.9 511.04,261.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,267.76 512.31,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,261.9 511.65,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,261.9 512.31,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.06,267.53 512.06,262.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,267.53 511.89,262.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,262.12 512.31,261.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,261.9 511.65,261.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,261.9 511.65,262.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,262.12 512.31,262.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,267.76 512.31,267.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,267.53 511.65,267.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,267.53 511.65,267.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,267.76 512.31,267.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,268.09 512.31,268.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,268.09 511.65,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,273.94 512.31,273.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,268.09 511.65,273.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,268.09 512.31,273.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.06,273.72 512.06,268.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,273.72 511.89,268.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,268.31 512.31,268.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,268.09 511.65,268.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,268.09 511.65,268.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,268.31 512.31,268.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,273.94 512.31,273.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,273.72 511.65,273.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,273.72 511.65,273.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,273.94 512.31,273.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,280.57 511.65,280.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,280.57 511.65,280.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,280.57 512.31,280.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,274.72 511.04,273.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,274.72 512.31,274.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,280.57 512.31,280.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,274.72 511.65,280.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,274.72 512.31,280.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.06,280.35 512.06,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,280.35 511.89,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,274.94 512.31,274.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,274.72 511.65,274.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,274.72 511.65,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,274.94 512.31,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,280.57 512.31,280.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,280.35 511.65,280.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,280.35 511.65,280.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,280.57 512.31,280.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,280.9 512.31,280.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,280.9 511.65,280.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,286.76 512.31,286.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,280.9 511.65,286.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,280.9 512.31,286.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.06,286.54 512.06,281.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,286.54 511.89,281.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,281.13 512.31,280.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,280.9 511.65,280.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,280.9 511.65,281.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,281.13 512.31,281.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,286.76 512.31,286.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,286.54 511.65,286.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,286.54 511.65,286.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,286.76 512.31,286.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,293.39 511.65,293.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,293.39 512.31,293.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,287.53 512.31,287.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,287.53 511.04,286.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,293.39 512.31,293.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,287.53 511.65,293.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,287.53 512.31,293.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.06,293.17 512.06,287.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,293.17 511.89,287.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,287.76 512.31,287.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,287.53 511.65,287.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,287.53 511.65,287.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,287.76 512.31,287.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,293.39 512.31,293.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,293.17 511.65,293.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,293.17 511.65,293.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,293.39 512.31,293.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,293.72 512.31,293.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,293.72 511.65,293.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,299.58 512.31,299.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,293.72 511.65,299.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,293.72 512.31,299.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.06,299.36 512.06,293.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,299.36 511.89,293.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,293.94 512.31,293.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,293.72 511.65,293.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,293.72 511.65,293.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,293.94 512.31,293.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,299.58 512.31,299.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,299.36 511.65,299.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,299.36 511.65,299.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,299.58 512.31,299.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,376.49 512.31,376.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,376.26 511.65,376.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,376.26 511.65,376.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,376.49 512.31,376.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,370.85 512.31,370.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,370.63 511.65,370.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,370.63 511.65,370.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,370.85 512.31,370.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.06,376.26 512.06,370.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,376.26 511.89,370.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,370.63 512.31,376.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,370.63 511.65,376.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,376.49 512.31,376.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.79,370.63 511.79,370.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.79,370.63 512.45,370.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,370.3 512.31,370.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,370.08 511.65,370.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,370.08 511.65,370.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,370.3 512.31,370.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,364.66 512.31,364.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,364.44 511.65,364.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,364.44 511.65,364.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,364.66 512.31,364.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.06,370.08 512.06,364.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,370.08 511.89,364.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,364.44 512.31,370.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,364.44 511.65,370.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.79,370.3 512.45,370.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,364.44 511.04,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,364.44 512.31,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.45,370.3 512.45,370.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,370.3 511.65,370.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,363.67 512.31,363.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,363.45 511.65,363.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,363.45 511.65,363.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,363.67 512.31,363.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,358.03 512.31,357.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,357.81 511.65,357.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,357.81 511.65,358.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,358.03 512.31,358.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.06,363.45 512.06,358.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,363.45 511.89,358.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,357.81 512.31,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,357.81 511.65,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,363.67 512.31,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.79,357.81 512.45,357.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.79,357.48 512.45,357.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.45,357.48 512.45,357.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.79,357.48 511.79,357.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,370.63 511.65,370.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,370.3 511.65,370.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,364.44 511.04,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,363.67 511.04,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,364.52 512.97,363.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,364.52 512.31,364.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,363.59 512.31,363.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.7,357.48 511.65,357.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.7,357.81 511.65,357.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,357.81 511.65,357.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.79,356.71 510.79,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,363.67 511.04,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,376.4 512.31,376.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,377.34 512.31,377.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,377.34 512.97,376.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,376.49 511.04,376.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,377.26 511.04,377.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,383.12 511.65,383.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,383.45 511.65,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,376.49 512.31,376.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,383.12 511.65,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,383.12 512.31,383.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,377.26 512.31,377.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,383.12 512.31,383.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,377.26 511.65,383.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,377.26 512.31,383.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.06,382.89 512.06,377.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,382.89 511.89,377.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,377.48 512.31,377.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,377.26 511.65,377.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,377.26 511.65,377.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,377.48 512.31,377.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,383.12 512.31,382.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,382.89 511.65,382.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,382.89 511.65,383.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,383.12 512.31,383.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,383.45 512.31,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,383.45 511.65,383.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,389.3 512.31,389.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,383.45 511.65,389.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,383.45 512.31,389.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.06,389.08 512.06,383.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,389.08 511.89,383.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,383.67 512.31,383.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,383.45 511.65,383.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,383.45 511.65,383.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,383.67 512.31,383.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,389.3 512.31,389.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,389.08 511.65,389.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,389.08 511.65,389.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,389.3 512.31,389.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.04,377.26 511.04,382.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,390.08 511.04,402.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,402.12 512.31,401.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,401.9 511.65,401.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,401.9 511.65,402.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,402.12 512.31,402.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,396.49 512.31,396.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,396.27 511.65,396.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,396.27 511.65,396.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,396.49 512.31,396.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.06,401.9 512.06,396.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,401.9 511.89,396.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,396.27 512.31,402.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,396.27 511.65,402.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,402.12 512.31,402.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,396.27 511.65,395.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,396.27 512.31,396.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,395.93 512.31,395.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,395.71 511.65,395.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,395.71 511.65,395.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,395.93 512.31,395.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,390.3 512.31,390.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,390.08 511.65,390.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,390.08 511.65,390.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,390.3 512.31,390.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.06,395.71 512.06,390.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,395.71 511.89,390.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,390.08 512.31,395.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,390.08 511.65,395.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,395.93 512.31,395.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,390.08 511.04,389.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,390.08 512.31,390.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,395.93 512.31,395.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,395.93 511.65,396.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,389.3 512.31,389.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,396.27 511.65,396.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,395.93 511.65,395.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,390.08 511.04,390.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,389.3 511.04,389.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,390.16 512.97,389.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,390.16 512.31,390.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,389.22 512.31,389.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,389.3 512.31,389.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,402.12 512.31,402.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,402.04 512.31,402.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,402.98 512.31,402.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,402.98 512.97,402.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,402.12 511.04,402.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,402.89 511.04,402.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,408.75 511.65,408.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,409.08 511.65,409.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,402.12 512.31,402.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,408.75 511.65,409.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,408.75 512.31,408.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,402.89 512.31,402.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,408.75 512.31,408.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,402.89 511.65,408.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,402.89 512.31,408.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.06,408.53 512.06,403.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,408.53 511.89,403.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,403.12 512.31,402.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,402.89 511.65,402.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,402.89 511.65,403.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,403.12 512.31,403.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,408.75 512.31,408.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,408.53 511.65,408.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,408.53 511.65,408.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,408.75 512.31,408.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,409.08 512.31,409.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,402.12 512.31,402.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,409.08 511.65,409.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,409.08 511.65,408.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,409.08 511.65,409.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.15,434.69 506.23,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.29,434.69 505.37,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.15,434.03 506.37,434.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.37,434.03 506.37,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.37,434.69 506.15,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.15,434.69 506.15,434.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.78,434.03 506.15,434.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,434.69 512,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.52,434.03 499.74,434.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.74,434.03 499.74,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.74,434.69 499.52,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.52,434.69 499.52,434.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="505.15,434.03 505.37,434.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="505.37,434.03 505.37,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="505.37,434.69 505.15,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="505.15,434.69 505.15,434.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.74,434.28 505.15,434.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.74,434.44 505.15,434.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="505.37,434.69 499.52,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.37,434.03 499.52,434.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.52,434.03 499.52,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.29,435.35 506.23,435.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.37,434.03 505.37,434.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.33,434.03 493.55,434.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.55,434.03 493.55,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.55,434.69 493.33,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.33,434.69 493.33,434.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="498.97,434.03 499.19,434.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.19,434.03 499.19,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.19,434.69 498.97,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="498.97,434.69 498.97,434.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.55,434.28 498.97,434.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.55,434.44 498.97,434.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.19,434.03 493.33,434.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.19,434.69 493.33,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.33,434.69 493.33,434.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.19,434.69 499.19,434.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.19,434.03 499.52,434.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.19,434.04 499.52,434.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.7,434.03 486.92,434.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.92,434.03 486.92,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.92,434.69 486.7,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.7,434.69 486.7,434.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.34,434.03 492.56,434.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.56,434.03 492.56,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.56,434.69 492.34,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.34,434.69 492.34,434.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.92,434.28 492.34,434.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.92,434.44 492.34,434.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.56,434.69 486.7,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.56,434.03 486.7,434.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.7,434.03 486.7,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.77,433.42 492.56,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.56,433.42 493.33,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.56,434.03 492.56,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.37,434.03 486.37,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.15,433.42 511.04,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,434.39 512.31,434.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,434.39 512.31,434.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,434.72 512.34,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512,435.13 512,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.34,435.13 512.34,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.23,435.35 506.23,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.29,435.35 505.29,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.15,434.69 506.15,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.37,434.69 505.37,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.37,433.42 506.15,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.52,435.13 499.52,434.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.19,435.13 499.19,434.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.37,434.03 486.7,434.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.37,435.13 486.37,434.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.7,435.13 486.7,434.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.56,434.69 492.56,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.33,434.69 493.33,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.47,435.35 493.41,435.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.47,435.35 492.47,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.41,435.35 493.41,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.35,432.73 510.35,430.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,428.72 511.65,428.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,428.53 511.65,434.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,428.75 512.31,428.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,428.53 511.65,428.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,428.53 511.65,428.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,428.75 512.31,428.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.57,434.69 310.68,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.01,434.02 310.68,434.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.01,434.02 311.01,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.68,434.69 310.46,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.46,434.69 310.46,434.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.46,434.02 310.68,434.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.68,434.02 310.68,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.04,434.69 304.82,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.82,434.69 304.82,434.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.82,434.02 305.04,434.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.04,434.02 305.04,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.46,434.44 305.04,434.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.46,434.27 305.04,434.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.82,434.69 310.68,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.82,434.02 310.68,434.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.68,434.02 310.68,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.82,433.42 304.05,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.82,434.02 304.82,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.68,434.69 310.68,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.68,434.02 311.01,434.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.68,434.02 310.68,434.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.05,434.69 303.83,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.83,434.69 303.83,434.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.83,434.02 304.05,434.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.05,434.02 304.05,434.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.05,434.69 304.05,434.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,428.53 297.89,428.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,427.67 297.89,427.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,428.53 298.55,428.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,428.75 297.89,428.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,428.75 297.89,428.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,428.53 298.55,428.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,434.02 298.55,428.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,421.9 298.55,422.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,422.12 297.89,422.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,422.12 297.89,421.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,421.9 298.55,421.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,427.54 298.55,427.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,427.76 297.89,427.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,427.76 297.89,427.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,427.54 298.55,427.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.3,422.12 298.3,427.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.13,422.12 298.13,427.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,427.76 297.89,421.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,427.76 298.55,421.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,421.9 297.89,421.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.22,427.67 297.22,428.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,427.76 298.55,427.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,415.71 298.55,415.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,415.93 297.89,415.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,415.93 297.89,415.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,415.71 298.55,415.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,421.35 298.55,421.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,421.57 297.89,421.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,421.57 297.89,421.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,421.35 298.55,421.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.3,415.93 298.3,421.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.13,415.93 298.13,421.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,421.57 298.55,415.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,421.57 297.89,415.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,415.71 298.55,415.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,421.57 298.55,421.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,421.57 298.55,421.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.54,421.57 298.54,421.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,409.08 298.55,409.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,409.3 297.89,409.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,409.3 297.89,409.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,409.08 298.55,409.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,414.72 298.55,414.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,414.94 297.89,414.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,414.94 297.89,414.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,414.72 298.55,414.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.3,409.3 298.3,414.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.13,409.3 298.13,414.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,414.94 297.89,409.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,414.94 298.55,409.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,409.08 297.89,409.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.16,414.94 299.16,415.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,414.94 297.89,414.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.82,433.42 310.68,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.01,435.13 311.01,434.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.68,435.13 310.68,434.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.05,433.42 299.16,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.16,428.53 299.16,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.82,434.69 304.82,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.05,434.69 304.05,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.9,435.35 303.96,435.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.9,435.35 304.9,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.96,435.35 303.96,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.22,428.61 297.89,428.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.22,427.67 297.89,427.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,428.53 299.16,428.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,427.76 299.16,427.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.16,427.76 299.16,428.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.44,421.9 298.54,421.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.44,421.57 298.54,421.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,408.75 298.55,409.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.44,408.75 298.55,408.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.44,409.08 298.55,409.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,414.94 299.16,414.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,415.71 299.16,415.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.22,414.86 297.22,415.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.22,414.86 297.89,414.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.22,415.8 297.89,415.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.85,430.85 299.85,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.73,430.85 301.73,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.85,432.73 301.73,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.85,430.85 301.73,430.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.68,434.02 310.68,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.01,434.02 310.68,434.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.68,435.13 310.68,434.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.31,434.83 311.01,434.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,383.45 298.55,383.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,383.67 297.89,383.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,383.67 297.89,383.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,383.45 298.55,383.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.34,382.18 299.15,382.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,268.09 285.07,268.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,267.76 285.07,267.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,267.53 285.73,267.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,267.53 285.73,267.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,267.76 285.07,267.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,262.12 285.07,261.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,261.9 285.73,261.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,261.9 285.73,262.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,262.12 285.07,262.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.32,267.53 285.32,262.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,267.53 285.48,262.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,261.9 285.07,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,261.9 285.73,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,267.76 285.07,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,261.9 286.34,261.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,261.9 285.07,261.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,267.76 285.07,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,267.76 285.73,268.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,267.76 285.73,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,261.13 285.07,260.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,260.9 285.73,260.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,260.9 285.73,261.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,261.13 285.07,261.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,255.85 285.07,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,255.63 285.73,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,255.63 285.73,255.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,255.85 285.07,255.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,255.63 285.07,261.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,261.13 285.73,261.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.23,254.97 291.15,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.08,254.97 292,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.23,255.63 291.01,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.01,255.63 291.01,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.01,254.97 291.23,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.23,254.97 291.23,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.95,255.63 285.73,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,255.63 285.73,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,254.97 285.95,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.95,254.97 285.95,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,255.63 291.23,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,254.97 291.23,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.86,255.63 297.64,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.64,255.63 297.64,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.64,254.97 297.86,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.86,254.97 297.86,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.22,255.63 292,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292,255.63 292,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292,254.97 292.22,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.22,254.97 292.22,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.64,255.38 292.22,255.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.64,255.21 292.22,255.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292,254.97 297.86,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292,255.63 297.86,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.86,255.63 297.86,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.08,254.3 291.15,254.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292,255.63 292,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.05,255.63 303.83,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.83,255.63 303.83,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.83,254.97 304.05,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.05,254.97 304.05,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.41,255.63 298.19,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.19,255.63 298.19,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.19,254.97 298.41,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.41,254.97 298.41,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.83,255.38 298.41,255.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.83,255.21 298.41,255.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.19,255.63 304.05,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.19,254.97 304.05,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.05,254.97 304.05,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.19,254.97 298.19,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.19,255.63 297.86,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.19,255.62 297.86,255.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.68,255.63 310.46,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.46,255.63 310.46,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.46,254.97 310.68,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.68,254.97 310.68,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.04,255.63 304.82,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.82,255.63 304.82,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.82,254.97 305.04,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.04,254.97 305.04,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.46,255.38 305.04,255.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.46,255.21 305.04,255.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.82,254.97 310.68,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.82,255.63 310.68,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.68,255.63 310.68,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.82,255.63 304.82,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,268.09 285.73,268.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,267.76 285.73,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,261.9 286.34,261.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,261.13 286.34,261.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,261.98 284.41,261.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,261.98 285.07,261.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,261.04 285.07,261.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.15,254.3 291.15,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.08,254.3 292.08,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.23,254.97 291.23,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292,254.97 292,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.86,254.52 297.86,255.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.19,254.52 298.19,255.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.01,255.63 310.68,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.01,254.52 311.01,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.68,254.52 310.68,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.82,254.97 304.82,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.05,254.97 304.05,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.9,254.3 303.96,254.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.9,254.3 304.9,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.96,254.3 303.96,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.91,279.8 288.91,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.91,281.68 286.62,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.91,279.8 286.62,279.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.34,170.29 346.34,171.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.49,170.29 348.49,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.78,170.29 346.78,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.64,171.4 346.64,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.63,171.4 348.63,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.6,171.4 314.6,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.46,170.29 314.46,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.9,170.29 314.9,171.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,170.74 314.46,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.6,171.4 314.9,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.46,170.29 314.9,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.87,171.4 322.87,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.43,171.4 322.43,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.4,171.4 330.4,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.84,171.4 330.84,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.81,171.4 338.81,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.37,171.4 338.37,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.43,171.4 322.87,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.43,171.4 322.87,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.43,170.74 322.43,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.43,170.74 314.9,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.43,171.4 314.9,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="315.12,171.18 322.21,171.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.12,170.96 322.21,170.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.21,171.4 322.43,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.43,171.4 322.43,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.43,170.74 322.21,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.21,170.74 322.21,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="314.9,171.4 315.12,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.12,171.4 315.12,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.12,170.74 314.9,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="314.9,170.74 314.9,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.4,170.74 330.4,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.4,171.4 330.84,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.4,171.4 330.84,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.87,170.74 322.87,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.4,170.74 322.87,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.4,171.4 322.87,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.09,171.18 330.18,171.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="323.09,170.96 330.18,170.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.18,171.4 330.4,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.4,171.4 330.4,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.4,170.74 330.18,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.18,170.74 330.18,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.87,171.4 323.09,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="323.09,171.4 323.09,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="323.09,170.74 322.87,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.87,170.74 322.87,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.37,170.74 338.37,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.37,171.4 338.81,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.37,171.4 338.81,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.84,170.74 330.84,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.37,170.74 330.84,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.37,171.4 330.84,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.06,171.18 338.15,171.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.06,170.96 338.15,170.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.15,171.4 338.37,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.37,171.4 338.37,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.37,170.74 338.15,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.15,170.74 338.15,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.84,171.4 331.06,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.06,171.4 331.06,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.06,170.74 330.84,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.84,170.74 330.84,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="346.34,171.4 346.64,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.81,170.74 338.81,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.34,170.74 338.81,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.34,171.4 338.81,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.03,171.18 346.12,171.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.03,170.96 346.12,170.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="346.12,171.4 346.34,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="346.34,171.4 346.34,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="346.34,170.74 346.12,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="346.12,170.74 346.12,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.81,171.4 339.03,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.03,171.4 339.03,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.03,170.74 338.81,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.81,170.74 338.81,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.16,171.18 356.24,171.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.16,170.96 356.24,170.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="356.46,171.4 348.94,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.46,170.74 348.94,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.94,171.4 349.16,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.16,171.4 349.16,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="349.16,170.74 348.94,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.94,170.74 348.94,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.37,171.4 372.85,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.37,170.74 372.85,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.85,170.74 372.85,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.37,171.4 380.68,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.37,170.74 380.37,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.4,171.4 362.76,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.4,170.74 364.88,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.88,170.74 364.88,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.4,171.4 372.85,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.4,171.4 372.85,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.4,170.74 372.4,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.91,170.74 356.91,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.43,171.4 364.88,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.43,171.4 364.88,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.43,170.74 364.43,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.24,171.4 356.46,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="356.46,171.4 356.46,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="356.46,170.74 356.24,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="356.24,170.74 356.24,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="356.46,170.74 356.46,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.46,171.4 356.91,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.46,171.4 356.91,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.4,171.4 372.4,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.85,171.4 372.85,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.88,171.4 364.88,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.43,171.4 364.43,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.46,171.4 356.46,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.91,171.4 356.91,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.82,170.29 380.82,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.53,170.29 382.53,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.82,170.74 382.53,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.82,170.29 380.37,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.68,171.4 380.37,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,170.29 380.37,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,170.29 380.37,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,170.29 380.37,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.67,171.4 382.97,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.53,170.29 382.97,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.67,171.4 382.67,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.68,171.4 380.68,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.68,172.17 382.67,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.56,170.29 417,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.7,171.4 417,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,170.29 414.41,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,170.29 414.41,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,170.29 414.41,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.85,170.29 414.41,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.85,170.74 416.56,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.56,170.29 416.56,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.85,170.29 414.85,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.94,171.4 390.94,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.5,171.4 390.5,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.47,171.4 398.47,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.91,171.4 398.91,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.88,171.4 406.88,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.44,171.4 406.44,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.5,171.4 390.94,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.5,171.4 390.94,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.5,170.74 390.5,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.28,171.4 390.5,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.5,171.4 390.5,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.5,170.74 390.28,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.28,170.74 390.28,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.47,170.74 398.47,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.47,171.4 398.91,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.47,171.4 398.91,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.94,170.74 390.94,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.47,170.74 390.94,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.47,171.4 390.94,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="391.16,171.18 398.25,171.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.16,170.96 398.25,170.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.25,171.4 398.47,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.47,171.4 398.47,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.47,170.74 398.25,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.25,170.74 398.25,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.94,171.4 391.16,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.16,171.4 391.16,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.16,170.74 390.94,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.94,170.74 390.94,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.44,170.74 406.44,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.44,171.4 406.88,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.44,171.4 406.88,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.91,170.74 398.91,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.44,170.74 398.91,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.44,171.4 398.91,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.13,171.18 406.22,171.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.13,170.96 406.22,170.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.22,171.4 406.44,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.44,171.4 406.44,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.44,170.74 406.22,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.22,170.74 406.22,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.91,171.4 399.13,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.13,171.4 399.13,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.13,170.74 398.91,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.91,170.74 398.91,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.41,170.74 414.41,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.41,171.4 414.71,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.88,170.74 406.88,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.41,170.74 406.88,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.41,171.4 406.88,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.1,171.18 414.19,171.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.1,170.96 414.19,170.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.19,171.4 414.41,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.41,171.4 414.41,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.41,170.74 414.19,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.19,170.74 414.19,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.88,171.4 407.1,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.1,171.4 407.1,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.1,170.74 406.88,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.88,170.74 406.88,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.71,172.17 416.7,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.71,171.4 414.71,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.7,171.4 416.7,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.5,170.74 382.97,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.5,171.4 382.97,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="383.19,171.18 390.28,171.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.19,170.96 390.28,170.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.97,171.4 383.19,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.19,171.4 383.19,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.19,170.74 382.97,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.97,170.74 382.97,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="450.73,171.4 450.73,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.74,171.4 448.74,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.91,171.4 441.13,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.13,171.4 441.13,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.13,170.74 440.91,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="440.91,170.74 440.91,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.22,171.4 448.44,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.44,171.4 448.44,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.44,170.74 448.22,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.22,170.74 448.22,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.13,171.18 448.22,171.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.13,170.96 448.22,170.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.44,171.4 440.91,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.44,170.74 440.91,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.91,170.74 440.91,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.44,171.4 448.74,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.44,170.74 448.44,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.94,171.4 433.16,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="433.16,171.4 433.16,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="433.16,170.74 432.94,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.94,170.74 432.94,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="440.25,171.4 440.47,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="440.47,171.4 440.47,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="440.47,170.74 440.25,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="440.25,170.74 440.25,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="433.16,171.18 440.25,171.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="433.16,170.96 440.25,170.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="440.47,171.4 432.94,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.47,170.74 432.94,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.94,170.74 432.94,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.47,171.4 440.91,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.47,171.4 440.91,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.47,170.74 440.47,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.97,171.4 425.19,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.19,171.4 425.19,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.19,170.74 424.97,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.97,170.74 424.97,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.28,171.4 432.5,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.5,171.4 432.5,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.5,170.74 432.28,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.28,170.74 432.28,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.19,171.18 432.28,171.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.19,170.96 432.28,170.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.5,171.4 424.97,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.5,170.74 424.97,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.97,170.74 424.97,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.5,171.4 432.94,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.5,171.4 432.94,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.5,170.74 432.5,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.31,171.4 424.53,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.53,171.4 424.53,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.53,170.74 424.31,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.31,170.74 424.31,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.53,170.74 424.53,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.53,171.4 424.97,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.53,171.4 424.97,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.47,171.4 440.47,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.91,171.4 440.91,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.94,171.4 432.94,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.5,171.4 432.5,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.53,171.4 424.53,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.97,171.4 424.97,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.88,170.29 448.88,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.59,170.29 450.59,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.04,170.29 451.04,171.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.44,170.29 448.44,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.88,170.74 450.59,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.74,171.4 448.44,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.88,170.29 448.44,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.73,171.4 451.04,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.59,170.29 451.04,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="417,171.4 417.22,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.22,171.4 417.22,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.22,170.74 417,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417,170.74 417,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.22,171.18 424.31,171.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.22,170.96 424.31,170.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.53,171.4 417,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.53,170.74 417,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.56,170.74 451.04,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.56,171.4 451.04,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.26,171.18 458.34,171.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.26,170.96 458.34,170.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.04,171.4 451.26,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.26,171.4 451.26,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.26,170.74 451.04,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.04,170.74 451.04,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458.56,170.49 458.56,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.53,170.49 466.53,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.98,170.49 466.98,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.95,170.49 474.95,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.5,170.49 474.5,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.56,170.74 458.56,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.34,171.4 458.56,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458.56,171.4 458.56,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458.56,170.74 458.34,170.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458.34,170.74 458.34,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.77,434.86 484.77,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.78,433.42 484.77,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.92,436.54 482.92,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.63,436.54 484.63,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.07,436.54 485.07,434.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.78,435.44 482.78,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.47,435.44 474.95,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.47,436.1 474.95,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.95,436.1 474.95,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.47,435.44 482.78,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.47,436.1 482.47,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.98,435.44 467.2,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.2,435.44 467.2,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.2,436.1 466.98,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.98,436.1 466.98,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.28,435.44 474.5,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.5,435.44 474.5,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.5,436.1 474.28,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.28,436.1 474.28,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.2,435.66 474.28,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="467.2,435.88 474.28,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.5,435.44 466.98,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.5,436.1 466.98,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.98,436.1 466.98,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.5,435.44 474.95,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.5,435.44 474.95,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.5,436.1 474.5,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.01,435.44 459.23,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.23,435.44 459.23,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.23,436.1 459.01,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.01,436.1 459.01,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.31,435.44 466.53,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.53,435.44 466.53,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.53,436.1 466.31,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.31,436.1 466.31,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.23,435.66 466.31,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.23,435.88 466.31,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.53,435.44 459.01,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.53,436.1 459.01,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.01,436.1 459.01,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.53,435.44 466.98,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.53,435.44 466.98,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.53,436.1 466.53,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.56,436.1 458.56,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.56,435.44 459.01,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.56,435.44 459.01,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.5,435.44 474.5,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.95,435.44 474.95,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.98,435.44 466.98,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.53,435.44 466.53,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.56,435.44 458.56,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.01,435.44 459.01,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.47,436.54 482.47,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.78,435.44 482.47,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.56,435.44 451.04,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.56,436.1 451.04,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.53,436.1 417,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.53,435.44 417,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.73,435.44 451.04,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.74,435.44 448.44,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.44,436.54 448.44,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="451.04,436.54 451.04,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.59,436.54 450.59,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.88,436.54 448.88,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.97,435.44 424.97,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.53,435.44 424.53,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.5,435.44 432.5,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.94,435.44 432.94,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.91,435.44 440.91,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.47,435.44 440.47,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.53,435.44 424.97,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.53,435.44 424.97,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.53,436.1 424.53,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.5,436.1 432.5,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.5,435.44 432.94,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.5,435.44 432.94,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.97,436.1 424.97,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.5,436.1 424.97,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.5,435.44 424.97,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="425.19,435.66 432.28,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.19,435.88 432.28,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.28,435.44 432.5,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.5,435.44 432.5,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.5,436.1 432.28,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.28,436.1 432.28,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.97,435.44 425.19,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.19,435.44 425.19,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="425.19,436.1 424.97,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.97,436.1 424.97,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="440.47,436.1 440.47,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.47,435.44 440.91,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.47,435.44 440.91,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.94,436.1 432.94,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.47,436.1 432.94,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.47,435.44 432.94,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="433.16,435.66 440.25,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="433.16,435.88 440.25,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="440.25,435.44 440.47,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="440.47,435.44 440.47,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="440.47,436.1 440.25,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="440.25,436.1 440.25,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.94,435.44 433.16,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="433.16,435.44 433.16,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="433.16,436.1 432.94,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="432.94,436.1 432.94,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.44,436.1 448.44,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.44,435.44 448.74,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.91,436.1 440.91,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.44,436.1 440.91,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.44,435.44 440.91,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.91,435.44 441.13,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.13,435.44 441.13,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.13,436.1 440.91,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="440.91,436.1 440.91,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.74,435.44 448.74,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.73,435.44 450.73,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.5,435.44 382.97,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.5,436.1 382.97,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.7,435.44 416.7,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.71,435.44 414.71,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.41,435.44 406.88,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.41,436.1 406.88,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.88,436.1 406.88,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.41,435.44 414.71,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.41,436.1 414.41,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.91,435.44 399.13,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.13,435.44 399.13,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.13,436.1 398.91,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.91,436.1 398.91,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.22,435.44 406.44,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.44,435.44 406.44,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.44,436.1 406.22,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.22,436.1 406.22,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.13,435.66 406.22,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.13,435.88 406.22,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.44,435.44 398.91,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.44,436.1 398.91,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.91,436.1 398.91,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.44,435.44 406.88,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.44,435.44 406.88,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.44,436.1 406.44,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.94,435.44 391.16,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.16,435.44 391.16,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.16,436.1 390.94,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.94,436.1 390.94,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.25,435.44 398.47,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.47,435.44 398.47,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.47,436.1 398.25,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.25,436.1 398.25,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.16,435.66 398.25,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.16,435.88 398.25,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.47,435.44 390.94,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.47,436.1 390.94,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.94,436.1 390.94,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.47,435.44 398.91,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.47,435.44 398.91,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.47,436.1 398.47,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.5,436.1 390.5,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.5,435.44 390.94,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.5,435.44 390.94,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.44,435.44 406.44,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.88,435.44 406.88,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.91,435.44 398.91,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.47,435.44 398.47,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.5,435.44 390.5,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.94,435.44 390.94,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.85,436.54 414.85,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.56,436.54 416.56,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="417,436.54 417,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.41,436.54 414.41,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.71,435.44 414.41,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.7,435.44 417,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.68,435.44 380.68,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.67,435.44 382.67,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.67,435.44 382.97,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.68,435.44 380.37,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.37,436.54 380.37,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.97,436.54 382.97,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.53,436.54 382.53,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.82,436.54 380.82,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.91,435.44 356.91,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.46,435.44 356.46,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.43,435.44 364.43,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.88,435.44 364.88,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.85,435.44 372.85,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.4,435.44 372.4,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.46,435.44 356.91,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.46,435.44 356.91,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.46,436.1 356.46,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.43,436.1 364.43,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.43,435.44 364.88,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.43,435.44 364.88,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.91,436.1 356.91,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.43,436.1 356.91,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.43,435.44 356.91,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.4,436.1 372.4,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.4,435.44 372.85,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.4,435.44 372.85,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.88,436.1 364.88,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.4,436.1 364.88,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.4,435.44 364.88,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="365.1,435.66 372.18,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="365.1,435.88 372.18,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="372.18,435.44 372.4,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="372.4,435.44 372.4,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="372.4,436.1 372.18,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="372.18,436.1 372.18,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="364.88,435.44 365.1,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="365.1,435.44 365.1,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="365.1,436.1 364.88,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="364.88,436.1 364.88,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.37,436.1 380.37,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.37,435.44 380.68,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.85,436.1 372.85,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.37,436.1 372.85,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.37,435.44 372.85,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.46,436.1 348.94,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.46,435.44 348.94,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.81,436.1 338.81,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.34,435.44 346.64,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.34,436.1 346.34,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.84,435.44 331.06,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.06,435.44 331.06,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.06,436.1 330.84,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.84,436.1 330.84,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.15,435.44 338.37,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.37,435.44 338.37,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.37,436.1 338.15,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.15,436.1 338.15,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.06,435.66 338.15,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.06,435.88 338.15,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.37,435.44 330.84,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.37,436.1 330.84,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.84,436.1 330.84,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.37,435.44 338.81,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.37,435.44 338.81,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.37,436.1 338.37,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.87,435.44 323.09,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="323.09,435.44 323.09,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="323.09,436.1 322.87,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.87,436.1 322.87,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.18,435.44 330.4,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.4,435.44 330.4,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.4,436.1 330.18,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.18,436.1 330.18,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="323.09,435.66 330.18,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="323.09,435.88 330.18,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.4,435.44 322.87,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.4,436.1 322.87,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.87,436.1 322.87,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.4,435.44 330.84,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.4,435.44 330.84,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.4,436.1 330.4,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.43,435.44 314.9,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.43,436.1 314.9,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.9,436.1 314.9,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.43,436.1 322.43,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.43,435.44 322.87,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.43,435.44 322.87,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.37,435.44 338.37,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.81,435.44 338.81,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.84,435.44 330.84,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.4,435.44 330.4,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.43,435.44 322.43,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.87,435.44 322.87,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.68,433.42 314.6,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.6,435.44 314.9,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.31,436.54 312.31,434.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.9,436.54 314.9,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.46,436.54 314.46,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.75,436.54 312.75,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.6,435.44 314.6,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.63,435.44 348.63,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.64,435.44 346.64,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.78,436.54 346.78,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.49,436.54 348.49,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.94,436.54 348.94,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.34,436.54 346.34,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.64,435.44 346.34,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.63,435.44 348.94,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,268.09 285.73,268.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,268.09 285.73,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,268.09 285.07,273.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,268.09 285.73,273.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,268.31 285.73,268.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,268.09 285.07,268.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,268.09 285.07,268.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,268.31 285.73,268.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,273.94 285.73,273.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,273.72 285.07,273.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,273.72 285.07,273.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,273.94 285.73,273.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.01,254.52 310.68,254.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.19,254.52 297.86,254.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,267.76 284.63,268.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.19,254.52 499.52,254.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.37,254.52 486.7,254.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,293.39 512.75,293.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,280.57 512.75,280.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,267.76 512.75,268.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.68,435.13 311.01,435.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.44,421.9 297.44,421.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.44,409.08 297.44,408.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,325.13 284.41,326.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,274.8 285.07,274.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.45,396.27 297.45,395.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.23,402.98 297.89,402.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.23,402.04 297.89,402.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.23,402.04 297.23,402.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,402.89 299.16,402.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,402.12 299.16,402.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.45,396.27 298.55,396.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.45,395.93 298.55,395.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,395.93 298.55,396.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,402.12 297.89,402.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.16,402.12 299.16,402.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,396.27 297.89,396.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,402.12 298.55,396.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,402.12 297.89,396.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.3,396.49 298.3,401.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.14,396.49 298.14,401.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,401.9 298.55,402.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,402.12 297.89,402.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,402.12 297.89,401.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,401.9 298.55,401.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,396.27 298.55,396.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,396.49 297.89,396.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,396.49 297.89,396.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,396.27 298.55,396.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,402.89 298.55,402.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,408.75 297.89,402.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,408.75 298.55,402.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.3,403.12 298.3,408.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.14,403.12 298.14,408.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,408.53 298.55,408.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,408.75 297.89,408.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,408.75 297.89,408.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,408.53 298.55,408.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,402.89 298.55,403.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,403.12 297.89,403.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,403.12 297.89,402.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,402.89 298.55,402.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,390.08 298.55,390.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,390.3 297.89,390.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,390.3 297.89,390.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,390.08 298.55,390.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,395.71 298.55,395.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,395.93 297.89,395.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,395.93 297.89,395.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,395.71 298.55,395.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.3,390.3 298.3,395.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.13,390.3 298.13,395.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,395.93 298.55,390.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,395.93 297.89,390.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,390.08 298.55,390.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,389.08 298.55,389.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,389.3 297.89,389.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,389.3 297.89,389.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,389.08 298.55,389.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,389.3 297.89,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,389.3 298.55,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.15,382.18 299.15,389.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.15,389.3 299.15,390.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,389.3 297.89,389.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,389.3 299.15,389.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,390.08 299.15,390.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.22,389.22 297.22,390.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.22,389.22 297.89,389.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.22,390.16 297.89,390.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.56,395.93 298.56,395.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,389.03 287.03,390.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,389.03 285.04,389.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.38,389.19 284.38,390.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,389.03 285.04,389.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,390.35 285.04,390.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,390.19 285.04,390.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,389.19 284.38,389.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,390.19 284.38,390.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,403.01 284.38,403.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,402.01 284.38,402.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,403.01 285.04,403.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,403.17 285.04,403.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,401.85 285.04,401.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.38,402.01 284.38,403.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,401.85 285.04,402.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,401.85 287.03,403.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,427.48 287.03,428.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,427.48 285.04,427.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.38,427.65 284.38,428.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,427.48 285.04,427.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,428.81 285.04,428.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,428.64 285.04,428.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,427.65 284.38,427.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,428.64 284.38,428.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,415.82 284.38,415.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,414.83 284.38,414.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,415.82 285.04,415.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,415.99 285.04,415.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,414.66 285.04,414.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.38,414.83 284.38,415.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,414.66 285.04,414.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,414.66 287.03,415.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.11,434.66 292.11,435.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.12,434.66 291.12,435.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.11,434.66 292.28,434.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.28,432.67 292.28,434.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="290.95,432.67 290.95,434.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.12,435.33 292.11,435.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="290.95,434.66 291.12,434.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="290.95,432.67 292.28,432.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.15,384.09 292.14,384.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.15,384.09 291.15,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.02,356.71 480.02,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.37,356.71 475.37,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.08,358.58 480.02,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.22,356.71 480.02,356.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.22,356.71 483.22,347.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.16,356.71 484.16,339.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.37,358.59 471.29,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.37,356.71 472.17,356.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.71,357.37 472.17,357.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.71,357.92 472.17,357.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,357.37 480.68,357.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,357.92 480.68,357.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.71,357.37 474.71,357.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.68,357.37 480.68,357.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.17,357.92 472.17,357.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.29,358.59 471.29,356.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.17,356.71 472.17,347.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.22,347.87 472.17,347.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.22,346.98 472.17,346.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.17,346.98 472.17,332.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.22,346.98 483.22,339.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.94,338.14 484.6,338.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,358.59 489.5,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,357.81 490.53,357.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="489.5,358.59 489.5,356.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="489.5,356.87 490.53,356.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.31,357.87 511.65,357.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.31,357.87 511.65,357.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.31,358.59 511.31,357.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.79,358.59 511.31,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.79,357.42 511.65,357.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,383.06 511.65,383.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,382.34 511.04,383.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,382.34 510.35,382.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="510.35,383.5 511.65,383.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,382.34 489.3,382.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.41,378.92 491.18,378.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="508.69,379.19 490.64,379.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="501.78,372.29 490.64,372.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="501.51,372.01 490.64,372.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="501.78,368.36 490.84,368.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="501.51,368.64 491.56,368.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="508.41,361.73 490.84,361.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="508.69,361.46 491.56,361.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="490.64,378.92 508.41,378.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="508.41,361.73 508.41,370.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="508.69,361.46 508.69,370.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="501.78,368.36 501.78,368.9" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="501.51,368.64 501.51,368.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="501.78,368.36 501.78,361.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="501.78,372.29 501.78,378.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="500.57,368.36 500.57,361.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="499.35,368.36 499.35,361.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="498.14,368.36 498.14,361.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="496.92,368.36 496.92,361.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="500.57,372.29 500.57,378.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="499.35,372.29 499.35,378.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="498.14,372.29 498.14,378.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="496.92,372.29 496.92,378.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="495.71,372.29 495.71,378.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="494.49,372.29 494.49,378.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="493.27,372.29 493.27,378.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="492.06,372.29 492.06,378.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="490.84,372.29 490.84,378.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="490.64,372.01 490.64,372.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="490.64,378.92 490.64,379.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="511.04,376.71 508.69,376.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="511.04,377.04 508.69,377.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="511.04,364.22 508.69,364.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="511.04,363.89 508.69,363.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="504.98,375.68 490.01,375.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="286.62,279.8 286.62,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="289.41,259.61 289.41,270.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="289.13,259.33 289.13,269.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,266.24 296.04,273.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.31,266.51 296.31,273.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="289.41,259.61 303.71,259.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="289.13,259.33 303.44,259.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,266.24 303.71,266.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.31,266.51 303.44,266.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,266.24 289.41,266.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,267.45 289.41,267.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,268.67 289.41,268.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,269.88 289.41,269.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,271.1 291.44,271.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,272.31 293.92,272.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.17,273.53 289.41,273.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="295.61,274.74 289.41,274.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,275.96 289.41,275.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,277.18 289.41,277.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,278.39 289.41,278.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,279.61 289.41,279.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,280.82 289.41,280.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,282.04 289.41,282.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,283.25 289.41,283.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="289.13,286.18 289.41,286.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,286.18 296.31,286.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,266.24 296.04,259.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="297.25,266.24 297.25,259.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="298.47,266.24 298.47,259.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="299.68,266.24 299.68,259.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="300.9,266.24 300.9,259.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.71,269.13 292.72,269.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.72,269.63 293.73,269.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.71,268.88 292.72,269.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.72,269.38 293.73,268.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.71,268.88 291.71,269.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.73,268.88 293.73,269.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M291.71 268.88L291.71 269.13 292.72 269.63 292.72 269.38 291.71 268.88Z" fill-rule="evenodd" fill="blue"/>
+<path d="M293.73 268.88L293.73 269.13 292.72 269.63 292.72 269.38 293.73 268.88Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="292.72,262.83 292.72,269.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="346.7,227.7 346.7,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.58,227.7 348.58,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,229.58 348.58,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,227.7 348.58,227.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,227.7 382.61,227.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,229.58 382.61,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.61,227.7 382.61,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,227.7 380.73,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,227.7 416.64,227.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,229.58 416.64,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.64,227.7 416.64,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,227.7 414.77,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,227.7 450.68,227.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,229.58 450.68,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.68,227.7 450.68,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,227.7 448.8,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,202.06 448.8,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.68,202.06 450.68,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,203.94 450.68,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,202.06 414.77,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.64,202.06 416.64,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,203.94 416.64,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,202.06 416.64,202.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,202.06 380.73,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.61,202.06 382.61,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,203.94 382.61,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,202.06 382.61,202.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,202.06 348.58,202.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,203.94 348.58,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.58,202.06 348.58,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,202.06 346.7,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,176.43 346.7,178.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.58,176.43 348.58,178.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,178.31 348.58,178.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,176.43 348.58,176.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,176.43 382.61,176.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,178.31 382.61,178.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.61,176.43 382.61,178.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,176.43 380.73,178.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,176.43 416.64,176.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,178.31 416.64,178.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.64,176.43 416.64,178.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,176.43 414.77,178.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,176.43 450.68,176.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,178.31 450.68,178.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.68,176.43 450.68,178.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,176.43 448.8,178.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,254.16 448.8,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.68,254.16 450.68,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,256.04 450.68,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,254.16 450.68,254.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,254.16 414.77,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.64,254.16 416.64,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,256.04 416.64,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,254.16 416.64,254.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,254.16 380.73,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.61,254.16 382.61,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,256.04 382.61,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,254.16 382.61,254.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,254.16 348.58,254.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,256.04 348.58,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.58,254.16 348.58,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,254.16 346.7,256.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.73,172.17 448.74,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.64,172.17 338.48,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.94,170.29 348.94,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.37,170.29 380.37,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.97,170.29 382.97,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.41,170.29 414.41,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="417,170.29 417,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.74,172.17 416.7,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.71,172.17 382.67,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.34,172.17 348.63,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.92,254.05 484.74,254.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.92,256.23 486.73,256.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,245.66 486.12,245.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,245.21 486.12,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,253.17 486.12,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,253.61 486.12,253.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.12,253.61 486.12,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,253.61 485.02,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.92,229.58 484.74,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.92,227.7 484.74,227.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.74,229.74 484.74,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.74,227.7 484.74,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.79,227.98 485.79,229.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.74,253.17 485.62,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.74,254.05 484.74,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.92,256.23 482.92,254.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.73,256.23 486.73,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.95,253.61 485.95,254.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.74,253.17 484.74,229.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,253.61 485.02,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.95,245.66 485.95,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,237.26 486.12,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,237.7 486.12,237.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.95,237.7 485.95,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.79,227.98 486.12,227.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.74,227.53 486.12,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.12,227.98 486.12,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.12,229.3 486.12,229.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.74,229.74 486.12,229.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.79,229.3 486.12,229.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.95,229.74 485.95,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.79,203.67 486.12,203.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.74,204.11 486.12,204.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.12,203.67 486.12,204.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.12,202.34 486.12,201.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.74,201.9 486.12,201.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.79,202.34 486.12,202.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.79,202.34 485.79,203.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.74,202.06 484.74,201.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.74,204.11 484.74,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.92,202.06 484.74,202.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.92,203.94 484.74,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,204.11 485.62,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.95,204.11 485.95,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.74,227.53 484.74,204.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.74,201.9 484.74,186.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,253.17 485.62,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.12,245.66 486.12,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,245.66 485.02,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,245.66 485.02,245.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,245.66 485.02,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,253.17 485.02,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,245.66 485.62,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,245.66 485.02,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.43,252.95 485.43,245.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.21,252.95 485.21,245.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,245.88 485.62,245.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,245.66 485.02,245.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,245.66 485.02,245.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,245.88 485.62,245.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,253.17 485.62,252.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,252.95 485.02,252.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,252.95 485.02,253.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,253.17 485.62,253.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,237.7 485.02,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,237.7 485.02,237.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,237.7 485.02,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.12,237.7 486.12,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,245.21 485.02,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,237.7 485.62,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,237.7 485.02,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.43,244.99 485.43,237.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.21,244.99 485.21,237.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,237.92 485.62,237.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,237.7 485.02,237.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,237.7 485.02,237.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,237.92 485.62,237.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,245.21 485.62,244.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,244.99 485.02,244.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,244.99 485.02,245.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,245.21 485.62,245.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,229.74 485.02,229.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,237.26 485.02,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,229.74 485.62,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,229.74 485.02,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.43,237.04 485.43,229.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.21,237.04 485.21,229.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,229.96 485.62,229.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,229.74 485.02,229.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,229.74 485.02,229.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,229.96 485.62,229.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,237.26 485.62,237.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,237.04 485.02,237.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,237.04 485.02,237.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,237.26 485.62,237.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,211.62 485.62,211.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,211.4 485.02,211.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,211.4 485.02,211.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,211.62 485.62,211.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.43,211.4 485.43,204.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.21,211.4 485.21,204.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,204.11 485.02,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,204.11 485.62,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,211.62 485.02,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,204.11 485.02,204.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,219.58 485.62,219.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,219.36 485.02,219.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,219.36 485.02,219.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,219.58 485.62,219.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,212.29 485.62,212.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,212.06 485.02,212.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,212.06 485.02,212.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,212.29 485.62,212.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.43,219.36 485.43,212.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.21,219.36 485.21,212.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,212.06 485.02,219.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,212.06 485.62,219.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,219.58 485.02,219.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.12,212.06 486.12,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,212.06 485.02,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,212.06 485.02,212.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,212.06 485.02,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,220.24 485.62,220.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,220.02 485.02,220.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,220.02 485.02,220.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,220.24 485.62,220.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,220.02 485.02,219.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,220.02 485.02,220.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,220.02 485.02,219.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.12,220.02 486.12,219.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.74,204.11 486.12,204.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.95,212.06 485.95,219.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,212.06 486.12,212.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,211.62 486.12,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,219.58 486.12,219.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,220.02 486.12,220.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,227.53 485.62,227.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,227.31 485.02,227.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,227.31 485.02,227.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,227.53 485.62,227.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.43,227.31 485.43,220.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.21,227.31 485.21,220.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,220.02 485.02,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,220.02 485.62,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,204.33 485.62,204.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,204.11 485.02,204.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,204.11 485.02,204.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,204.33 485.62,204.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.95,220.02 485.95,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,220.02 485.62,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,212.06 485.62,219.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.95,212.06 485.95,219.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,186.43 485.62,193.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,194.38 486.12,194.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,193.94 486.12,193.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,185.99 486.12,185.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,186.43 486.12,186.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.12,194.38 486.12,193.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,194.38 485.02,193.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,194.38 485.02,194.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,194.38 485.02,193.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,194.61 485.62,194.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,194.38 485.02,194.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,194.38 485.02,194.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,194.61 485.62,194.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,186.43 485.02,185.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,186.43 485.02,186.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,186.43 485.02,185.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.12,186.43 486.12,185.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,193.94 485.02,193.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,186.43 485.62,193.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,186.43 485.02,193.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.43,193.72 485.43,186.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.21,193.72 485.21,186.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,186.65 485.62,186.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,186.43 485.02,186.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,186.43 485.02,186.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,186.65 485.62,186.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,193.94 485.62,193.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,193.72 485.02,193.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,193.72 485.02,193.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,193.94 485.62,193.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,194.38 485.02,201.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.43,201.68 485.43,194.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.21,201.68 485.21,194.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,194.38 485.62,201.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.62,201.9 485.62,201.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.62,201.68 485.02,201.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,201.68 485.02,201.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.02,201.9 485.62,201.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.95,194.38 485.95,201.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.95,186.43 485.95,193.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.42,186.43 311.42,193.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.42,194.38 311.42,201.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,178.69 311.75,178.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,178.47 312.36,178.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,178.47 312.36,178.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,178.69 311.75,178.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,201.9 311.75,201.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,201.68 312.36,201.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,201.68 312.36,201.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,201.9 311.75,201.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.95,201.68 311.95,194.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.17,201.68 312.17,194.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,194.38 312.36,201.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,178.47 311.26,178.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,185.99 311.75,185.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,185.77 312.36,185.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,185.77 312.36,185.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,185.99 311.75,185.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.95,185.77 311.95,178.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.17,185.77 312.17,178.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,178.47 312.36,185.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,178.47 311.75,185.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,185.99 312.36,185.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,178.47 312.36,178.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,193.94 311.75,193.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,193.72 312.36,193.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,193.72 312.36,193.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,193.94 311.75,193.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,186.65 311.75,186.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,186.43 312.36,186.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,186.43 312.36,186.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,186.65 311.75,186.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.95,193.72 311.95,186.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.17,193.72 312.17,186.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,186.43 312.36,193.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,186.43 311.75,193.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,193.94 312.36,193.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.26,186.43 311.26,185.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,186.43 312.36,185.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,186.43 312.36,186.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,186.43 312.36,185.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,194.61 311.75,194.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,194.38 312.36,194.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,194.38 312.36,194.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,194.61 311.75,194.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,194.38 312.36,193.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,194.38 312.36,194.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,194.38 312.36,193.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.26,194.38 311.26,193.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,186.43 311.26,186.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,185.99 311.26,185.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,193.94 311.26,193.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,194.38 311.26,194.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.42,212.06 311.42,219.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,212.06 311.75,219.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,220.02 311.75,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.42,220.02 311.42,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,204.33 311.75,204.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,204.11 312.36,204.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,204.11 312.36,204.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,204.33 311.75,204.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,220.02 311.75,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,220.02 312.36,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.95,227.31 311.95,220.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.17,227.31 312.17,220.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,227.53 311.75,227.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,227.31 312.36,227.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,227.31 312.36,227.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,227.53 311.75,227.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,220.02 311.26,220.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,219.58 311.26,219.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,211.62 311.26,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,212.06 311.26,212.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.42,212.06 311.42,219.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,204.11 311.26,204.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.26,220.02 311.26,219.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,220.02 312.36,219.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,220.02 312.36,220.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,220.24 311.75,220.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,220.02 312.36,220.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,220.02 312.36,220.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,220.24 311.75,220.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,212.06 312.36,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,212.06 312.36,212.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,212.06 312.36,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.26,212.06 311.26,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,219.58 312.36,219.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,212.06 311.75,219.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,212.06 312.36,219.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.95,219.36 311.95,212.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.17,219.36 312.17,212.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,212.29 311.75,212.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,212.06 312.36,212.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,212.06 312.36,212.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,212.29 311.75,212.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,219.58 311.75,219.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,219.36 312.36,219.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,219.36 312.36,219.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,219.58 311.75,219.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,204.11 312.36,204.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,211.62 312.36,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,204.11 311.75,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,204.11 312.36,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.95,211.4 311.95,204.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.17,211.4 312.17,204.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,211.62 311.75,211.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,211.4 312.36,211.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,211.4 312.36,211.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,211.62 311.75,211.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,237.26 311.75,237.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,237.04 312.36,237.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,237.04 312.36,237.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,237.26 311.75,237.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,229.96 311.75,229.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,229.74 312.36,229.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,229.74 312.36,229.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,229.96 311.75,229.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.95,237.04 311.95,229.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.17,237.04 312.17,229.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,229.74 312.36,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,229.74 311.75,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,237.26 312.36,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,229.74 312.36,229.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,245.21 311.75,244.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,244.99 312.36,244.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,244.99 312.36,245.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,245.21 311.75,245.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,237.92 311.75,237.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,237.7 312.36,237.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,237.7 312.36,237.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,237.92 311.75,237.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.95,244.99 311.95,237.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.17,244.99 312.17,237.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,237.7 312.36,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,237.7 311.75,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,245.21 312.36,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.26,237.7 311.26,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,237.7 312.36,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,237.7 312.36,237.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,237.7 312.36,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,253.17 311.75,252.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,252.95 312.36,252.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,252.95 312.36,253.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,253.17 311.75,253.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,245.88 311.75,245.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.75,245.66 312.36,245.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,245.66 312.36,245.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,245.88 311.75,245.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="311.95,252.95 311.95,245.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.17,252.95 312.17,245.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.36,245.66 312.36,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,245.66 311.75,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,253.17 312.36,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,245.66 312.36,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,245.66 312.36,245.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,245.66 312.36,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.26,245.66 311.26,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,253.17 311.75,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.42,178.47 311.42,185.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,201.9 312.64,178.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,227.53 312.64,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.42,204.11 311.42,211.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,178.03 311.26,178.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,178.47 311.26,178.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.26,178.03 311.26,178.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,178.47 312.64,178.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,176.43 313.41,176.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,178.31 312.64,178.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,203.94 312.64,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,202.06 312.64,202.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,204.11 312.64,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,202.06 312.64,201.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.59,202.34 311.59,203.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.59,202.34 311.26,202.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,201.9 311.26,201.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.26,202.34 311.26,201.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.26,203.67 311.26,204.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,204.11 311.26,204.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.59,203.67 311.26,203.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.42,229.74 311.42,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.59,229.3 311.26,229.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,229.74 311.26,229.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.26,229.3 311.26,229.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.26,227.98 311.26,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,227.53 311.26,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.59,227.98 311.26,227.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.42,237.7 311.42,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,237.7 311.26,237.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,237.26 311.26,237.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.42,245.66 311.42,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,253.61 312.36,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,253.17 312.64,229.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.42,253.61 311.42,254.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.65,256.24 310.65,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,254.05 312.64,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,253.17 311.75,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.59,227.98 311.59,229.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,227.7 312.64,227.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,229.74 312.64,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,227.7 312.64,227.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,229.58 312.64,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,253.61 312.36,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.26,253.61 311.26,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,253.61 311.26,253.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,253.17 311.26,253.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,245.21 311.26,245.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.36,245.66 311.26,245.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.68,254.05 312.64,254.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.01,254.52 310.68,254.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.68,255.63 310.46,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.46,255.63 310.46,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.46,254.97 310.68,254.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.68,254.97 310.68,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="310.68,255.63 310.68,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.01,255.63 310.68,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.01,254.52 311.01,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.68,254.52 310.68,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.42,254.83 311.01,254.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,194.38 311.75,201.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="311.75,170.74 311.75,178.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.68,256.24 314.68,254.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.41,176.43 313.41,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.2,172.06 312.2,176.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,172.06 312.64,176.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.78,183.56 484.41,183.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.57,186.43 484.57,185.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.89,185.54 484.57,185.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.89,184.88 482.89,185.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.56,184.88 482.89,184.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.02,186.43 484.57,186.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.95,177.95 486.13,177.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.95,178.45 486.13,178.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.95,170.49 485.95,177.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.95,178.45 485.95,185.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.73,172.17 458.56,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.47,170.49 482.47,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.92,170.49 482.92,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.56,171.4 458.56,178.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.78,172.06 459.78,178.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.78,172.06 484.41,172.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.66,185.99 484.57,185.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.44,186.21 479.44,184.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.66,185.99 479.66,184.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.44,186.21 484.57,186.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.95,170.49 482.92,170.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.43,170.29 322.87,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.43,170.4 314.9,170.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.4,170.4 322.87,170.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.37,170.29 338.81,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.37,170.4 330.84,170.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.84,170.29 330.4,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.34,170.4 338.81,170.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.46,170.4 348.94,170.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.46,170.29 356.91,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.43,170.29 364.88,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.4,170.29 372.85,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.4,170.4 364.88,170.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.5,170.29 390.94,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.37,170.4 372.85,170.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.47,170.29 398.91,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.47,170.4 390.94,170.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.5,170.4 382.97,170.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.44,170.29 406.88,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.44,170.4 398.91,170.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.41,170.4 406.88,170.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.53,170.29 424.97,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.5,170.29 432.94,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.53,170.4 417,170.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.5,170.4 424.97,170.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.53,170.29 466.98,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.47,170.4 432.94,170.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.47,170.29 440.91,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.44,170.4 440.91,170.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.56,170.4 451.04,170.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.5,170.29 474.95,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.53,170.49 458.56,170.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.5,170.49 466.98,170.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.47,170.49 474.95,170.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.56,170.29 459.01,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.13,177.95 486.13,178.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.47,170.29 482.92,170.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.41,172.06 484.41,183.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.01,170.29 459.01,170.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.56,170.49 458.56,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,172.06 312.2,172.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.64,176.43 312.2,176.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.41,202.06 313.41,178.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.41,227.7 313.41,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.13,389.08 298.13,383.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.3,389.08 298.3,383.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.44,369.96 504.49,370.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="504.49,370.67 505.23,369.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="505.23,369.79 505.77,372.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="505.77,372.03 506.5,371.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="506.5,371.14 509.22,371.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="512.31,409.3 512.31,409.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,409.08 511.65,409.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,409.08 511.65,409.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,409.3 512.31,409.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,409.08 511.65,414.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,409.08 512.31,414.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,414.94 512.31,414.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,414.72 511.65,414.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,414.72 511.65,414.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,414.94 512.31,414.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.37,434.28 511.65,434.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.37,434.44 511.65,434.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,428.53 512.31,434.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,434.69 506.15,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,434.03 511.65,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,434.03 512.31,434.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.9,428.75 511.9,434.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.05,428.75 512.05,434.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.55,434.02 297.89,434.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,434.02 298.55,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.86,435.13 297.86,434.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.19,435.13 298.19,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.44,434.71 297.86,434.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.44,434.38 297.89,434.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,434.38 297.89,434.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,434.69 298.19,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,434.69 304.05,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.55,434.02 304.05,434.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,434.02 297.89,428.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.14,428.75 298.14,434.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.3,428.75 298.3,434.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.83,434.27 298.55,434.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.83,434.43 298.55,434.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,255.63 512.31,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,255.63 511.65,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.34,254.52 512.34,254.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512,254.52 512,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,254.93 512.34,254.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,255.27 512.31,255.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,255.27 512.31,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,254.96 512,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,254.96 506.15,254.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,255.63 506.15,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.37,255.21 511.65,255.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.37,255.37 511.65,255.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.9,260.9 511.9,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.06,260.9 512.06,255.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,254.97 285.37,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,255.27 285.07,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,255.27 285.07,255.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,254.94 285.04,254.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.37,254.52 285.37,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,254.52 285.04,254.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,255.63 285.73,254.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,255.63 285.07,255.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.32,260.9 285.32,255.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,260.9 285.48,255.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.01,255.22 285.95,255.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.01,255.38 285.95,255.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.7,435.13 486.37,435.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.52,435.13 499.19,435.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.34,435.13 512,435.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,434.39 512.75,434.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,408.75 512.75,409.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,395.93 512.75,396.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,383.12 512.75,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,370.3 512.75,370.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.7,357.48 512.7,357.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.34,254.52 512,254.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,255.27 512.75,254.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,254.52 285.37,254.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,255.27 284.63,254.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.44,434.38 297.44,434.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.86,435.13 298.19,435.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="465.26,178.47 471.67,178.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="465.26,177.14 480,177.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="465.08,176.98 480.17,176.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="465.08,178.64 471.75,178.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="467.58,178.64 467.58,183.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="468.8,178.64 468.8,183.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="470.01,178.64 470.01,183.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="471.23,178.64 471.23,183.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="472.44,180.94 472.44,183.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="473.66,178.64 473.66,180.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="474.87,178.64 474.87,180.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.09,178.64 476.09,183.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="477.3,178.64 477.3,183.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="480,177.14 480,178.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="480.17,176.98 480.17,178.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="480.6,181.1 480.6,174.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="480.6,174.59 463.95,174.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.6,180.09 476.1,181.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.1,181.1 476.6,182.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.86,180.09 476.35,181.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.35,181.1 476.86,182.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.86,180.09 476.6,180.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.86,182.11 476.6,182.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M476.86 180.09L476.6 180.09 476.1 181.1 476.35 181.1 476.86 180.09Z" fill-rule="evenodd" fill="blue"/>
+<path d="M476.86 182.11L476.6 182.11 476.1 181.1 476.35 181.1 476.86 182.11Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="480.6,181.1 476.08,181.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.37,356.71 480.02,356.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,376.49 511.04,377.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,364.44 511.04,376.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.33,433.42 505.37,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.16,415.71 299.16,427.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.16,402.89 299.16,414.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.16,390.08 299.16,402.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,383.5 511.04,389.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.47,383.01 489.3,383.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,287.53 511.04,299.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.33,256.23 505.37,256.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.08,358.59 485.08,331.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,281.68 322.89,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.94,318.53 323.94,312.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.94,296.32 328.83,296.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.94,297.2 327.94,297.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,306.26 322.89,306.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.16,305.38 322.89,305.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.94,311.79 327.94,311.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.94,312.67 327.94,312.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.34,322.42 318.84,322.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="312.67,279.8 312.67,297.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.16,281.68 314.16,293" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.94,318.53 327.94,318.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.94,311.79 323.94,306.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.94,306.26 327.94,306.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.94,305.38 323.94,297.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.94,305.38 327.94,305.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.94,296.32 323.94,290.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.89,306.26 322.89,318.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.89,281.68 322.89,284.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.89,280.46 322.89,281.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.94,318.53 327.94,316.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.83,319.41 328.83,316.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.94,305.38 327.94,305.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.94,311.79 327.94,310.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.83,314.47 327.94,314.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.83,316.9 327.94,316.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.83,314.47 328.83,310.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.94,314.47 327.94,312.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.94,310.3 328.83,310.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.94,307.81 328.83,307.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.83,307.81 328.83,305.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.94,307.81 327.94,306.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.16,293.45 322.89,293.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.16,293 322.89,293" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.16,293.45 314.16,297.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.89,293.45 322.89,305.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,280.46 322.89,280.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,281.02 322.89,281.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.94,284.36 323.94,279.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.89,290.32 322.89,293" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.16,297.23 312.67,297.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.16,301.65 312.67,301.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.16,301.65 314.16,305.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.67,301.65 312.67,328.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.89,284.36 323.94,284.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.89,290.32 323.94,290.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,279.8 323.94,279.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,280.57 284.63,280.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,293.39 284.63,293.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,306.21 284.63,306.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,306.76 285.07,306.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,306.54 285.73,306.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,306.54 285.73,306.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,306.76 285.07,306.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,306.54 285.07,312.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,306.54 285.73,312.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,306.54 285.73,306.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,306.54 285.07,306.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,306.21 285.07,305.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,305.99 285.73,305.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,305.99 285.73,306.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,306.21 285.07,306.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,300.44 285.07,306.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,300.35 285.73,306.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,306.21 285.07,306.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,306.21 285.07,306.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,306.21 285.73,306.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,293.94 285.07,293.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,293.72 285.73,293.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,293.72 285.73,293.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,293.94 285.07,293.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,293.72 285.07,299.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,293.72 285.73,299.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,293.72 285.73,293.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,293.72 285.07,293.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,293.39 285.07,293.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,293.17 285.73,293.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,293.17 285.73,293.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,293.39 285.07,293.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,287.76 285.07,287.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,287.53 285.73,287.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,287.53 285.73,287.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,287.76 285.07,287.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,287.53 285.07,293.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,287.53 285.73,293.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,293.39 285.07,293.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,293.39 285.07,293.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,293.39 285.73,293.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,293.39 285.73,293.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,286.76 285.07,286.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,286.54 285.73,286.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,286.54 285.73,286.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,286.76 285.07,286.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,281.13 285.07,280.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,280.9 285.73,280.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,280.9 285.73,281.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,281.13 285.07,281.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,280.9 285.07,286.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,280.9 285.73,286.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,280.9 285.73,280.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,280.9 285.07,280.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,280.57 285.07,280.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,280.35 285.73,280.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,280.35 285.73,280.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,280.57 285.07,280.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,274.94 285.07,274.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,274.72 285.73,274.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,274.72 285.73,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,274.94 285.07,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.32,280.35 285.32,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,280.35 285.48,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,274.72 285.07,280.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,274.72 285.73,280.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,280.57 285.07,280.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,280.57 285.07,280.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,280.57 285.73,280.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,280.57 285.73,280.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,306.54 285.73,306.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,306.21 285.73,306.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,293.39 285.73,293.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,293.72 285.73,293.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,287.62 284.41,286.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,280.9 285.73,280.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,280.57 285.73,280.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.32,268.31 285.32,273.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,268.31 285.48,273.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.63,319.36 285.73,319.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,319.03 285.73,319.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,326.07 284.41,325.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,319.03 285.73,319.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,319.03 285.73,319.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,319.03 285.07,319.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,319.03 285.07,319.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,313.17 285.73,319.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,313.25 285.07,319.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,319.03 285.07,318.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,318.81 285.73,318.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,318.81 285.73,319.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,319.03 285.07,319.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,319.36 285.07,319.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,319.36 285.73,319.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,319.36 285.73,325.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,319.36 285.07,325.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,319.58 285.07,319.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,319.36 285.73,319.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,319.36 285.73,319.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,319.58 285.07,319.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.63,319.03 284.63,319.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,287.62 284.41,286.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.32,281.13 285.32,286.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,281.13 285.48,286.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.32,287.76 285.32,293.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,287.76 285.48,293.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,299.36 285.73,299.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,300.57 285.73,300.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,299.58 285.07,299.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,299.36 285.73,299.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,299.36 285.73,299.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,299.58 285.07,299.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,300.57 285.07,300.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,300.35 285.73,300.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,300.35 285.73,300.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,300.57 285.07,300.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,293.94 285.48,299.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.32,293.94 285.32,299.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.32,300.57 285.32,305.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,300.57 285.48,305.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,313.39 285.07,313.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,313.17 285.73,313.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,313.17 285.73,313.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,313.39 285.07,313.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,312.4 285.07,312.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,312.18 285.73,312.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,312.18 285.73,312.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,312.4 285.07,312.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.32,306.76 285.32,312.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,306.76 285.48,312.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.32,313.39 285.32,318.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,313.39 285.48,318.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.41,326.07 284.41,325.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,324.99 285.73,325.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,326.07 284.41,325.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,325.21 285.07,324.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,324.99 285.73,324.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,324.99 285.73,325.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,325.21 285.07,325.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.41,326.07 284.41,325.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.32,319.58 285.32,324.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,319.58 285.48,324.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,370.85 285.48,376.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.32,370.85 285.32,376.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,364.66 285.48,370.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.32,364.66 285.32,370.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,358.03 285.48,363.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.32,358.03 285.32,363.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,363.45 285.73,363.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,364.66 285.73,364.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,363.67 285.07,363.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,363.45 285.73,363.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,363.45 285.73,363.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,363.67 285.07,363.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,364.66 285.07,364.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,364.44 285.73,364.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,364.44 285.73,364.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,364.66 285.07,364.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,351.84 285.48,357.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.32,351.84 285.32,357.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,351.84 285.73,351.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,350.63 285.73,350.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,370.3 284.63,370.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,370.85 285.07,370.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,370.63 285.73,370.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,370.63 285.73,370.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,370.85 285.07,370.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,370.63 285.07,376.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,370.63 285.73,376.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,370.63 285.73,370.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,370.63 285.07,370.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,370.3 285.07,370.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,370.08 285.73,370.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,370.08 285.73,370.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,370.3 285.07,370.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,364.44 285.07,370.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,364.44 285.73,370.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,370.3 285.07,370.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,370.3 285.07,370.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,370.3 285.73,370.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,370.3 285.73,370.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,370.3 285.73,370.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,370.63 285.73,370.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,357.48 285.73,357.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,357.81 285.73,357.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,357.48 285.73,357.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,357.48 285.07,357.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,357.48 285.07,357.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,351.71 285.73,357.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,351.71 285.07,357.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,357.48 285.07,357.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,357.26 285.73,357.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,357.26 285.73,357.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,357.48 285.07,357.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,357.81 285.07,357.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,357.81 285.73,357.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,357.81 285.73,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,357.81 285.07,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,358.03 285.07,357.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,357.81 285.73,357.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,357.81 285.73,358.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,358.03 285.07,358.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.63,357.48 284.63,357.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.44,279.99 303.44,266.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.71,280.27 303.71,266.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.44,259.33 303.44,256.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.31,280.27 303.71,280.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.41,279.99 303.44,279.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.41,279.99 296.41,280.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.71,259.61 303.71,256.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.41,275.14 293.17,273.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.17,273.56 293.16,272.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.16,272.4 291.33,273.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.33,273.8 291.32,272.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.32,272.65 288.78,271.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.42,273.53 293.65,272.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.65,272.18 293.64,271.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.64,271.03 291.81,272.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.81,272.43 291.8,271.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.8,271.28 289.13,269.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="289.41,271.72 289.41,286.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="289.13,271.58 289.13,286.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="290.63,272.31 289.41,272.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.96,272.31 291.81,272.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.31,275.09 296.31,286.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,274.95 296.04,286.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.11,266.24 302.11,259.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.33,266.24 303.33,259.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.58,286.56 292.58,279.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M293.59 280.52L293.59 280.26 292.58 279.76 292.58 280.01 293.59 280.52Z" fill-rule="evenodd" fill="blue"/>
+<path d="M291.57 280.52L291.57 280.26 292.58 279.76 292.58 280.01 291.57 280.52Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="293.59,280.52 293.59,280.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.57,280.52 291.57,280.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.58,280.01 293.59,280.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.57,280.52 292.58,280.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.58,279.76 293.59,280.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.57,280.26 292.58,279.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="304.37,262.83 292.72,262.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="303.44,256.46 303.71,256.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="512.45,357.48 512.45,357.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.71,357.83 484.71,358.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.3,358.59 485.3,362.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.19,362.56 486.24,362.45 487.23,362.07 488.08,361.44 488.73,360.61 489.14,359.63 489.28,358.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.43,358.59 485.43,362.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.43,358.59 485.43,358.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.3,358.59 485.43,358.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.28,358.59 489.5,358.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.5,358.59 489.5,357.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.5,357.84 489.28,357.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.28,357.84 489.28,358.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.08,358.59 485.3,358.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.3,358.59 485.3,357.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.3,357.84 485.08,357.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.08,357.84 485.08,358.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.29,358.59 491.29,361.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="491.56,358.59 491.56,361.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="491.56,368.64 491.56,372.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="491.29,368.36 491.29,372.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="491.56,379.19 491.56,382.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="491.29,379.19 491.29,382.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="501.78,372.29 508.41,372.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="501.78,368.36 508.41,368.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="504.7,369.58 504.73,369.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="501.78,371.07 505.54,371.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="501.21,368.76 504.72,369.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="504.72,369.58 505.46,368.7" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="505.46,368.7 505.99,370.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="505.99,370.94 506.73,370.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="506.73,370.05 508.95,370.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="501.78,370.05 501.78,372.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="501.51,369.92 501.51,372.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="508.41,371.59 508.41,378.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="508.69,379.19 508.69,371.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="495.71,368.36 495.71,361.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="494.49,368.36 494.49,361.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="493.27,368.36 493.27,361.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="492.06,368.36 492.06,361.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="490.84,368.36 490.84,361.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="505.67,369.58 508.41,369.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="505.08,364.91 489.64,364.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="506.09,368.73 505.08,369.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="505.08,369.23 504.07,368.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="506.09,368.47 505.08,368.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="505.08,368.98 504.07,368.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="506.09,368.47 506.09,368.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="504.07,368.47 504.07,368.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M506.09 368.47L506.09 368.73 505.08 369.23 505.08 368.98 506.09 368.47Z" fill-rule="evenodd" fill="blue"/>
+<path d="M504.07 368.47L504.07 368.73 505.08 369.23 505.08 368.98 504.07 368.47Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="505.08,364.91 505.08,369.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="503.97,371.88 504.98,371.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="504.98,371.37 505.99,371.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="503.97,372.13 504.98,371.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="504.98,371.63 505.99,372.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="503.97,372.13 503.97,371.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="505.99,372.13 505.99,371.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M503.97 372.13L503.97 371.88 504.98 371.37 504.98 371.63 503.97 372.13Z" fill-rule="evenodd" fill="blue"/>
+<path d="M505.99 372.13L505.99 371.88 504.98 371.37 504.98 371.63 505.99 372.13Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="504.98,375.68 504.98,371.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="511.04,428.53 511.04,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="465.08,176.98 465.08,177.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="465.42,172.06 465.42,176.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="466.63,172.06 466.63,176.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="467.85,172.06 467.85,176.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="469.06,172.06 469.06,176.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="470.28,172.06 470.28,176.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="471.49,172.06 471.49,176.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="472.71,172.06 472.71,176.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="465.08,177.14 465.08,178.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="465.26,177.14 465.26,178.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M470.24 180.12L470.49 180.12 471 181.13 470.74 181.13 470.24 180.12Z" fill-rule="evenodd" fill="blue"/>
+<path d="M470.24 182.14L470.49 182.14 471 181.13 470.74 181.13 470.24 182.14Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="470.24,180.12 470.49,180.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="470.24,182.14 470.49,182.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="470.74,181.13 470.24,180.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="470.24,182.14 470.74,181.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="471,181.13 470.49,180.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="470.49,182.14 471,181.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="471.63,178.4 472.4,180.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="472.4,180.02 471.7,180.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="471.7,180.93 474,180.97" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="474,180.97 473.29,181.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="473.29,181.88 474.09,183.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="473,178.47 473.49,179.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="473.49,179.5 472.78,180.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="472.78,180.41 475.08,180.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.08,180.45 474.37,181.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="474.37,181.36 475.42,183.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="473.08,178.64 480.17,178.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="473,178.47 480,178.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="474.87,180.72 474.87,182.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="473.92,172.06 473.92,176.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.14,172.06 475.14,176.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.35,172.06 476.35,176.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="477.57,172.06 477.57,176.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="478.79,172.06 478.79,176.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="473.66,180.97 473.66,181.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="473.66,182.65 473.66,183.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="462.62,173.65 462.62,174.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="462.62,174.28 462.53,174.15 462.44,174.09 462.29,174.09 462.2,174.15 462.1,174.28 462.06,174.47 462.06,174.6 462.1,174.79 462.2,174.91 462.29,174.98 462.44,174.98 462.53,174.91 462.62,174.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="462.96,174.98 462.96,174.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="462.96,174.34 463.1,174.15 463.19,174.09 463.34,174.09 463.43,174.15 463.48,174.34 463.48,174.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="463.9,174.85 463.86,174.91 463.9,174.98 463.95,174.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="464.38,180.84 464.38,181.47 464.43,181.66 464.52,181.72 464.66,181.72 464.76,181.66 464.9,181.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="464.9,180.84 464.9,181.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="465.28,180.84 465.28,182.16" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="465.28,181.03 465.37,180.9 465.47,180.84 465.61,180.84 465.71,180.9 465.8,181.03 465.85,181.21 465.85,181.34 465.8,181.53 465.71,181.66 465.61,181.72 465.47,181.72 465.37,181.66 465.28,181.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="466.41,181.13 471.01,181.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.84,287.14 291.84,287.77 291.88,287.96 291.98,288.03 292.12,288.03 292.22,287.96 292.36,287.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.36,287.14 292.36,288.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.74,287.14 292.74,288.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="292.74,287.33 292.83,287.21 292.93,287.14 293.07,287.14 293.16,287.21 293.26,287.33 293.3,287.52 293.3,287.65 293.26,287.84 293.16,287.96 293.07,288.03 292.93,288.03 292.83,287.96 292.74,287.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.74,261.94 305.74,263.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.74,262.57 305.64,262.44 305.55,262.38 305.41,262.38 305.31,262.44 305.22,262.57 305.17,262.76 305.17,262.88 305.22,263.07 305.31,263.2 305.41,263.26 305.55,263.26 305.64,263.2 305.74,263.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.07,263.26 306.07,262.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="306.07,262.63 306.21,262.44 306.31,262.38 306.45,262.38 306.54,262.44 306.59,262.63 306.59,263.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="307.02,263.14 306.97,263.2 307.02,263.26 307.06,263.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,284.47 289.41,284.47" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="296.04,285.68 289.41,285.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="313.41,254.05 313.41,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.55,264.39 323.73,264.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.67,271.73 312.67,270.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.33,265.05 323.73,265.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.67,227.7 314.54,227.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.67,229.58 314.54,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,176.43 314.54,178.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.55,264.39 313.55,263.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.33,271.07 313.33,270.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.39,268.42 332.35,268.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.33,271.07 320.19,271.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.39,267.76 332.35,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.68,254.44 338.98,254.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.67,271.73 338.98,271.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.68,255.1 338.31,255.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,307.31 314.54,318.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,318.53 322.89,318.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="310.68,434.02 310.68,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="464.66,383.72 462.38,383.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="464.66,384.22 462.38,384.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="465.32,358.59 465.32,356.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="464.66,358.59 464.66,355.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.29,355.82 471.29,331.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.94,338.14 482.94,339.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.94,339.91 484.6,339.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.6,338.14 484.6,339.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.99,356.71 483.99,339.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.71,279.8 484.71,281.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,306.21 512.75,306.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,319.03 512.31,318.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,318.81 511.65,318.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,318.81 511.65,319.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,319.03 512.31,319.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,313.39 512.31,313.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,313.17 511.65,313.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,313.17 511.65,313.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,313.39 512.31,313.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.06,318.81 512.06,313.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,318.81 511.89,313.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,313.17 512.31,319.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,313.17 511.65,319.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,313.17 512.31,313.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,312.4 512.31,312.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,312.18 511.65,312.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,312.18 511.65,312.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,312.4 512.31,312.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,306.76 512.31,306.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,306.54 511.65,306.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,306.54 511.65,306.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,306.76 512.31,306.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.06,312.18 512.06,306.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,312.18 511.89,306.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,306.54 512.31,312.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,306.54 511.65,312.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,312.4 512.31,312.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,306.54 511.65,306.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,306.54 512.31,306.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,306.21 512.31,305.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,305.99 511.65,305.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,305.99 511.65,306.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,306.21 512.31,306.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,300.57 512.31,300.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,300.35 511.65,300.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,300.35 511.65,300.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,300.57 512.31,300.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.06,305.99 512.06,300.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,305.99 511.89,300.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,300.35 512.31,306.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,300.35 511.65,306.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,306.21 512.31,306.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,300.35 512.31,300.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,306.21 512.31,306.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,306.21 511.65,306.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,306.21 511.65,306.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,299.58 512.31,299.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,299.36 511.65,299.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,299.36 511.65,299.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,299.58 512.31,299.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,299.58 512.31,299.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,313.25 512.97,312.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,313.25 512.31,313.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,312.31 512.31,312.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,306.21 511.65,306.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,306.54 511.65,306.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,299.5 512.31,299.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,300.44 512.31,300.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,300.44 512.97,299.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,300.35 511.04,299.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,299.58 511.04,299.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,300.35 511.04,300.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,313.17 511.04,312.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,313.17 511.04,313.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,312.4 511.04,312.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,319.03 512.31,319.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,319.03 512.31,318.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,318.81 511.65,318.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,318.81 511.65,319.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,319.03 512.31,319.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,319.03 512.31,319.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,331.84 512.31,331.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,331.84 512.31,331.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,331.62 511.65,331.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,331.62 511.65,331.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,331.84 512.31,331.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,331.84 512.31,331.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,319.36 511.65,319.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,319.03 511.65,319.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,325.13 512.31,325.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,326.07 512.31,326.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,326.07 512.97,325.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,319.03 511.65,319.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,319.03 511.65,319.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,319.03 512.31,319.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,319.03 512.31,319.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,319.03 512.31,318.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,318.81 511.65,318.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,318.81 511.65,319.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,319.03 512.31,319.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,319.36 512.31,319.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,319.36 511.65,319.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,325.21 512.31,325.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,319.36 511.65,325.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,319.36 512.31,325.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.06,324.99 512.06,319.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,324.99 511.89,319.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,319.58 512.31,319.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,319.36 511.65,319.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,319.36 511.65,319.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,319.58 512.31,319.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,325.21 512.31,324.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,324.99 511.65,324.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,324.99 511.65,325.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,325.21 512.31,325.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,325.99 512.31,325.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,325.99 511.65,331.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,325.99 512.31,331.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.06,331.62 512.06,326.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,331.62 511.89,326.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,326.21 512.31,325.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,325.99 511.65,325.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,325.99 511.65,326.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,326.21 512.31,326.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,331.84 512.31,331.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,331.62 511.65,331.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,331.62 511.65,331.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,331.84 512.31,331.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.75,319.03 512.75,319.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,325.21 511.04,325.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,325.99 511.04,325.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,325.99 511.04,325.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.98,375.33 487.98,375.96 488.02,376.15 488.12,376.22 488.26,376.22 488.35,376.15 488.5,375.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="488.5,375.33 488.5,376.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="488.88,375.33 488.88,376.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="488.88,375.52 488.97,375.4 489.06,375.33 489.21,375.33 489.3,375.4 489.4,375.52 489.44,375.71 489.44,375.84 489.4,376.03 489.3,376.15 489.21,376.22 489.06,376.22 488.97,376.15 488.88,376.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="487.95,364.08 487.95,365.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="487.95,364.71 487.86,364.58 487.76,364.52 487.62,364.52 487.53,364.58 487.43,364.71 487.39,364.9 487.39,365.02 487.43,365.21 487.53,365.34 487.62,365.4 487.76,365.4 487.86,365.34 487.95,365.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="488.29,365.4 488.29,364.52" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="488.29,364.77 488.43,364.58 488.52,364.52 488.66,364.52 488.76,364.58 488.81,364.77 488.81,365.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="489.23,365.28 489.19,365.34 489.23,365.4 489.28,365.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="459.78,183.36 459.78,183.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.56,183.36 458.56,184.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.78,178.94 458.56,178.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.78,183.36 458.56,183.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.78,183.14 463.76,183.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.76,183.26 463.65,182.21 463.27,181.22 462.64,180.37 461.81,179.72 460.83,179.3 459.78,179.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.78,183.02 463.75,183.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.78,183.02 459.78,183.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.78,183.14 459.78,183.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.78,179.16 459.78,178.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.78,178.94 458.56,178.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458.56,178.94 458.56,179.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458.56,179.16 459.78,179.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.78,183.36 459.78,183.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.78,183.14 458.56,183.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458.56,183.14 458.56,183.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458.56,183.36 459.78,183.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="450.68,253.13 450.68,245.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.01,252.47 450.01,246.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.68,253.13 440.22,253.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.22,253.13 440.22,245.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.89,252.47 440.89,246.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.01,252.47 440.89,252.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.01,246.5 440.89,246.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.68,245.84 440.22,245.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="464.6,358.59 464.6,362.02" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="512.06,409.3 512.06,414.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,409.3 511.89,414.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.63,344.66 284.63,344.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,345.21 285.07,344.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,344.99 285.73,344.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,344.99 285.73,345.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,345.21 285.07,345.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,344.99 285.73,344.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,344.99 285.07,344.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,344.66 285.07,344.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,344.44 285.73,344.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,344.44 285.73,344.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,344.66 285.07,344.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,338.81 285.73,344.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,344.66 285.07,344.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,344.66 285.07,344.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,344.66 285.73,344.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,344.99 285.73,344.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,344.66 285.73,344.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,339.03 285.73,338.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,339.03 285.07,338.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,338.81 285.73,338.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,338.81 285.73,339.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,339.03 285.07,339.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.32,339.03 285.32,344.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,339.03 285.48,344.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,344.99 285.07,350.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,344.99 285.73,350.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.32,345.21 285.32,350.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,345.21 285.48,350.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,338.03 285.07,337.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,337.81 285.73,337.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,337.81 285.73,338.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,338.03 285.07,338.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,332.4 285.48,337.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.32,332.4 285.32,337.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,332.18 285.73,338.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,332.18 285.07,337.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.48,326.21 285.48,331.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.32,326.21 285.32,331.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,326.21 285.07,325.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,325.99 285.73,325.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,325.99 285.73,326.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,326.21 285.07,326.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.63,331.84 285.73,331.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,332.18 285.73,332.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,331.84 285.73,332.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,331.84 285.07,331.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,331.84 285.07,331.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,325.99 285.73,331.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,325.99 285.07,331.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,331.84 285.07,331.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,331.62 285.73,331.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,331.62 285.73,331.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,331.84 285.07,331.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,332.18 285.07,332.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,332.18 285.73,331.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,332.4 285.07,332.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,332.18 285.73,332.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,332.18 285.73,332.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,332.4 285.07,332.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.63,331.84 284.63,332.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,305.44 287.03,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.91,305.44 288.91,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,307.31 288.91,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,305.44 288.91,305.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,351.71 285.07,351.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,350.77 285.07,350.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,351.62 286.34,351.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,350.85 286.34,350.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,350.85 285.07,350.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,350.63 285.73,350.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,350.85 285.07,350.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,350.85 285.07,350.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,350.63 285.73,350.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,351.62 285.73,351.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,351.62 285.73,351.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,351.84 285.07,351.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,351.84 285.07,351.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,351.62 285.73,351.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.34,363.67 286.34,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,363.67 286.34,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,364.44 286.34,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,363.59 285.07,363.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,364.52 285.07,364.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,363.59 285.07,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,364.44 285.07,364.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,338.81 285.73,338.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,338.03 286.34,338.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,338.03 286.34,338.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,338.81 286.34,338.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,337.95 285.07,337.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,338.89 285.07,338.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,338.81 285.07,338.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,338.81 285.07,344.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,325.99 285.07,326.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,325.13 285.07,325.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,326.07 284.41,325.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,326.07 284.41,325.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,326.07 285.07,326.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,325.13 285.07,325.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,325.99 286.34,325.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,325.21 286.34,325.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,325.21 286.34,325.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,313.39 285.73,313.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,312.4 286.34,312.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,313.17 286.34,313.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,312.31 285.07,312.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,313.25 285.07,313.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,312.31 285.07,312.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,313.17 285.07,313.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,299.58 286.34,300.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,299.58 286.34,299.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,300.35 286.34,300.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,299.5 285.07,299.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,300.44 285.07,300.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,299.5 285.07,299.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,300.35 285.07,300.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,287.62 284.41,286.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,287.62 284.41,286.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,287.62 284.41,286.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,287.62 284.41,286.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,287.53 285.07,287.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,286.68 285.07,286.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,287.62 284.41,286.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,287.62 284.41,286.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,287.62 285.07,287.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,286.68 285.07,286.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,286.68 284.41,287.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,287.53 286.39,287.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,286.76 286.39,286.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.39,286.76 286.39,287.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,287.62 284.41,286.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,287.62 284.41,286.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.32,377.48 285.32,382.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.48,377.48 285.48,382.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,383.12 285.07,382.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,382.79 285.07,377.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,382.79 285.73,377.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,382.79 285.07,382.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,382.79 285.73,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,383.89 285.37,383.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.04,383.89 285.04,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.37,383.89 285.37,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,383.45 285.04,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,383.12 285.07,383.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,383.45 299.15,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.26,383.45 285.71,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.04,383.2 285.73,383.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.25,383.45 292.03,383.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.03,383.45 292.03,382.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.03,382.79 292.25,382.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.25,382.79 292.25,383.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.03,382.79 292.03,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.26,383.45 291.04,383.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.04,383.45 291.04,382.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.04,382.79 291.26,382.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.26,382.79 291.26,383.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.26,383.45 291.26,382.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.03,383.45 297.89,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.03,382.79 297.89,382.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.89,383.45 297.67,383.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.67,383.45 297.67,382.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.67,382.79 297.89,382.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.89,382.79 297.89,383.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.67,383.2 292.25,383.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="297.67,383.03 292.25,383.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.03,383.45 292.03,382.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.26,383.45 291.26,382.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.03,382.18 291.26,382.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.04,383.04 285.73,383.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.71,382.79 291.26,382.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.14,384.09 292.14,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.88,383.45 297.88,382.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.63,383.12 284.63,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,383.45 285.37,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,274.8 284.41,273.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,274.8 284.41,273.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,274.8 284.41,273.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,273.94 286.34,274.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,273.94 286.34,273.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,274.72 286.34,274.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,273.86 284.41,274.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,273.86 285.07,273.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,274.8 285.07,274.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,274.8 284.41,273.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,274.8 284.41,273.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,273.86 285.07,273.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,274.72 285.07,274.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,274.8 284.41,273.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,274.8 284.41,273.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,274.8 284.41,273.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,274.8 284.41,273.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,274.94 285.07,274.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,274.72 285.73,274.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,274.72 285.73,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,274.94 285.07,274.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,377.26 285.07,377.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,376.4 285.07,376.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,377.34 285.07,377.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,376.4 285.07,376.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,377.26 286.34,377.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,376.49 286.34,376.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,376.49 286.34,377.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.07,377.48 285.07,377.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,377.26 285.73,377.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,377.26 285.73,377.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,377.48 285.07,377.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,376.49 285.07,376.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.07,376.26 285.73,376.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,376.26 285.73,376.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="285.73,376.49 285.07,376.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.41,299.5 284.41,300.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,312.31 284.41,313.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,337.95 284.41,338.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,350.77 284.41,351.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,363.59 284.41,364.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.41,376.4 284.41,377.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="287.03,401.85 287.03,403.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.3,426.13 314.3,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.74,425.69 314.74,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.38,418.59 313.38,419.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.72,417.92 312.72,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.38,425.69 314.74,425.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.38,426.13 314.3,426.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.38,426.13 313.38,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.72,417.92 338.78,417.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.38,418.59 315.81,418.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.2,418.59 324.2,421.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.86,418.59 324.86,421.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.15,418.59 332.15,421.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.82,418.59 332.82,425.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.12,418.59 338.12,419.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.78,417.92 338.78,419.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.86,421.24 332.15,421.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.2,421.9 332.15,421.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.86,418.59 332.15,418.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.82,418.59 338.12,418.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.15,421.9 332.15,429.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.82,425.22 333.26,425.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.82,425.88 333.26,425.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.15,429.3 332.82,429.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.82,425.88 332.82,429.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.12,425.88 338.12,434.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.38,419.8 315.81,419.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="315.81,418.59 315.81,419.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="316.04,418.59 316.04,420.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.38,420.02 316.04,420.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.38,420.02 313.38,425.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="316.04,418.59 324.2,418.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.12,434.55 338.35,434.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.35,434.55 338.35,435.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.12,423.7 338.12,425.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.78,423.7 338.78,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.12,419.28 338.78,419.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.12,423.7 338.78,423.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.12,419.51 334.14,419.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.15,419.39 334.25,420.44 334.64,421.43 335.27,422.28 336.1,422.93 337.07,423.34 338.12,423.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.12,419.63 334.15,419.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.12,419.63 338.12,419.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.12,419.51 338.12,419.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.12,423.48 338.12,423.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.12,423.7 338.78,423.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.78,423.7 338.78,423.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.78,423.48 338.12,423.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.12,419.28 338.12,419.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.12,419.51 338.78,419.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.78,419.51 338.78,419.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.78,419.28 338.12,419.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.68,425.88 338.12,425.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.68,425.22 338.12,425.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.68,425.88 337.68,425.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="333.26,425.88 333.26,425.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.46,425.88 337.46,429.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.48,425.88 333.62,426.93 334.03,427.9 334.69,428.73 335.54,429.36 336.52,429.75 337.58,429.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.33,425.88 337.33,429.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.33,425.88 337.33,425.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.46,425.88 337.33,425.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.48,425.22 333.26,425.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.26,425.22 333.26,425.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.26,425.88 333.48,425.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.48,425.88 333.48,425.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.68,425.22 337.46,425.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.46,425.22 337.46,425.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.46,425.88 337.68,425.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.68,425.88 337.68,425.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332.14,428.6 331.47,428.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="330.15,425 330.44,424.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.44,424.93 330.7,424.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.7,424.71 330.87,424.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.87,424.39 330.93,423.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.93,423.99 330.84,423.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.27,421.97 331.27,422.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.27,422.7 331.08,422.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.08,422.74 330.86,422.88 330.77,423.13 330.84,423.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.45,423.38 329.52,423.13 329.43,422.88 329.21,422.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.02,421.97 331.27,421.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.02,422.7 329.21,422.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.02,421.97 329.02,422.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.45,423.38 329.36,423.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.36,423.99 329.42,424.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.42,424.39 329.59,424.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.59,424.71 329.86,424.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.86,424.93 330.15,425" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.16,421.97 328.16,428.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="328.82,428.6 327.49,428.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="331.55,425.94 330.71,426.05 329.95,426.42 329.35,427.01 328.95,427.76 328.82,428.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="331.47,428.6 331.47,425.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="326.17,425 326.46,424.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.46,424.93 326.72,424.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.72,424.71 326.89,424.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.89,424.39 326.95,423.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.95,423.99 326.86,423.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.29,421.97 327.29,422.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.29,422.7 327.1,422.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.1,422.74 326.89,422.88 326.79,423.13 326.86,423.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.47,423.38 325.54,423.13 325.45,422.88 325.23,422.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.05,421.97 327.29,421.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.05,422.7 325.23,422.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.05,421.97 325.05,422.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.47,423.38 325.38,423.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.38,423.99 325.44,424.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.44,424.39 325.61,424.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.61,424.71 325.88,424.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.88,424.93 326.17,425" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.57,425.94 326.74,426.05 325.97,426.42 325.37,427.01 324.98,427.76 324.84,428.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.49,428.6 327.49,425.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="324.18,421.97 324.18,428.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="324.12,428.6 324.84,428.6" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="321.8,418.75 321.8,419.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="321.8,419.76 322.25,419.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.25,419.76 322.64,420.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.92,420.1 323.37,419.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.82,419.76 323.37,419.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.82,418.75 323.82,419.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="323.82,418.75 321.8,418.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.64,420.1 322.92,420.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.08,418.75 319.08,419.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.08,419.76 319.53,419.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.53,419.76 319.93,420.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.21,420.1 320.66,419.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="321.1,419.76 320.66,419.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="321.1,418.75 321.1,419.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="321.1,418.75 319.08,418.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.93,420.1 320.21,420.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.46,418.75 316.46,419.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.46,419.76 316.91,419.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.91,419.76 317.31,420.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.59,420.1 318.04,419.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.48,419.76 318.04,419.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.48,418.75 318.48,419.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.48,418.75 316.46,418.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.31,420.1 317.59,420.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.59,428.49 316.59,426.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.37,426.58 314.91,426.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.91,426.58 314.91,428.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.91,428.71 316.37,428.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.31,428.32 316.31,426.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.41,426.97 315.41,428.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.53,428.43 316.2,428.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.2,426.86 315.53,426.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.2,428.43 316.28,428.4 316.31,428.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.31,426.97 316.28,426.9 316.2,426.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.53,426.86 315.45,426.9 315.41,426.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.41,428.32 315.45,428.4 315.53,428.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.37,428.71 316.53,428.65 316.59,428.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.59,426.81 316.53,426.65 316.37,426.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.63,431.53 316.63,429.84" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.4,429.62 314.94,429.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.94,429.62 314.94,431.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.94,431.75 316.4,431.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.34,431.36 316.34,430.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.45,430.01 315.45,431.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.56,431.47 316.23,431.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.23,429.9 315.56,429.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.23,431.47 316.31,431.44 316.34,431.36" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.34,430.01 316.31,429.93 316.23,429.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.56,429.9 315.48,429.93 315.45,430.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.45,431.36 315.48,431.44 315.56,431.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.4,431.75 316.56,431.69 316.63,431.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.63,429.84 316.56,429.69 316.4,429.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.5,258.13 462.5,259.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.27,260.04 460.81,260.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.81,260.04 460.81,257.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.81,257.9 462.27,257.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.22,258.3 462.22,259.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.32,259.64 461.32,258.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.43,258.18 462.1,258.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.1,259.75 461.43,259.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.22,258.3 462.18,258.22 462.1,258.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.1,259.75 462.18,259.72 462.22,259.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.32,259.64 461.35,259.72 461.43,259.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.43,258.18 461.35,258.22 461.32,258.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.5,258.13 462.43,257.97 462.27,257.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.27,260.04 462.43,259.97 462.5,259.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.47,261.17 462.47,262.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.24,263.07 460.78,263.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.78,263.07 460.78,260.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="460.78,260.94 462.24,260.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.18,261.33 462.18,262.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.29,262.68 461.29,261.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.4,261.22 462.07,261.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.07,262.79 461.4,262.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.18,261.33 462.15,261.25 462.07,261.22" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.07,262.79 462.15,262.76 462.18,262.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.29,262.68 461.32,262.76 461.4,262.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="461.4,261.22 461.32,261.25 461.29,261.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.47,261.17 462.4,261.01 462.24,260.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.24,263.07 462.4,263.01 462.47,262.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.36,270.9 462.36,269.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.36,269.89 462.81,269.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="462.81,269.89 463.21,269.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.49,269.56 463.93,269.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.38,269.89 463.93,269.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.38,270.9 464.38,269.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.38,270.9 462.36,270.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="463.21,269.56 463.49,269.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.98,270.9 464.98,269.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.98,269.89 465.43,269.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.43,269.89 465.82,269.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.11,269.56 466.55,269.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467,269.89 466.55,269.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467,270.9 467,269.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467,270.9 464.98,270.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="465.82,269.56 466.11,269.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.7,270.9 467.7,269.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.7,269.89 468.15,269.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="468.15,269.89 468.54,269.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="468.82,269.56 469.27,269.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="469.72,269.89 469.27,269.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="469.72,270.9 469.72,269.89" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="469.72,270.9 467.7,270.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="468.54,269.56 468.82,269.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.02,261.06 470.74,261.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.08,267.69 470.08,261.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="470.74,261.06 470.88,261.89 471.27,262.64 471.87,263.23 472.63,263.6 473.47,263.71" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.39,261.06 473.39,263.71" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="472.36,264.73 472.07,264.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.62,264.95 472.36,264.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.79,265.27 472.62,264.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.85,265.67 472.79,265.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.76,266.27 472.85,265.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.19,267.69 473.19,266.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.19,266.96 473,266.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.76,266.27 472.69,266.53 472.79,266.77 473,266.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.13,266.92 471.35,266.77 471.44,266.53 471.37,266.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.94,267.69 473.19,267.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.94,266.96 471.13,266.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="470.94,267.69 470.94,266.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.28,265.67 471.37,266.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.34,265.27 471.28,265.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.51,264.95 471.34,265.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.78,264.73 471.51,264.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.07,264.65 471.78,264.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.72,261.06 474.85,261.89 475.24,262.64 475.85,263.23 476.61,263.6 477.45,263.71" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="477.37,261.06 477.37,263.71" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.72,261.06 473.39,261.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.06,267.69 474.06,261.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="476.34,264.73 476.05,264.65" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.6,264.95 476.34,264.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.77,265.27 476.6,264.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.83,265.67 476.77,265.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.74,266.27 476.83,265.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.17,267.69 477.17,266.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.17,266.96 476.98,266.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.74,266.27 476.67,266.53 476.76,266.77 476.98,266.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.11,266.92 475.33,266.77 475.42,266.53 475.35,266.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.92,267.69 477.17,267.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.92,266.96 475.11,266.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.92,267.69 474.92,266.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.26,265.67 475.35,266.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.32,265.27 475.26,265.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.49,264.95 475.32,265.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.76,264.73 475.49,264.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.05,264.65 475.76,264.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.03,261.06 477.37,261.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="483.58,265.77 483.36,265.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.36,265.77 483.36,265.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.36,265.1 483.58,265.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.58,265.1 483.58,265.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.38,265.77 479.16,265.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.16,265.77 479.16,265.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.16,265.1 479.38,265.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.38,265.1 479.38,265.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.36,265.1 483.36,261.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.48,261.13 482.42,261.24 481.44,261.62 480.59,262.25 479.93,263.08 479.52,264.05 479.38,265.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.23,265.1 483.23,261.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.23,265.1 483.23,265.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.36,265.1 483.23,265.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.16,265.1 479.16,265.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.58,265.1 483.58,265.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.58,265.77 484.02,265.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.58,265.1 484.02,265.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.02,271.07 484.02,265.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="461.93,271.07 470.1,271.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.26,269.63 459.26,263.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.26,269.63 461.93,269.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="461.93,271.07 461.93,269.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="461.71,271.07 461.71,269.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.26,269.85 461.71,269.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.02,265.1 484.02,256.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.72,265.1 478.72,260.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.05,260.35 478.72,260.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.72,265.1 479.16,265.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.72,265.77 479.16,265.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.05,267.76 478.05,260.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.72,271.07 479.16,271.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.76,271.07 478.05,271.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.1,267.76 478.05,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.76,268.42 478.05,268.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.72,271.07 478.72,265.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.05,271.07 478.05,268.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.76,271.07 470.76,268.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.1,271.07 470.1,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.26,271.07 461.71,271.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.59,271.73 479.16,271.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.59,271.73 458.59,254.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.26,271.07 459.26,269.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="460.61,263.5 460.61,256.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.92,254.05 458.59,254.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.92,254.72 459.26,254.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.26,256.43 460.61,256.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.26,256.87 460.17,256.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.26,263.5 460.61,263.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.26,263.06 460.17,263.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="460.17,263.06 460.17,256.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.26,263.06 459.26,256.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.26,256.43 459.26,254.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.58,271.07 484.02,271.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.58,271.73 484.68,271.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.58,271.07 483.58,271.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.16,271.07 479.16,271.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.36,271.07 483.36,267.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.48,267.09 482.42,267.2 481.44,267.59 480.59,268.22 479.93,269.05 479.52,270.02 479.38,271.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.23,271.07 483.23,267.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.23,271.07 483.23,271.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.36,271.07 483.23,271.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.38,271.07 479.16,271.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.16,271.07 479.16,271.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.16,271.73 479.38,271.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.38,271.73 479.38,271.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.58,271.07 483.36,271.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.36,271.07 483.36,271.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.36,271.73 483.58,271.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.58,271.73 483.58,271.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,229.58 354.54,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.54,229.58 354.54,234.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="355.21,235.47 346.7,235.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,229.58 346.7,235.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.58,228.92 355.21,228.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.36,229.58 347.36,234.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.54,234.81 347.36,234.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="355.21,228.92 355.21,235.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.73,261.46 323.73,263.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.39,261.46 324.39,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.55,263.94 323.73,263.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.55,263.5 323.73,263.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.55,263.5 313.55,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.73,263.94 323.73,264.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.73,265.05 323.73,269.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.39,268.42 324.39,271.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.39,271.07 332.35,271.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.35,261.46 332.35,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="333.01,261.46 333.01,263.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.31,255.1 338.31,263.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.98,254.44 338.98,266.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.73,261.46 324.39,261.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="333.01,263.78 333.45,263.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="333.01,264.44 333.45,264.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="333.01,264.44 333.01,271.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.35,268.42 332.35,271.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="333.01,271.07 338.31,271.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.31,264.44 338.31,266.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.87,263.78 338.31,263.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.87,264.44 338.31,264.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.87,263.78 337.87,264.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="333.45,263.78 333.45,264.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.65,263.78 337.65,259.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.77,259.8 336.72,259.91 335.73,260.29 334.88,260.92 334.23,261.75 333.81,262.73 333.67,263.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.53,263.78 337.53,259.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.53,263.78 337.53,263.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.65,263.78 337.53,263.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.67,263.78 333.45,263.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.45,263.78 333.45,264.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.45,264.44 333.67,264.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="333.67,264.44 333.67,263.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.87,263.78 337.65,263.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.65,263.78 337.65,264.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.65,264.44 337.87,264.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.87,264.44 337.87,263.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.31,270.77 338.31,271.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.98,270.77 338.98,271.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.31,266.35 338.98,266.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.31,270.77 338.98,270.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.31,270.55 334.34,270.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.31,266.57 337.27,266.71 336.29,267.13 335.46,267.78 334.83,268.63 334.45,269.62 334.34,270.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.31,270.43 334.34,270.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.31,270.43 338.31,270.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.31,270.55 338.31,270.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.98,266.57 338.98,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.98,266.35 338.31,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.31,266.35 338.31,266.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.31,266.57 338.98,266.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.98,270.77 338.98,270.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.98,270.55 338.31,270.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.31,270.55 338.31,270.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.31,270.77 338.98,270.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332.35,261.46 333.01,261.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="326.4,264.67 326.11,264.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.11,264.74 325.84,264.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.84,264.96 325.68,265.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.68,265.28 325.61,265.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.61,265.68 325.71,266.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.28,267.7 325.28,266.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.28,266.97 325.46,266.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="325.46,266.93 325.68,266.79 325.77,266.54 325.71,266.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.1,266.29 327.03,266.54 327.12,266.79 327.34,266.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.52,267.7 325.28,267.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.52,266.97 327.34,266.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.52,267.7 327.52,266.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.1,266.29 327.19,265.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.19,265.68 327.12,265.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.12,265.28 326.96,264.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.96,264.96 326.69,264.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="326.69,264.74 326.4,264.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="327.73,261.53 329.05,261.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="325,264.18 325.83,264.07 326.59,263.71 327.2,263.12 327.59,262.37 327.73,261.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="325.07,261.53 325.07,264.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="330.38,264.67 330.09,264.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.09,264.74 329.82,264.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.82,264.96 329.65,265.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.65,265.28 329.59,265.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.59,265.68 329.68,266.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.26,267.7 329.26,266.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.26,266.97 329.44,266.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.44,266.93 329.66,266.79 329.75,266.54 329.68,266.29" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.07,266.29 331,266.54 331.1,266.79 331.31,266.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.5,267.7 329.26,267.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.5,266.97 331.31,266.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.5,267.7 331.5,266.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.07,266.29 331.16,265.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.16,265.68 331.1,265.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="331.1,265.28 330.93,264.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.93,264.96 330.67,264.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.67,264.74 330.38,264.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="328.97,264.18 329.81,264.07 330.57,263.71 331.18,263.12 331.57,262.37 331.7,261.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="329.05,261.53 329.05,264.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="328.39,267.76 328.39,261.59" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="332.35,261.53 331.7,261.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="324.39,261.53 325.07,261.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="321.19,261.79 319.51,261.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.29,262.01 319.29,263.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.29,263.47 321.42,263.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="321.42,263.47 321.42,262.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="321.03,262.07 319.68,262.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.68,262.97 321.03,262.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="321.14,262.85 321.14,262.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.57,262.18 319.57,262.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="321.14,262.18 321.11,262.1 321.03,262.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.68,262.07 319.6,262.1 319.57,262.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.57,262.85 319.6,262.93 319.68,262.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="321.03,262.97 321.11,262.93 321.14,262.85" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="321.42,262.01 321.35,261.85 321.19,261.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.51,261.79 319.35,261.85 319.29,262.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.8,261.72 316.12,261.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.89,261.94 315.89,263.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.89,263.4 318.03,263.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.03,263.4 318.03,261.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.63,262 316.29,262" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.29,262.9 317.63,262.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.75,262.78 317.75,262.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.17,262.11 316.17,262.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.75,262.11 317.71,262.03 317.63,262" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.29,262 316.21,262.03 316.17,262.11" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.17,262.78 316.21,262.86 316.29,262.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.63,262.9 317.71,262.86 317.75,262.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.03,261.94 317.96,261.78 317.8,261.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.12,261.72 315.96,261.78 315.89,261.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.41,269.52 323.73,269.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.41,269.52 320.41,271.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.19,269.3 323.73,269.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.19,269.3 320.19,271.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.73,269.52 323.73,271.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="320.41,271.07 323.73,271.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.68,418.03 484.68,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.02,418.7 484.02,421.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.05,422.01 484.02,422.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.72,421.35 484.02,421.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.23,418.7 459.67,418.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.56,418.03 459.67,418.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.72,418.7 472.72,421.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.05,418.7 472.05,422.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.07,418.7 466.07,419.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="465.63,418.7 465.63,427.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="465.19,418.7 465.19,427.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="464.52,418.7 464.52,425.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="464.52,428.42 466.07,428.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="465.19,427.98 465.63,427.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.72,418.7 484.02,418.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.07,418.7 468.5,418.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="465.19,418.7 465.63,418.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.56,435.44 458.56,418.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.01,435.44 459.01,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.23,434.69 459.23,425.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.01,434.69 459.23,434.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.02,422.01 484.02,433.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.23,425.33 459.67,425.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.23,425.99 459.67,425.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.23,425.33 459.23,418.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="464.52,425.99 464.52,428.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.02,428.68 483.36,428.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="482.04,425.09 482.33,425.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.33,425.01 482.59,424.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.59,424.79 482.76,424.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.76,424.47 482.82,424.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.82,424.07 482.73,423.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.16,422.05 483.16,422.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.16,422.78 482.97,422.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="482.97,422.82 482.75,422.97 482.66,423.21 482.73,423.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.34,423.47 481.41,423.21 481.32,422.97 481.1,422.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.91,422.05 483.16,422.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.91,422.78 481.1,422.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.91,422.05 480.91,422.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.34,423.47 481.25,424.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.25,424.07 481.31,424.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.31,424.47 481.48,424.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.48,424.79 481.75,425.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.75,425.01 482.04,425.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.05,422.05 480.05,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="480.71,428.68 479.38,428.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="483.36,428.68 483.23,427.84 482.84,427.09 482.23,426.51 481.47,426.14 480.63,426.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="480.71,428.68 480.71,426.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="478.06,425.09 478.35,425.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.35,425.01 478.61,424.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.61,424.79 478.78,424.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.78,424.47 478.84,424.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.84,424.07 478.75,423.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.18,422.05 479.18,422.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.18,422.78 478.99,422.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.99,422.82 478.78,422.97 478.68,423.21 478.75,423.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.36,423.47 477.43,423.21 477.34,422.97 477.12,422.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.93,422.05 479.18,422.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.93,422.78 477.12,422.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.93,422.05 476.93,422.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.36,423.47 477.27,424.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.27,424.07 477.33,424.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.33,424.47 477.5,424.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.5,424.79 477.77,425.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.77,425.01 478.06,425.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.07,422.05 476.07,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="476.73,428.68 475.41,428.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="479.38,428.68 479.25,427.84 478.86,427.09 478.25,426.51 477.49,426.14 476.65,426.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="476.73,428.68 476.73,426.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="474.08,425.09 474.37,425.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.37,425.01 474.64,424.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.64,424.79 474.8,424.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.8,424.47 474.87,424.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.87,424.07 474.77,423.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.2,422.05 475.2,422.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.2,422.78 475.01,422.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.01,422.82 474.8,422.97 474.71,423.21 474.77,423.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.38,423.47 473.45,423.21 473.36,422.97 473.14,422.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.96,422.05 475.2,422.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.96,422.78 473.14,422.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.96,422.05 472.96,422.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.38,423.47 473.29,424.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.29,424.07 473.36,424.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.36,424.47 473.52,424.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.52,424.79 473.79,425.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.79,425.01 474.08,425.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.41,428.68 475.27,427.84 474.88,427.09 474.27,426.51 473.51,426.14 472.67,426.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="472.75,428.68 472.75,426.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="472.09,422.05 472.09,428.62" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="472.04,428.68 472.75,428.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="466.07,419.91 468.5,419.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.5,418.7 468.5,419.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.07,420.13 468.72,420.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.72,418.7 468.72,420.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.07,420.13 466.07,428.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.72,418.7 472.05,418.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="467.79,423.69 467.79,422" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.57,421.78 466.11,421.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.11,421.78 466.11,423.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.11,423.91 467.57,423.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.51,423.52 467.51,422.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.61,422.17 466.61,423.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.72,423.63 467.4,423.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.4,422.06 466.72,422.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.4,423.63 467.48,423.6 467.51,423.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.51,422.17 467.48,422.09 467.4,422.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.72,422.06 466.64,422.09 466.61,422.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.61,423.52 466.64,423.6 466.72,423.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.57,423.91 467.72,423.85 467.79,423.69" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.79,422 467.72,421.84 467.57,421.78" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.78,426.77 467.78,425.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.56,424.86 466.1,424.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.1,424.86 466.1,426.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.1,426.99 467.56,426.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.5,426.6 467.5,425.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.6,425.25 466.6,426.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.72,426.71 467.39,426.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.39,425.14 466.72,425.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.39,426.71 467.47,426.68 467.5,426.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.5,425.25 467.47,425.17 467.39,425.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.72,425.14 466.64,425.17 466.6,425.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="466.6,426.6 466.64,426.68 466.72,426.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.56,426.99 467.72,426.93 467.78,426.77" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="467.78,425.08 467.72,424.92 467.56,424.86" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="464.09,418.7 464.52,418.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="464.09,418.03 484.68,418.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="464.09,418.7 464.09,418.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.67,418.7 459.67,418.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.89,418.7 459.89,422.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.77,422.67 460.82,422.56 461.81,422.18 462.66,421.55 463.31,420.72 463.72,419.74 463.87,418.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.01,418.7 460.01,422.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.01,418.7 460.01,418.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.89,418.7 460.01,418.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.87,418.7 464.09,418.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.09,418.7 464.09,418.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.09,418.03 463.87,418.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.87,418.03 463.87,418.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.67,418.7 459.89,418.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.89,418.7 459.89,418.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.89,418.03 459.67,418.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.67,418.03 459.67,418.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.09,425.99 464.52,425.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="464.09,425.33 464.52,425.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="464.09,425.99 464.09,425.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.67,425.99 459.67,425.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.89,425.99 459.89,429.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.77,429.97 460.82,429.86 461.81,429.47 462.66,428.84 463.31,428.01 463.72,427.04 463.87,425.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.01,425.99 460.01,429.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.01,425.99 460.01,425.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.89,425.99 460.01,425.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.87,425.99 464.09,425.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.09,425.99 464.09,425.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.09,425.33 463.87,425.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.87,425.33 463.87,425.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.67,425.99 459.89,425.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.89,425.99 459.89,425.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.89,425.33 459.67,425.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.67,425.33 459.67,425.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.72,417.92 312.72,415.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="313.22,417.92 313.22,415.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="299.16,415.08 308.29,415.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="299.16,415.58 308.29,415.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="312.49,415.58 312.72,415.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="312.49,415.08 313.22,415.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="312.49,415.58 312.49,415.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.29,415.58 308.29,415.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="312.27,415.58 312.27,419.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.51,415.58 308.7,416.76 309.25,417.82 310.11,418.65 311.19,419.18 312.38,419.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.15,415.58 312.15,419.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.15,415.58 312.15,415.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.27,415.58 312.15,415.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.51,415.08 308.29,415.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.29,415.08 308.29,415.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.29,415.58 308.51,415.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.51,415.58 308.51,415.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.49,415.08 312.27,415.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.27,415.08 312.27,415.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.27,415.58 312.49,415.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.49,415.58 312.49,415.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.85,382.34 299.85,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.73,382.34 301.73,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.85,384.22 301.73,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.85,382.34 301.73,382.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340,330.3 354.71,330.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340,334.06 354.71,334.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.66,330.96 354.05,330.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.66,333.4 354.05,333.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,331.07 380.73,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.61,331.07 382.61,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,332.95 382.61,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,331.07 382.61,331.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,331.07 416.64,331.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,332.95 416.64,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.64,331.07 416.64,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,331.07 414.77,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,331.07 416.64,331.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,332.95 416.64,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.64,331.07 416.64,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.77,331.07 414.77,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,331.07 448.8,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.68,331.07 450.68,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,332.95 450.68,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,331.07 450.68,331.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,331.07 448.8,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.68,331.07 450.68,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,332.95 450.68,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.8,331.07 450.68,331.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,421.57 512.75,421.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,427.76 512.31,427.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,428.53 511.04,427.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,427.76 512.31,427.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,428.53 511.04,428.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,427.76 511.04,427.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,428.61 512.97,427.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,428.61 512.31,428.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,427.67 512.31,427.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,427.76 512.31,427.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,414.94 512.31,414.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,414.86 512.31,414.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,415.8 512.31,415.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,415.8 512.97,414.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,414.94 511.04,414.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,415.71 511.04,415.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,421.57 511.65,421.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,421.9 511.65,421.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,414.94 512.31,414.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,421.57 511.65,421.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,421.57 512.31,421.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,415.71 512.31,415.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,415.71 511.04,414.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,421.57 512.31,421.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,415.71 511.65,421.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,415.71 512.31,421.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.06,421.35 512.06,415.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,421.35 511.89,415.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,415.93 512.31,415.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,415.71 511.65,415.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,415.71 511.65,415.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,415.93 512.31,415.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,421.57 512.31,421.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,421.35 511.65,421.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,421.35 511.65,421.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,421.57 512.31,421.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,421.9 512.31,421.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,421.9 511.65,421.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,427.76 512.31,427.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,421.9 511.65,427.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,421.9 512.31,427.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.06,427.54 512.06,422.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,427.54 511.89,422.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,422.12 512.31,421.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,421.9 511.65,421.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,421.9 511.65,422.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,422.12 512.31,422.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,427.76 512.31,427.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,427.54 511.65,427.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,427.54 511.65,427.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,427.76 512.31,427.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.04,415.71 511.04,427.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,428.53 512.31,428.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,351.62 511.04,350.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,351.62 511.04,351.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,350.85 511.04,350.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,344.66 512.75,344.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,357.48 512.31,357.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,357.26 511.65,357.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,357.26 511.65,357.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,357.48 512.31,357.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,351.84 512.31,351.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,351.62 511.65,351.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,351.62 511.65,351.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,351.84 512.31,351.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.06,357.26 512.06,351.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,357.26 511.89,351.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,351.62 512.31,357.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,351.62 511.65,357.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,351.62 512.31,351.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,350.85 512.31,350.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,350.63 511.65,350.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,350.63 511.65,350.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,350.85 512.31,350.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,345.21 512.31,344.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,344.99 511.65,344.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,344.99 511.65,345.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,345.21 512.31,345.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.06,350.63 512.06,345.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,350.63 511.89,345.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,344.99 512.31,350.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,344.99 511.65,350.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,350.85 512.31,350.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,344.99 511.65,344.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,344.99 512.31,344.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,344.66 512.31,344.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,344.44 511.65,344.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,344.44 511.65,344.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,344.66 512.31,344.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,344.66 512.31,344.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,344.66 512.31,344.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,344.66 511.65,344.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,344.66 511.65,344.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,351.71 512.97,350.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,351.71 512.31,351.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,350.77 512.31,350.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,344.66 511.65,344.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,344.99 511.65,344.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,357.48 512.31,357.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,357.48 512.31,357.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,357.26 511.65,357.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,357.26 511.65,357.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,357.48 512.31,357.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,357.48 512.31,357.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,344.66 512.31,344.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,344.66 512.31,344.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,344.44 511.65,344.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,344.44 511.65,344.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,344.66 512.31,344.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,344.66 512.31,344.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,338.03 511.04,338.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,338.81 511.04,338.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,338.81 511.04,338.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,332.18 511.65,332.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.75,331.84 511.65,331.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,337.95 512.31,337.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,338.89 512.31,338.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.97,338.89 512.97,337.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,331.84 511.65,331.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,331.84 511.65,332.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,331.84 512.31,331.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,331.84 512.31,331.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,332.18 512.31,332.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,332.18 511.65,331.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,338.03 512.31,338.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,332.18 511.65,338.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,332.18 512.31,338.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.06,337.81 512.06,332.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,337.81 511.89,332.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,332.4 512.31,332.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,332.18 511.65,332.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,332.18 511.65,332.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,332.4 512.31,332.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,338.03 512.31,337.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,337.81 511.65,337.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,337.81 511.65,338.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,338.03 512.31,338.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,338.81 512.31,338.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,338.81 511.65,344.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.31,338.81 512.31,344.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.06,344.44 512.06,339.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.89,344.44 511.89,339.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,339.03 512.31,338.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,338.81 511.65,338.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,338.81 511.65,339.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,339.03 512.31,339.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,344.66 512.31,344.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.31,344.44 511.65,344.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,344.44 511.65,344.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="511.65,344.66 512.31,344.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="512.75,331.84 512.75,332.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.29,355.82 464.66,355.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.29,356.49 465.32,356.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="465.32,358.59 464.66,358.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.17,332.01 482.83,332.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.29,331.13 482.83,331.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.71,331.13 485.08,331.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.82,338.14 483.82,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,332.01 472.17,346.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.17,332.01 483.22,346.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.88,383.01 484.71,383.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.88,382.34 482.83,382.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="489.3,383.01 489.3,382.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.88,383.01 484.88,382.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.1,382.34 485.1,378.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.08,382.34 488.94,381.29 488.53,380.32 487.87,379.49 487.02,378.86 486.03,378.48 484.98,378.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.22,382.34 485.22,378.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.22,382.34 485.22,382.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.1,382.34 485.22,382.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.08,383.01 489.3,383.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.3,383.01 489.3,382.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.3,382.34 489.08,382.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.08,382.34 489.08,383.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.88,383.01 485.1,383.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.1,383.01 485.1,382.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="485.1,382.34 484.88,382.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.88,382.34 484.88,383.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.71,305.44 484.71,307.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.65,306.63 510.35,306.63" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="511.65,306.14 510.35,306.14" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="312.67,306.06 312.55,306.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="287.03,306.06 286.34,306.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="322.89,306.26 314.54,318.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,306.26 322.89,318.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,357.96 286.34,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.94,279.8 346.7,279.8" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="323.94,280.3 346.7,280.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="313.33,266.35 313.33,265.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.67,266.35 312.67,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.33,266.35 312.67,266.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.33,270.33 312.67,270.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.33,270.11 316.86,270.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.86,270.21 316.72,269.1 316.23,268.08 315.44,267.27 314.44,266.75 313.33,266.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.33,270 316.86,270" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.33,270 313.33,270" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.33,270.11 313.33,270" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.33,266.57 313.33,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.33,266.35 312.67,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.67,266.35 312.67,266.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.67,266.57 313.33,266.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.33,270.33 313.33,270.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.33,270.11 312.67,270.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.67,270.11 312.67,270.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.67,270.33 313.33,270.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,338.68 511.04,338.68" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.56,338.68 491.56,339.69" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.62,373.42 484.62,382.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,254.16 355.81,254.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,254.16 346.7,246.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.36,253.5 347.36,247.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.36,253.5 355.15,253.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="355.15,253.5 355.15,247.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="355.81,254.16 355.81,246.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.36,247.53 355.15,247.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,246.87 355.81,246.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.58,229.58 348.58,234.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.52,247.53 348.52,253.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.85,246.5 448.85,252.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.85,246.5 447.11,247.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.9,246.5 442.7,247.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.15,382.34 299.85,382.34" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="312.67,340.48 312.67,363.83" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="299.15,382.84 299.85,382.84" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="313.16,359.36 313.16,374.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="340,330.3 340,334.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.71,330.3 354.71,334.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.66,330.96 340.66,333.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.05,330.96 354.05,333.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="375.26,330.96 375.26,333.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="374.6,330.3 374.6,333.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.08,330.96 388.08,333.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.74,330.3 388.74,333.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="375.26,330.96 388.08,330.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="374.6,330.3 388.74,330.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="375.26,333.06 388.08,333.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="374.6,333.72 388.74,333.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="409.3,330.96 409.3,333.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.63,330.3 408.63,333.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="422.11,330.96 422.11,333.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="422.78,330.3 422.78,333.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="409.3,330.96 422.11,330.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.63,330.3 422.78,330.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="409.3,333.06 422.11,333.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.63,333.72 422.78,333.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="443.33,330.96 443.33,333.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="442.67,330.3 442.67,333.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.15,330.96 456.15,333.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.81,330.3 456.81,333.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="443.33,330.96 456.15,330.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="442.67,330.3 456.81,330.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="443.33,333.06 456.15,333.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="442.67,333.72 456.81,333.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.23,356.6 341.23,358.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.57,355.93 340.57,359.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.23,356.6 354.26,356.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.57,355.93 354.92,355.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.23,358.7 354.26,358.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.57,359.36 354.92,359.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.92,355.93 354.92,359.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.26,356.6 354.26,358.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="375.26,356.6 375.26,358.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="374.6,355.93 374.6,359.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="375.26,356.6 388.08,356.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="374.6,355.93 388.74,355.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="375.26,358.7 388.08,358.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="374.6,359.36 388.74,359.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.74,355.93 388.74,359.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="388.08,356.6 388.08,358.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="409.3,356.6 409.3,358.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.63,355.93 408.63,359.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="409.3,356.6 422.11,356.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.63,355.93 422.78,355.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="409.3,358.7 422.11,358.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.63,359.36 422.78,359.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="422.78,355.93 422.78,359.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="422.11,356.6 422.11,358.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="443.33,356.6 443.33,358.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="442.67,355.93 442.67,359.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="443.33,356.6 456.15,356.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="442.67,355.93 456.81,355.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="443.33,358.7 456.15,358.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="442.67,359.36 456.81,359.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.81,355.93 456.81,359.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="456.15,356.6 456.15,358.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.71,358.86 335.48,358.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="313.16,359.36 335.48,359.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.58,281.68 348.58,289.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.08,281.68 348.08,289.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.58,307.31 348.58,307.46" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="450.95,409.41 482.83,409.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="511.04,402.76 495.66,402.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.71,384.22 484.71,384.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.21,384.22 484.21,384.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="450.46,382.34 450.46,373.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="464.66,373.42 464.66,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="464.6,373.42 450.18,373.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="464.66,373.92 450.95,373.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="450.95,373.92 450.95,383.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="450.95,384.22 450.95,409.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="450.46,384.22 450.46,407.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="458.18,383.72 450.95,383.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="458.18,384.22 450.95,384.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="458.18,383.72 458.18,384.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="462.16,383.72 462.16,379.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.27,379.97 461.08,380.12 460,380.65 459.15,381.48 458.59,382.54 458.4,383.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.04,383.72 462.04,379.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.04,383.72 462.04,383.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.16,383.72 462.04,383.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458.4,383.72 458.18,383.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458.18,383.72 458.18,384.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458.18,384.22 458.4,384.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458.4,384.22 458.4,383.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.38,383.72 462.16,383.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.16,383.72 462.16,384.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.16,384.22 462.38,384.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="462.38,384.22 462.38,383.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.21,391.73 484.21,407.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.21,384.73 484.21,384.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.21,384.62 484.21,384.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.21,384.4 484.21,384.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.71,384.62 484.71,384.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.66,383.01 495.66,394.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="314.54,227.7 314.54,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.54,202.06 314.54,203.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.92,203.94 482.92,202.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.92,229.58 482.92,227.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.54,229.58 353.1,230.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.58,229.58 349.89,230.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="355.15,247.53 353.25,249.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.52,247.53 350.62,249.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.08,227.7 348.08,227.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.08,222.15 348.08,203.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.08,202.06 348.08,178.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.08,176.43 348.08,172.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="469.6,381.25 465.54,381.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.6,381.25 469.6,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,384.22 464.66,384.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="465.54,374.19 465.54,381.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.62,373.42 483.08,373.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.73,256.23 492.56,256.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,286.76 511.04,256.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,300.35 511.04,306.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,306.63 511.04,319.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,338.81 511.04,350.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,351.62 511.04,357.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,402.89 511.04,414.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="511.04,402.12 511.04,402.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.36,430.85 508.36,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.64,433.45 348.63,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.68,433.45 382.67,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.71,433.45 416.7,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.74,433.45 450.73,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,377.26 286.34,382.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,364.44 286.34,376.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,318.97 286.34,325.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,350.85 286.34,351.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,351.62 286.34,357.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,338.81 286.34,350.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,325.99 286.34,338.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,256.24 286.34,261.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,313.17 286.34,318.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,312.4 286.34,313.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,300.35 286.34,312.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,274.72 286.34,299.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.34,261.9 286.34,273.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.23,256.24 286.34,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.05,256.24 292,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292,256.24 291.23,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.73,255.63 285.73,261.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.82,256.24 304.05,256.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="310.65,256.24 304.82,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.68,256.24 310.65,256.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.53,163.44 363.53,158.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="382.31,169.38 382.31,170.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.64,169.38 381.64,170.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.31,169.38 381.64,169.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.31,170.04 381.64,170.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.91,169.98 357.24,169.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.91,169.32 357.24,169.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.24,169.32 357.24,169.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.91,169.32 357.91,169.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.98,157.66 357.98,158.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.32,157.66 357.32,158.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.98,158.33 357.32,158.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.32,160.67 360.32,161.3 360.37,161.49 360.46,161.56 360.6,161.56 360.7,161.49 360.84,161.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="360.84,160.67 360.84,161.56" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="361.22,160.67 361.22,162" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="361.22,160.86 361.31,160.73 361.41,160.67 361.55,160.67 361.65,160.73 361.74,160.86 361.79,161.05 361.79,161.18 361.74,161.37 361.65,161.49 361.55,161.56 361.41,161.56 361.31,161.49 361.22,161.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.22,161.12 372.5,161.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M373.28 160.11L373.02 160.11 372.52 161.12 372.77 161.12 373.28 160.11Z" fill-rule="evenodd" fill="blue"/>
+<path d="M373.28 162.13L373.02 162.13 372.52 161.12 372.77 161.12 373.28 162.13Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="373.28,162.13 373.02,162.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="373.28,162.13 372.77,161.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.52,161.12 373.02,160.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="373.02,162.13 372.52,161.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.22,166.74 362.46,166.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="378.22,161.12 378.22,166.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="382.97,156.92 362.32,156.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.31,157.59 362.32,157.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="375.87,158.62 375.87,158.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="375.79,169.24 375.79,169.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="371.22,163.44 371.22,161.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.32,163.44 372.32,158.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="373.43,163.44 373.43,158.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="364.59,169.24 364.59,164.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.69,169.24 365.69,164.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="366.8,169.24 366.8,164.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="367.9,169.24 367.9,164.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369.01,169.24 369.01,164.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.11,169.24 370.11,164.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="371.22,169.24 371.22,164.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.32,169.24 372.32,164.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="373.43,169.24 373.43,164.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="363.3,163.44 363.3,164.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="363.5,169.24 363.5,164.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="363.49,169.41 375.79,169.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="363.33,169.24 375.79,169.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.01,158.45 375.87,158.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="371.93,158.62 375.87,158.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="375.71,164.29 375.71,163.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="374.52,163.44 374.52,158.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="363.47,164.29 375.71,164.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="374.52,169.24 374.52,164.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369.55,163.6 375.71,163.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369.63,163.44 375.86,163.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="363.3,164.46 375.86,164.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="375.86,164.46 375.86,163.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="382.21,158.33 381.55,158.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.21,157.66 381.55,157.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.55,157.66 381.55,158.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.21,157.66 382.21,158.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.63,169.97 381.46,169.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="375.6,163.44 375.6,158.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="375.6,169.24 375.6,164.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="364.62,163.44 364.62,158.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.71,163.44 365.71,158.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.67,158.62 363.27,158.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.75,158.45 363.27,158.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="366.79,163.44 366.79,158.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="367.9,163.44 367.9,158.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="363.27,158.62 363.27,158.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369,162.11 369,161.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.37,163.44 363.3,163.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="363.47,163.6 363.47,164.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369,160.85 369,158.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.28,163.62 369.28,161.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369.28,161.54 368.74,160.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.74,160.85 370.47,160.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.47,160.82 369.94,160.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369.94,160.14 370.75,158.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369.55,163.6 370.35,161.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.35,161.92 369.82,161.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369.82,161.24 371.55,161.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="371.55,161.21 371.02,160.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="371.02,160.53 372.01,158.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.11,163.44 370.11,162.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.11,161.62 370.11,161.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.11,160.85 370.11,160.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.11,160.71 370.11,160.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="381.46,158.44 358.01,158.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.46,169.97 381.46,158.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="375.87,158.45 372.01,158.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.29,163.6 363.47,163.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.66,158.45 363.27,158.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.11,159.79 370.11,158.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="356.46,157.59 356.46,156.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.13,157.59 357.13,156.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.46,157.59 357.13,157.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.46,162.78 357.13,162.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.46,157.59 356.46,162.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.13,157.59 357.13,162.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.87,162.56 356.87,157.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="356.72,162.56 356.72,157.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="357.13,157.81 357.13,157.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="357.13,157.59 356.46,157.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="356.46,157.59 356.46,157.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="356.46,157.81 357.13,157.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="357.13,162.78 357.13,162.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="357.13,162.56 356.46,162.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="356.46,162.56 356.46,162.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="356.46,162.78 357.13,162.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="357.13,157.59 356.46,157.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.13,156.92 356.46,156.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="362.32,157.59 362.32,156.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.13,157.59 357.13,156.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="362.32,157.59 357.13,157.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="362.32,156.92 357.13,156.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.35,157.33 362.1,157.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="357.35,157.18 362.1,157.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.1,157.59 362.32,157.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.32,157.59 362.32,156.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.32,156.92 362.1,156.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.1,156.92 362.1,157.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="357.13,157.59 357.35,157.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="357.35,157.59 357.35,156.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="357.35,156.92 357.13,156.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="357.13,156.92 357.13,157.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="357.32,157.66 357.98,157.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="366.25,162.13 366.75,161.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="366.75,161.12 366.25,160.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="366,162.13 366.5,161.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="366,162.13 366.25,162.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M366 162.13L366.25 162.13 366.75 161.12 366.5 161.12 366 162.13Z" fill-rule="evenodd" fill="blue"/>
+<path d="M366 160.11L366.25 160.11 366.75 161.12 366.5 161.12 366 160.11Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="362.6,161.12 366.77,161.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="363.63,169.97 363.63,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.49,169.41 363.49,170.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="363.33,169.24 363.33,170.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="358.01,170.74 358.01,158.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.13,170.74 357.13,162.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.46,170.29 356.46,162.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.31,170.74 382.31,157.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.97,170.29 382.97,156.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.56,171.4 358.56,167.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.54,171.4 362.4,170.35 361.99,169.38 361.33,168.54 360.48,167.91 359.5,167.53 358.44,167.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.69,171.4 358.69,167.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.69,171.4 358.69,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.56,171.4 358.69,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.34,170.74 358.34,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="362.76,172.17 362.76,171.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="362.76,171.4 362.76,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="362.54,172.17 362.76,172.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.76,172.17 362.76,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.76,171.4 362.54,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="362.54,171.4 362.54,172.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.34,172.17 358.56,172.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.56,172.17 358.56,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.56,171.4 358.34,171.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.34,171.4 358.34,172.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.34,170.74 356.91,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.43,170.74 362.76,170.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="362.76,172.17 380.68,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.68,165.61 360.68,166.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="360.68,166.25 360.58,166.12 360.49,166.06 360.34,166.06 360.25,166.12 360.15,166.25 360.11,166.44 360.11,166.56 360.15,166.75 360.25,166.88 360.34,166.94 360.49,166.94 360.58,166.88 360.68,166.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="361.01,166.94 361.01,166.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="361.01,166.31 361.15,166.12 361.24,166.06 361.39,166.06 361.48,166.12 361.53,166.31 361.53,166.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="361.95,166.81 361.91,166.88 361.95,166.94 362,166.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="344.38,445.73 348.03,445.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M347.26 446.74L347.51 446.74 348.01 445.73 347.76 445.73 347.26 446.74Z" fill-rule="evenodd" fill="blue"/>
+<path d="M347.26 444.72L347.51 444.72 348.01 445.73 347.76 445.73 347.26 444.72Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="347.26,446.74 347.51,446.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="347.26,444.72 347.51,444.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="347.76,445.73 347.26,446.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="347.26,444.72 347.76,445.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="348.01,445.73 347.51,446.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="347.51,444.72 348.01,445.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="351.5,442.38 351.5,437.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="350.39,442.38 350.39,437.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="349.29,442.38 349.29,437.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="348.18,442.38 348.18,437.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="347.08,442.38 347.08,437.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="345.97,442.38 345.97,437.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="345.97,448.1 345.97,443.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="347.08,448.1 347.08,443.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="348.18,447.93 348.18,443.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="349.29,445.12 349.29,443.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="350.39,448.1 350.39,445.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="351.5,448.1 351.5,443.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="352.6,448.1 352.6,443.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="353.71,448.1 353.71,443.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="354.81,448.1 354.81,443.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="345.29,442.55 345.29,443.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="345.13,442.38 345.13,443.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="345.12,448.1 345.12,448.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.17,442.55 345.29,442.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.33,442.38 345.13,442.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="363.41,437.49 345.3,437.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="353.41,437.66 345.88,437.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="363.41,437.66 345.14,437.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.33,443.35 351.77,443.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="363.46,436.67 363.46,437.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.12,436.67 364.12,437.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.46,436.67 364.12,436.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.46,437.33 364.12,437.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.15,448.1 357.15,448.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.33,443.19 357.33,443.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.15,448.1 349.51,448.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.33,443.35 351.77,443.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.17,443.19 351.85,443.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.15,448.27 349.43,448.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="355.92,448.1 355.92,443.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="364.15,449.04 363.49,449.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.15,448.38 363.49,448.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.49,448.38 363.49,449.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.15,448.38 364.15,449.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.76,448.38 339.76,449.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.09,448.38 339.09,449.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.76,448.38 339.09,448.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.76,449.04 339.09,449.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.76,437.33 339.09,437.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.76,436.67 339.09,436.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.09,436.67 339.09,437.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.76,436.67 339.76,437.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.37,449.13 364.21,449.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.37,449.79 339.03,449.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.41,437.27 363.41,448.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.47,437.27 363.41,437.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="357.33,443.19 357.33,442.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.17,443.19 357.17,442.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="352.6,442.38 352.6,437.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="353.71,442.38 353.71,437.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="354.81,442.38 354.81,437.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="355.92,442.38 355.92,437.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="349.42,448.29 350.13,446.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="350.13,446.79 349.42,445.88" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="349.42,445.88 351.73,445.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="351.73,445.84 351.02,444.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="351.02,444.93 351.88,443.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="348.01,448.29 349.08,446.04" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="349.08,446.04 348.37,445.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="348.37,445.14 350.68,445.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="350.68,445.09 349.97,444.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="349.97,444.18 350.44,443.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="350.37,443.35 345.13,443.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="350.44,443.19 345.29,443.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="350.37,443.35 345.13,443.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="350.39,445.1 350.39,444.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="348.1,448.1 345.12,448.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="339.84,448.32 363.41,448.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.02,448.27 345.12,448.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="353.28,444.82 352.77,445.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="352.77,445.83 353.28,446.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="353.53,444.82 353.03,445.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="353.03,445.83 353.53,446.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="353.53,444.82 353.28,444.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="353.53,446.84 353.28,446.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M353.53 444.82L353.28 444.82 352.77 445.83 353.03 445.83 353.53 444.82Z" fill-rule="evenodd" fill="blue"/>
+<path d="M353.53 446.84L353.28 446.84 352.77 445.83 353.03 445.83 353.53 446.84Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="358.13,445.83 352.76,445.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="358.13,445.83 359.13,445.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="360.15,445.83 360.15,440.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="360.15,440.15 344.45,440.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.02,442.38 357.02,437.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.02,448.1 357.02,443.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="345.6,437.26 346.13,437.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.6,436.73 346.13,436.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.13,436.73 346.13,437.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.6,436.73 345.6,437.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.6,448.56 345.6,449.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.13,448.56 346.13,449.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.6,448.56 346.13,448.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.6,449.09 346.13,449.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.03,449.11 339.03,449.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.57,449.11 345.57,449.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.03,449.13 345.57,449.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.34,449.39 339.25,449.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.34,449.58 339.25,449.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.25,449.13 339.03,449.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.03,449.13 339.03,449.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.03,449.79 339.25,449.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.25,449.79 339.25,449.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.57,449.13 345.34,449.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.34,449.13 345.34,449.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.34,449.79 345.57,449.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.57,449.79 345.57,449.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="345.57,449.79 364.88,449.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.03,449.79 345.57,449.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.37,442.6 338.37,449.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.03,449.13 339.03,448.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.03,448.91 338.37,448.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.37,448.91 338.37,449.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.37,449.13 339.03,449.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.03,442.82 339.03,442.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.03,442.6 338.37,442.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.37,442.6 338.37,442.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.37,442.82 339.03,442.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.77,448.91 338.77,442.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.59,448.91 338.59,442.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.03,442.6 339.03,449.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.05,449.13 338.37,449.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.37,449.13 338.37,449.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.03,449.13 339.03,449.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.15,445.83 359.13,445.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="345.14,436.1 345.14,437.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="345.47,436.1 345.47,437.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.07,436.1 340.07,440.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.95,440.08 341,439.97 341.99,439.58 342.84,438.95 343.49,438.12 343.9,437.15 344.05,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.19,436.1 340.19,440.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.19,436.1 340.19,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.07,436.1 340.19,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.84,436.1 339.84,448.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.03,436.1 339.03,442.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.37,436.38 338.37,442.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.88,436.54 364.88,449.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.21,436.27 364.21,449.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.3,436.1 345.3,437.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="344.27,436.1 344.27,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.05,436.1 344.27,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.27,436.1 344.27,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.27,435.44 344.05,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.05,435.44 344.05,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="346.34,435.44 344.27,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.34,436.1 344.27,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.34,436.1 346.34,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.85,435.44 338.81,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.85,436.1 338.81,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.85,436.1 340.07,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.07,436.1 340.07,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.07,435.44 339.85,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.85,435.44 339.85,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.56,439.88 342.56,440.51 342.61,440.7 342.71,440.76 342.85,440.76 342.94,440.7 343.08,440.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="343.08,439.88 343.08,440.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="343.46,439.88 343.46,441.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="343.46,440.07 343.56,439.94 343.65,439.88 343.8,439.88 343.89,439.94 343.98,440.07 344.03,440.26 344.03,440.38 343.98,440.57 343.89,440.7 343.8,440.76 343.65,440.76 343.56,440.7 343.46,440.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="342.86,444.61 342.86,445.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="342.86,445.24 342.77,445.12 342.67,445.05 342.53,445.05 342.44,445.12 342.34,445.24 342.29,445.43 342.29,445.56 342.34,445.75 342.44,445.87 342.53,445.94 342.67,445.94 342.77,445.87 342.86,445.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="343.19,445.94 343.19,445.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="343.19,445.31 343.34,445.12 343.43,445.05 343.57,445.05 343.67,445.12 343.72,445.31 343.72,445.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="344.14,445.81 344.09,445.87 344.14,445.94 344.19,445.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="487.34,418.03 487.34,418.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.68,418.03 487.34,418.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.68,418.48 487.34,418.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.68,423.92 487.34,423.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.68,423.48 487.34,423.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="487.34,418.48 487.34,423.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.34,423.48 487.34,423.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="485.53,419.97 485.37,420.03 485.31,420.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="486.94,420.19 486.87,420.03 486.71,419.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="486.71,422.21 486.87,422.15 486.94,421.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.31,421.99 485.37,422.15 485.53,422.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.53,422.21 486.71,422.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.31,420.19 485.31,421.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="486.71,419.97 485.53,419.97" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="486.94,421.99 486.94,420.19" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="484.8,422.44 487.16,422.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="484.8,419.74 484.8,422.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.16,419.74 484.8,419.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.16,422.44 487.16,419.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.95,421.09 486,420.97 486.12,420.92 486.24,420.97 486.29,421.09 486.24,421.21 486.12,421.26 486,421.21 485.95,421.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="491.69,383.01 491.69,384" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="489.9,383.01 489.9,384" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="491.69,384 489.9,384" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.84,374.19 483.84,382.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.84,374.19 483.08,374.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,383.45 477.77,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="477.77,374.19 477.77,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="476.99,374.19 476.99,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="476.99,374.19 470.43,374.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.16,383.45 465.54,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.16,381.69 465.54,381.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.16,381.69 469.16,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="476.99,383.45 469.6,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.66,374.19 477.77,374.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.66,373.42 470.43,373.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.08,374.19 483.08,373.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.66,374.19 478.66,373.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.88,374.19 478.88,378.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.77,378.17 479.82,378.06 480.8,377.68 481.65,377.05 482.31,376.22 482.72,375.24 482.86,374.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.01,374.19 479.01,378.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.01,374.19 479.01,374.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.88,374.19 479.01,374.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.86,374.19 483.08,374.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.08,374.19 483.08,373.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.08,373.42 482.86,373.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.86,373.42 482.86,374.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.66,374.19 478.88,374.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.88,374.19 478.88,373.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.88,373.42 478.66,373.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.66,373.42 478.66,374.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.01,374.19 465.54,374.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.01,373.42 464.66,373.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.43,374.19 470.43,373.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.01,374.19 466.01,373.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.23,374.19 466.23,378.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.11,378.17 467.17,378.06 468.15,377.68 469,377.05 469.66,376.22 470.07,375.24 470.21,374.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.36,374.19 466.36,378.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.36,374.19 466.36,374.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.23,374.19 466.36,374.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.21,374.19 470.43,374.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.43,374.19 470.43,373.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.43,373.42 470.21,373.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.21,373.42 470.21,374.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.01,374.19 466.23,374.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.23,374.19 466.23,373.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.23,373.42 466.01,373.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="466.01,373.42 466.01,374.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="465.54,381.69 465.54,383.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="465.15,358.59 465.15,362.02" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="465.15,369.98 465.15,373.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="464.6,369.98 464.6,373.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="465.15,362.02 464.6,362.02" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="465.15,369.98 464.6,369.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="465.15,362.25 468.91,362.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="465.15,366 466.34,365.81 467.4,365.26 468.23,364.4 468.75,363.32 468.91,362.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="465.15,362.36 468.9,362.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="465.15,362.36 465.15,362.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="465.15,362.25 465.15,362.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="465.15,369.76 465.15,369.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="465.15,369.64 465.15,369.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="465.15,369.64 468.9,369.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.91,369.87 468.75,368.68 468.23,367.61 467.4,366.75 466.34,366.19 465.15,366" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="465.15,369.76 468.91,369.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.6,369.76 464.6,369.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.6,369.98 465.15,369.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="465.15,369.98 465.15,369.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="465.15,369.76 464.6,369.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.6,362.02 464.6,362.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.6,362.25 465.15,362.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="465.15,362.25 465.15,362.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="465.15,362.02 464.6,362.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="490.53,357.81 490.53,356.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="491.12,338.24 491.12,339.69" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="490.53,356.87 491.12,356.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="490.53,357.31 491.12,357.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.12,357.31 491.12,357.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.56,338.24 511.04,338.24" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.56,339.69 491.12,339.69" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.56,339.91 495.54,339.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,343.89 492.61,343.75 493.58,343.33 494.41,342.68 495.04,341.83 495.42,340.84 495.53,339.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,340.03 495.53,340.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,340.03 491.56,340.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,339.91 491.56,340.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.12,339.69 491.12,339.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.12,339.91 491.56,339.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,339.91 491.56,339.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,339.69 491.12,339.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.11,383.01 496.11,394.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="511.04,402.32 496.11,402.32" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="496.11,401.55 496.11,402.32" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.66,401.55 495.66,402.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="496.11,401.55 495.66,401.55" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="496.11,401.33 500.08,401.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.08,401.45 499.97,400.4 499.59,399.41 498.96,398.56 498.13,397.91 497.15,397.5 496.11,397.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.11,401.21 500.08,401.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.11,401.21 496.11,401.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.11,401.33 496.11,401.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.11,401.55 496.11,401.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.11,401.33 495.66,401.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.66,401.33 495.66,401.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.66,401.55 496.11,401.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.11,394.26 495.66,394.26" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="496.11,397.36 495.66,397.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="496.11,394.26 496.11,397.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.66,394.26 495.66,397.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.88,397.13 495.88,394.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.11,394.48 496.11,394.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.11,394.26 495.66,394.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.66,394.26 495.66,394.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.66,394.48 496.11,394.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.11,397.36 496.11,397.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.11,397.13 495.66,397.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.66,397.13 495.66,397.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.66,397.36 496.11,397.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,346.98 491.56,357.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.12,346.98 491.12,356.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.56,343.89 491.12,343.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.56,346.98 491.12,346.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.56,343.89 491.56,346.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.12,343.89 491.12,346.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.34,346.76 491.34,344.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,344.11 491.56,343.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,343.89 491.12,343.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.12,343.89 491.12,344.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.12,344.11 491.56,344.11" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,346.98 491.56,346.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,346.76 491.12,346.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.12,346.76 491.12,346.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.12,346.98 491.56,346.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="314.16,297.23 314.16,301.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.89,284.36 322.89,290.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.83,314.47 328.83,316.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.94,314.47 327.94,316.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.94,307.81 327.94,310.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.83,307.81 328.83,310.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.83,310.3 328.83,310.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.94,297.31 327.94,297.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.83,297.31 328.83,296.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.94,297.31 328.83,297.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="327.94,305.27 328.83,305.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="328.83,305.05 332.58,305.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332.58,305.16 332.43,303.97 331.9,302.89 331.07,302.04 330.01,301.48 328.83,301.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.83,304.93 332.58,304.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.83,304.93 328.83,304.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.83,305.05 328.83,304.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.83,297.53 328.83,297.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.83,297.65 328.83,297.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.83,297.65 332.58,297.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.83,301.29 330.01,301.1 331.07,300.55 331.9,299.69 332.43,298.61 332.58,297.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.83,297.53 332.58,297.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.83,297.53 328.83,297.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.83,297.31 327.94,297.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.94,297.31 327.94,297.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.94,297.53 328.83,297.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.83,305.27 328.83,305.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="328.83,305.05 327.94,305.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.94,305.05 327.94,305.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.94,305.27 328.83,305.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.82,365.44 305.27,365.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="304.82,365.66 300.85,365.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.85,365.54 300.96,366.59 301.34,367.58 301.97,368.43 302.8,369.08 303.78,369.49 304.82,369.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.82,365.78 300.85,365.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.82,365.78 304.82,365.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.82,365.66 304.82,365.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.27,365.44 305.27,365.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.27,365.66 304.82,365.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.82,365.66 304.82,365.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.82,365.44 305.27,365.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.82,372.73 305.27,372.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="304.82,369.63 305.27,369.63" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="304.82,372.73 304.82,369.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.27,372.73 305.27,369.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.04,369.86 305.04,372.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.27,372.51 305.27,372.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.27,372.73 304.82,372.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.82,372.73 304.82,372.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.82,372.51 305.27,372.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.27,369.63 305.27,369.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.27,369.86 304.82,369.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.82,369.86 304.82,369.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.82,369.63 305.27,369.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.27,364.33 305.27,365.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="304.82,364.28 304.82,365.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="304.82,372.73 304.82,382.34" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="305.27,372.73 305.27,382.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="304.82,364.28 286.34,364.28" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="305.27,363.83 286.34,363.83" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="304.82,382.34 301.73,382.34" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="305.27,382.78 301.73,382.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="345.93,289.91 348.58,289.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="345.93,289.91 345.93,305.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="348.58,305.44 345.93,305.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="348.58,289.91 348.58,305.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="348.14,307.31 348.14,307.46" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.58,307.46 348.14,307.46" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.14,307.68 344.16,307.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="344.16,307.57 344.27,308.62 344.65,309.6 345.28,310.45 346.11,311.11 347.09,311.52 348.14,311.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.14,307.81 344.17,307.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.14,307.81 348.14,307.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.14,307.68 348.14,307.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.14,307.46 348.14,307.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.14,307.68 348.58,307.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,307.68 348.58,307.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,307.46 348.14,307.46" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,317.3 348.58,325.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.14,317.3 348.14,318.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.58,311.66 348.14,311.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.58,317.3 348.14,317.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.58,311.66 348.58,317.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.14,311.66 348.14,317.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.36,317.08 348.36,311.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,311.88 348.58,311.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,311.66 348.14,311.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.14,311.66 348.14,311.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.14,311.88 348.58,311.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,317.3 348.58,317.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,317.08 348.14,317.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.14,317.08 348.14,317.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.14,317.3 348.58,317.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.67,306.5 312.55,306.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.13,306.5 288.91,306.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.13,306.06 288.91,306.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="312.55,306.5 312.55,306.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.13,306.5 308.13,306.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="312.33,306.5 312.33,310.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.35,306.5 308.49,307.55 308.9,308.53 309.56,309.36 310.41,309.99 311.39,310.37 312.45,310.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.2,306.5 312.2,310.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.2,306.5 312.2,306.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.33,306.5 312.2,306.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.35,306.06 308.13,306.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.13,306.06 308.13,306.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.13,306.5 308.35,306.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="308.35,306.5 308.35,306.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.55,306.06 312.33,306.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.33,306.06 312.33,306.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.33,306.5 312.55,306.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.55,306.5 312.55,306.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="287.03,306.5 286.34,306.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="316.8,271.73 316.8,271.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="317.24,271.73 317.24,271.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="316.8,279.74 316.8,279.8" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="317.24,279.74 317.24,279.8" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="316.8,271.79 317.24,271.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="316.8,279.74 317.24,279.74" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="316.8,272.01 313.04,272.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.05,271.9 313.2,273.09 313.72,274.16 314.56,275.02 315.62,275.58 316.8,275.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.8,272.13 313.05,272.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.8,272.13 316.8,272.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.8,272.01 316.8,272.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.8,279.52 316.8,279.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.8,279.41 316.8,279.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.8,279.41 313.05,279.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.8,275.77 315.62,275.96 314.56,276.51 313.72,277.37 313.2,278.45 313.05,279.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.8,279.52 313.04,279.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.8,279.52 316.8,279.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.8,279.74 317.24,279.74" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.24,279.74 317.24,279.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.24,279.52 316.8,279.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.8,271.79 316.8,272.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.8,272.01 317.24,272.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.24,272.01 317.24,271.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.24,271.79 316.8,271.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.61,176.43 382.61,172.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="380.73,176.43 380.73,172.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="382.39,176.43 382.39,172.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="380.95,176.43 380.95,175.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="381.74,175.4 381.74,172.56" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="381.52,175.18 381.52,172.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="380.95,172.56 381.74,172.56" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="380.73,172.78 381.52,172.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="380.95,175.4 381.74,175.4" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="380.73,175.18 381.52,175.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="380.95,172.56 380.95,172.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.38,435.44 353.38,433.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.16,435.44 353.16,434.65" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.63,433.45 353.38,433.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.85,434.65 353.16,434.65" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.85,434.42 353.16,434.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.85,435.44 348.85,434.65" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.16,434.42 353.16,433.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.85,434.42 348.85,433.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="450.68,202.06 448.8,202.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.16,374.77 313.16,382.34" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="442.67,355.93 442.67,333.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="443.11,355.93 443.11,333.72" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="456.81,355.93 458.3,355.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="456.81,356.49 458.3,356.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="471.29,331.13 456.81,331.13" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="471.29,331.57 456.81,331.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.56,329.5 491.56,329.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,329.72 491.12,329.72" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.12,329.72 491.12,329.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.12,329.5 491.56,329.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,332.37 491.56,332.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,332.59 491.12,332.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.12,332.59 491.12,332.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.12,332.37 491.56,332.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.34,329.72 491.34,332.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.12,332.59 491.12,329.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,332.59 491.56,329.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,329.5 491.12,329.5" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.56,332.59 491.12,332.59" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.12,329.5 491.12,319.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.56,329.5 491.56,319.51" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.12,336.79 491.12,336.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.12,336.57 491.56,336.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,336.57 491.56,336.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,336.79 491.12,336.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,336.57 495.54,336.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="495.53,336.69 495.42,335.63 495.04,334.65 494.41,333.8 493.58,333.14 492.61,332.73 491.56,332.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,336.44 495.53,336.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,336.44 491.56,336.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,336.57 491.56,336.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.56,336.79 491.12,336.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.12,338.24 491.12,336.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.56,338.24 491.56,336.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.12,319.07 511.65,319.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.56,319.51 511.65,319.51" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="511.04,319.51 511.04,338.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.47,254.8 486.7,254.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.19,254.8 493.41,254.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.29,254.8 499.52,254.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512,254.8 506.23,254.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.47,255.27 512.47,261.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.47,261.98 512.47,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.47,268.09 512.47,273.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.47,274.8 512.47,280.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.47,280.9 512.47,286.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.47,287.62 512.47,293.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.47,293.72 512.47,299.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.47,300.44 512.47,306.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.47,306.54 512.47,312.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.47,313.25 512.47,319.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.47,319.36 512.47,325.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.47,326.07 512.47,331.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.47,332.18 512.47,337.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.47,338.89 512.47,344.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.47,344.99 512.47,350.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.47,351.71 512.47,357.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.48,357.81 512.48,363.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.48,364.52 512.48,370.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.48,370.63 512.48,376.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.48,377.34 512.48,383.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.48,383.45 512.48,389.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.48,390.16 512.48,395.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.48,396.27 512.48,402.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.48,402.98 512.48,408.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.48,409.08 512.48,414.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.48,415.8 512.48,421.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.48,421.9 512.48,427.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512.47,428.61 512.47,434.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="505.29,434.86 499.52,434.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="512,434.86 506.23,434.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.47,434.86 486.7,434.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.77,434.86 486.37,434.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.19,434.86 493.41,434.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.47,436.27 474.95,436.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.5,436.54 474.95,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.92,436.54 482.47,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.63,436.54 485.07,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.56,436.54 459.01,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.53,436.54 466.98,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="466.53,436.27 459.01,436.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="474.5,436.27 466.98,436.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="458.56,436.27 451.04,436.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.44,436.27 440.91,436.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.88,436.54 448.44,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="450.59,436.54 451.04,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.88,436.1 450.59,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.92,436.1 484.63,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.5,436.27 424.97,436.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.47,436.27 432.94,436.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="440.47,436.54 440.91,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.5,436.54 432.94,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.53,436.27 417,436.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="416.56,436.54 417,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.85,436.54 414.41,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.53,436.54 424.97,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.85,436.1 416.56,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.41,436.27 406.88,436.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.44,436.27 398.91,436.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.47,436.27 390.94,436.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.5,436.27 382.97,436.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.5,436.54 390.94,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.47,436.54 398.91,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="406.44,436.54 406.88,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.37,436.27 372.85,436.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.82,436.54 380.37,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.53,436.54 382.97,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.82,436.1 382.53,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.4,436.27 364.88,436.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.43,436.27 356.91,436.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="364.43,436.54 364.88,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.4,436.54 372.85,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.34,436.54 346.78,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.49,436.54 348.94,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.46,436.27 348.94,436.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="356.46,436.54 356.91,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.78,436.1 348.49,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.43,436.27 314.9,436.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.4,436.27 322.87,436.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.37,436.27 330.84,436.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.37,436.54 338.81,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.4,436.54 330.84,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.43,436.54 322.87,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.9,434.85 310.68,434.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.75,436.54 312.31,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.46,436.54 314.9,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.75,436.1 314.46,436.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.72,427.67 297.72,421.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.72,434.38 297.72,428.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.19,434.85 303.96,434.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.72,421.57 297.72,415.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.72,414.86 297.72,409.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.72,408.75 297.72,402.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.72,389.22 297.72,383.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.72,395.93 297.72,390.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="297.72,402.04 297.72,396.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.15,383.62 285.37,383.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.14,383.62 297.72,383.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,383.12 284.9,377.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,364.52 284.9,370.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,370.63 284.9,376.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,344.99 284.9,350.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,351.71 284.9,357.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,357.81 284.9,363.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,332.18 284.9,337.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,338.89 284.9,344.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,313.25 284.9,319.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,319.36 284.9,325.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,326.07 284.9,331.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,300.44 284.9,306.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,306.54 284.9,312.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,287.62 284.9,293.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,293.72 284.9,299.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,274.8 284.9,280.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,280.9 284.9,286.68" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,261.98 284.9,267.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,268.09 284.9,273.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.9,255.27 284.9,261.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.37,254.8 291.15,254.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.08,254.8 297.86,254.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.19,254.8 303.96,254.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.9,254.8 310.68,254.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.17,435.88 479.6,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.17,435.66 479.6,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.82,435.66 482.25,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.82,435.88 482.25,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.6,435.44 479.82,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.82,435.44 479.82,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.82,436.1 479.6,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.6,436.1 479.6,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.25,435.44 482.47,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.47,435.44 482.47,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.47,436.1 482.25,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.25,436.1 482.25,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.95,435.44 475.17,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.17,435.44 475.17,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.17,436.1 474.95,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.95,436.1 474.95,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458.56,435.44 458.34,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458.34,435.44 458.34,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458.34,436.1 458.56,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458.56,436.1 458.56,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.26,435.44 451.04,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.04,435.44 451.04,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.04,436.1 451.26,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="451.26,436.1 451.26,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="453.91,435.44 453.69,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="453.69,435.44 453.69,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="453.69,436.1 453.91,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="453.91,436.1 453.91,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="453.69,435.88 451.26,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="453.69,435.66 451.26,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458.34,435.66 453.91,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458.34,435.88 453.91,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.13,435.88 445.57,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.13,435.66 445.57,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.79,435.66 448.22,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.79,435.88 448.22,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.57,435.44 445.79,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.79,435.44 445.79,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.79,436.1 445.57,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.57,436.1 445.57,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.22,435.44 448.44,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.44,435.44 448.44,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.44,436.1 448.22,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.22,436.1 448.22,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="440.91,435.44 441.13,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.13,435.44 441.13,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.13,436.1 440.91,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="440.91,436.1 440.91,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.53,435.44 424.31,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.31,435.44 424.31,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.31,436.1 424.53,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.53,436.1 424.53,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.22,435.44 417,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417,435.44 417,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417,436.1 417.22,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.22,436.1 417.22,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="419.88,435.44 419.66,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="419.66,435.44 419.66,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="419.66,436.1 419.88,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="419.88,436.1 419.88,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="419.66,435.88 417.22,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="419.66,435.66 417.22,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.31,435.66 419.88,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.31,435.88 419.88,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.1,435.88 411.53,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.1,435.66 411.53,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.75,435.66 414.19,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.75,435.88 414.19,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.53,435.44 411.75,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.75,435.44 411.75,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.75,436.1 411.53,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.53,436.1 411.53,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.19,435.44 414.41,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.41,435.44 414.41,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.41,436.1 414.19,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.19,436.1 414.19,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.88,435.44 407.1,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.1,435.44 407.1,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.1,436.1 406.88,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="406.88,436.1 406.88,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.07,435.88 377.5,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.07,435.66 377.5,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.72,435.66 380.15,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.72,435.88 380.15,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.5,435.44 377.72,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.72,435.44 377.72,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.72,436.1 377.5,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="377.5,436.1 377.5,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.15,435.44 380.37,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.37,435.44 380.37,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.37,436.1 380.15,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="380.15,436.1 380.15,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="372.85,435.44 373.07,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.07,435.44 373.07,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="373.07,436.1 372.85,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="372.85,436.1 372.85,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.5,435.44 390.28,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.28,435.44 390.28,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.28,436.1 390.5,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.5,436.1 390.5,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.19,435.44 382.97,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.97,435.44 382.97,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.97,436.1 383.19,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="383.19,436.1 383.19,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.84,435.44 385.62,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.62,435.44 385.62,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.62,436.1 385.84,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.84,436.1 385.84,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.62,435.88 383.19,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.62,435.66 383.19,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.28,435.66 385.84,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.28,435.88 385.84,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.43,435.44 322.21,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.21,435.44 322.21,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.21,436.1 322.43,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.43,436.1 322.43,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.12,435.44 314.9,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="314.9,435.44 314.9,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="314.9,436.1 315.12,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.12,436.1 315.12,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.78,435.44 317.55,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.55,435.44 317.55,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.55,436.1 317.78,436.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.78,436.1 317.78,435.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.55,435.88 315.12,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="317.55,435.66 315.12,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.21,435.66 317.78,435.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.21,435.88 317.78,435.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="446.52,250.72 448.85,252.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="443.01,250.88 440.89,252.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.66,252.16 355.15,253.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="350,252.17 348.52,253.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.99,233.44 354.54,234.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="350,233.56 348.58,234.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.68,271.73 484.68,256.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.48,172.17 313.41,172.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="305.27,363.83 312.67,363.83" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="305.27,364.33 312.67,364.33" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="312.67,364.33 312.67,382.34" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="312.67,332.74 312.67,336.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="313.16,332.74 313.16,336.06" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="313.16,340.48 313.16,356.34" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="335.87,354.87 335.87,358.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.87,358.86 335.7,358.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.7,358.86 335.7,354.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.7,354.87 335.53,354.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.68,358.86 339.58,357.78 339.18,356.78 338.51,355.93 337.63,355.3 336.61,354.94 335.53,354.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.9,358.86 339.68,358.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.68,358.86 339.68,359.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.68,359.36 339.9,359.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.9,359.36 339.9,358.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.7,358.86 335.48,358.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.48,358.86 335.48,359.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.48,359.36 335.7,359.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.7,359.36 335.7,358.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.9,358.86 340.57,358.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="339.9,359.36 340.57,359.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="328.83,319.41 343.27,319.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="328.83,318.92 343.27,318.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.14,319.41 348.14,325.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="352.57,329.47 348.58,329.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,329.47 348.58,329.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,329.63 352.57,329.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.57,329.63 352.56,329.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.56,329.81 352.5,328.73 352.14,327.71 351.51,326.83 350.66,326.16 349.65,325.76 348.58,325.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,329.63 348.58,329.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,329.86 348.14,329.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.14,329.86 348.14,329.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.14,329.63 348.58,329.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,325.44 348.58,325.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,325.66 348.14,325.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.14,325.66 348.14,325.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.14,325.44 348.58,325.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,329.63 348.58,330.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.14,329.63 348.14,330.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.59,340.12 312.58,340.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.58,340.12 312.58,340.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.58,340.28 308.59,340.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.58,336.25 311.51,336.37 310.5,336.78 309.65,337.45 309.03,338.33 308.67,339.35 308.6,340.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.25,336.06 313.25,336.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.58,336.25 312.58,336.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.58,336.06 313.25,336.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.58,336.25 313.25,336.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.25,318.92 347.47,318.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.47,318.92 347.47,319.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.47,319.41 347.25,319.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.25,319.41 347.25,318.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.05,318.92 343.27,318.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.27,318.92 343.27,319.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.27,319.41 343.05,319.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.05,319.41 343.05,318.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.09,314.92 347.09,318.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.09,318.92 347.25,318.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.25,318.92 347.25,314.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.25,314.93 347.42,314.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.42,314.94 346.34,315 345.32,315.35 344.44,315.98 343.78,316.84 343.38,317.84 343.27,318.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="347.25,318.92 348.14,318.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="347.25,319.41 348.14,319.41" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.71,330.3 374.6,330.3" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="374.6,333.72 374.6,355.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="374.6,359.36 354.92,359.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="354.71,330.79 374.6,330.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.1,333.72 375.1,355.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="374.6,358.86 354.92,358.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="450.18,373.42 442.22,373.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="450.46,373.92 442.22,373.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="374.6,359.36 374.6,373.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.1,359.36 375.1,373.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="433.38,400.44 433.38,373.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="432.89,400.44 432.89,373.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="432.89,373.92 374.6,373.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="433.38,400.44 432.89,400.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="442.06,369.43 442.06,373.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.06,373.42 442.22,373.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.22,373.42 442.22,369.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.22,369.43 442.4,369.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.4,369.44 441.32,369.5 440.3,369.86 439.42,370.49 438.75,371.34 438.35,372.34 438.25,373.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.22,373.42 442.45,373.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.45,373.42 442.45,373.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.45,373.92 442.22,373.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="442.22,373.92 442.22,373.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.43,369.43 434.43,373.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.43,373.42 434.27,373.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.27,373.42 434.27,369.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.27,369.43 434.1,369.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.25,373.42 438.14,372.34 437.74,371.34 437.08,370.49 436.2,369.86 435.18,369.5 434.1,369.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.27,373.42 434.05,373.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.05,373.42 434.05,373.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.05,373.92 434.27,373.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.27,373.92 434.27,373.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.05,373.42 375.1,373.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="434.05,373.92 433.38,373.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="440.44,435.44 440.44,418.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="458.56,418.03 445.3,418.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="458.56,418.53 445.3,418.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="439.95,435.44 439.95,418.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="441.49,422.52 441.49,418.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.49,418.53 441.33,418.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.33,418.53 441.33,422.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.33,422.52 441.15,422.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.15,422.51 442.23,422.45 443.25,422.09 444.13,421.46 444.8,420.61 445.2,419.61 445.3,418.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.33,418.53 441.11,418.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.11,418.53 441.11,418.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.11,418.03 441.33,418.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.33,418.03 441.33,418.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.53,418.53 445.3,418.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.3,418.53 445.3,418.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.3,418.03 445.53,418.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="445.53,418.03 445.53,418.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="441.33,418.53 440.44,418.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="424.99,435.44 424.99,418.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="424.48,435.44 424.48,418.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="406.98,435.44 406.98,402.15" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="406.46,435.44 406.46,402.18" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="391.02,435.44 391.02,418.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="390.51,435.44 390.51,418.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="424.99,418.86 424.8,416.32 424.24,413.84 423.32,411.47 422.06,409.26 420.49,407.25 418.64,405.5 416.56,404.05 414.28,402.91 411.86,402.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="424.48,418.86 424.29,416.38 423.74,413.96 422.84,411.64 421.6,409.48 420.06,407.54 418.24,405.84 416.2,404.42 413.96,403.33 411.59,402.58" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="406.46,402.18 405.58,402.28" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="407.64,402.14 407.42,402.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.42,402.14 407.42,401.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.42,401.63 407.64,401.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.64,401.63 407.64,402.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.81,402.62 411.59,402.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.59,402.59 411.65,402.1" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.65,402.1 411.87,402.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="411.87,402.12 411.81,402.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.8,406.13 407.8,402.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.8,402.14 407.64,402.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.64,402.14 407.64,406.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.64,406.13 407.47,406.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.47,406.12 408.67,406.03 409.79,405.58 410.71,404.79 411.34,403.76 411.61,402.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="407.64,402.14 406.98,402.15" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="407.42,401.63 405.34,401.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="405.36,402.28 405.58,402.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="405.58,402.28 405.56,401.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="405.56,401.77 405.34,401.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="405.34,401.77 405.36,402.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="401.31,403.4 401.52,403.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="401.52,403.34 401.39,402.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="401.39,402.86 401.18,402.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="401.18,402.92 401.31,403.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="405.47,406.29 405.19,402.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="405.19,402.3 405.36,402.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="405.36,402.29 405.64,406.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="405.64,406.27 405.81,406.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="401.49,403.35 401.91,404.41 402.63,405.3 403.58,405.93 404.67,406.26 405.81,406.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="401.52,403.34 399.29,404.43 397.25,405.84 395.43,407.54 393.89,409.49 392.66,411.65 391.76,413.96 391.21,416.38 391.02,418.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="401.25,402.9 398.96,404.03 396.87,405.49 395.02,407.24 393.44,409.24 392.18,411.46 391.26,413.83 390.7,416.32 390.51,418.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="414.87,403.71 414.66,403.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.66,403.64 414.81,403.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.81,403.17 415.02,403.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.02,403.23 414.87,403.71" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.74,403.39 413.31,402.82 411.84,402.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="401.25,403.18 399.82,403.85 398.45,404.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.37,404.99 398.57,404.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.57,404.89 398.35,404.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.35,404.45 398.15,404.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="398.15,404.55 398.37,404.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.93,435.44 390.51,435.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="390.51,435.44 390.51,419.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="390.51,419.52 375.93,419.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.93,419.52 375.93,435.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.34,435.44 375.93,435.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.93,435.44 375.93,419.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="375.93,419.52 361.34,419.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.34,419.52 361.34,435.44" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.64,435.44 361.34,435.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="361.34,435.44 361.34,419.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.34,419.52 346.75,419.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="329.07,373.94 329.07,359.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="329.07,359.36 313.16,359.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="313.16,359.36 313.16,373.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="313.16,373.94 329.07,373.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.15,407.98 313.74,407.98" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.74,407.98 313.74,389.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.74,389.69 299.15,389.69" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="299.15,392.07 299.15,407.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="338.78,417.92 338.78,403.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.78,403.34 322.87,403.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="322.87,403.34 322.87,417.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="322.87,417.92 338.78,417.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="338.78,403.34 338.78,388.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.78,388.75 322.87,388.75" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="322.87,388.75 322.87,403.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="322.87,403.34 338.78,403.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="329.07,383.67 329.07,373.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="329.07,373.94 313.16,373.94" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.16,373.94 313.16,382.34" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="314.54,383.67 329.07,383.67" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="416.98,389.83 432.89,389.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="432.89,389.83 432.89,373.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="432.89,373.92 416.98,373.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="416.98,373.92 416.98,389.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.06,389.83 416.98,389.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="416.98,389.83 416.98,373.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="416.98,373.92 401.06,373.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="401.06,373.92 401.06,389.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="386.48,384.22 390.46,389.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="390.46,389.83 401.06,389.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.06,389.83 401.06,373.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="401.06,373.92 386.48,373.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="386.48,373.92 386.48,384.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.28,384.22 346.7,384.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="380.73,384.22 361.28,384.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="390.46,389.83 386.48,384.22" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.01,373.92 374.6,373.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="374.6,373.92 374.6,359.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="360.01,359.36 360.01,373.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="345.43,369.97 360.01,369.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="360.01,369.97 360.01,359.36" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="345.43,359.36 345.43,369.97" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="438.69,398.7 438.69,386.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="438.69,398.7 438.82,399.36 439.2,399.93 439.76,400.3 440.43,400.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="442,396.03 442,386.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="442,396.03 442.15,396.58 442.55,396.98 443.09,397.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.8,382.34 442.67,382.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="450.46,385.66 442.67,385.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="442.67,382.34 441.44,382.54 440.33,383.1 439.45,383.98 438.88,385.09 438.69,386.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="442.67,385.66 442.34,385.75 442.09,385.99 442,386.32" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="448.8,408.03 434.21,408.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="432.22,409.22 434.21,409.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.21,409.22 434.21,407.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.21,407.23 432.22,407.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.22,407.23 432.22,409.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.61,407.98 384.25,407.68 385.8,407.05 387.19,406.12 388.36,404.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.74,396.76 396.33,397.91 394.05,399.32 391.95,400.97 390.04,402.85 388.36,404.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="404.42,395.23 401.54,395.83 398.74,396.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="407.29,395 404.42,395.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="410.16,395.23 407.29,395" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.47,401.54 430.83,401.42 432.15,401.05 433.38,400.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="423.17,411.16 425.11,412.99 427.26,414.58 429.59,415.88 432.06,416.89 434.64,417.6 437.28,417.98 439.95,418.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.78,407.55 339.84,409.37 341.19,410.99 342.77,412.37 344.56,413.48 346.51,414.28 348.56,414.75 350.66,414.88 352.76,414.67 354.79,414.13 356.7,413.26 358.45,412.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.58,410.91 361.81,410.98 360.08,411.38 358.45,412.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.07,412.3 367.34,411.47 365.49,411 363.58,410.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.07,412.3 371.61,413.56 374.3,414.46 377.1,414.98 379.93,415.11 382.76,414.85 385.53,414.2 388.17,413.17 390.66,411.79 392.92,410.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="334.36,359.36 333.27,361.96 332.49,364.67 332.02,367.46 331.86,370.27 332.03,373.09 332.52,375.87 333.31,378.58 334.41,381.18 335.8,383.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.84,388.74 338.03,386.92 337.01,385.21 335.8,383.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.53,406.65 374.05,407.42 375.66,407.95 377.35,408.22 379.05,408.23 380.73,407.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.53,406.65 370.44,405.57 368.23,404.81 365.92,404.37 363.58,404.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.58,404.28 361.23,404.37 358.93,404.81 356.71,405.57 354.62,406.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.49,401.62 345.3,403.04 345.5,404.45 346.06,405.76 346.94,406.87 348.09,407.72 349.41,408.23 350.83,408.38 352.24,408.15 353.53,407.56 354.62,406.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.07,359.36 340.78,361.38 339.75,363.55 339.03,365.84 338.61,368.2 338.5,370.6 338.71,372.99 339.23,375.33 340.05,377.58 341.16,379.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.73,383.81 348.58,383.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="382.61,384.33 346.7,384.33" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="346.7,384.22 346.7,384.33" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="380.73,383.81 380.73,384.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="382.61,384.22 382.61,384.33" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="342.07,359.36 340.78,361.38 339.75,363.55 339.03,365.84 338.61,368.2 338.5,370.6 338.71,372.99 339.23,375.33 340.05,377.58 341.16,379.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.49,401.62 346.25,398.8 346.63,395.9 346.64,392.98 346.26,390.08 345.5,387.26 344.39,384.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.49,401.62 345.3,403.04 345.49,404.45 346.05,405.77 346.93,406.89 348.08,407.74 349.41,408.25 350.83,408.4 352.24,408.16 353.53,407.56 354.62,406.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.58,404.28 361.23,404.37 358.93,404.81 356.71,405.57 354.62,406.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.53,406.65 370.44,405.57 368.23,404.81 365.92,404.37 363.58,404.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.53,406.65 374.05,407.42 375.66,407.95 377.35,408.22 379.05,408.23 380.73,407.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.74,396.76 396.33,397.91 394.05,399.32 391.95,400.97 390.04,402.85 388.36,404.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.01,399.57 423.03,400.42 425.13,401.04 427.28,401.41 429.47,401.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.47,401.54 430.83,401.42 432.15,401.05 433.38,400.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.22,407.23 432.22,409.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="432.22,409.22 434.21,409.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.21,409.22 434.21,408.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="434.21,408.53 448.8,408.53" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="448.8,409.91 465.31,409.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="465.31,409.91 484.71,409.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.71,384.62 484.71,383.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="489.9,383.01 489.9,384" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="489.9,384 491.69,384" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.69,384 491.69,383.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="491.69,383.01 495.66,383.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.66,383.01 495.66,397.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.66,397.36 495.66,402.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.66,402.76 495.66,433.42" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="459.67,418.03 445.53,418.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="441.11,418.03 439.95,418.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="423.17,411.16 425.11,412.99 427.26,414.58 429.59,415.88 432.06,416.89 434.64,417.6 437.28,417.98 439.95,418.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="423.17,411.16 422,409.16 420.57,407.34 418.91,405.73 417.05,404.35 415.02,403.23" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="415.02,403.23 412.65,402.34 410.17,401.79 407.64,401.62" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="405.34,401.79 402.81,402.35 400.4,403.27 398.15,404.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.15,404.55 396.16,406.14 394.41,408 392.92,410.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="369.07,412.3 371.61,413.56 374.3,414.46 377.1,414.98 379.93,415.11 382.76,414.85 385.53,414.2 388.17,413.17 390.66,411.79 392.92,410.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.07,412.3 367.34,411.47 365.49,411 363.58,410.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.58,410.91 361.81,410.98 360.08,411.38 358.45,412.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.53,414.56 349.43,414.83 351.36,414.83 353.27,414.54 355.11,413.98 356.85,413.16 358.45,412.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.75,419.52 346.75,433.45" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.75,433.45 346.64,433.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="346.64,433.45 346.64,435.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="338.78,435.44 338.78,407.55" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.9,388.89 338.08,387.01 337.04,385.25 335.8,383.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="334.36,359.36 333.27,361.96 332.49,364.67 332.02,367.46 331.86,370.27 332.03,373.09 332.52,375.87 333.31,378.58 334.41,381.18 335.8,383.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="334.36,359.36 334.36,359.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="392.92,410.07 391.85,412.29 391.08,414.64 390.63,417.06 390.51,419.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="390.51,419.52 390.51,435.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="390.51,435.44 382.67,435.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="382.67,435.44 382.67,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.67,433.45 380.68,433.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.68,433.45 380.68,435.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.68,435.44 353.38,435.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.38,435.44 353.38,433.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="353.38,433.45 346.75,433.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="346.75,433.45 346.75,433.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="346.75,433.45 346.75,419.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.53,414.56 349.43,414.83 351.36,414.83 353.27,414.54 355.11,413.98 356.85,413.16 358.45,412.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.58,410.91 361.81,410.98 360.08,411.38 358.45,412.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.07,412.3 367.34,411.47 365.49,411 363.58,410.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.07,412.3 371.61,413.56 374.3,414.46 377.1,414.98 379.93,415.11 382.76,414.85 385.53,414.2 388.17,413.17 390.66,411.79 392.92,410.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="392.92,410.07 392.92,410.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="313.16,359.36 334.36,359.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="334.36,359.36 333.27,361.96 332.49,364.67 332.02,367.46 331.86,370.27 332.03,373.09 332.52,375.87 333.31,378.58 334.41,381.18 335.8,383.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.78,400.74 339.46,398.57 339.84,396.32 339.91,394.04 339.67,391.77 339.13,389.56 338.29,387.44 337.17,385.45 335.8,383.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.78,407.55 338.78,417.92" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="338.78,417.92 313.22,417.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="313.22,417.92 313.22,415.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="313.22,415.08 308.51,415.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.51,415.08 303.72,415.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="303.72,415.08 299.16,415.08" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="299.16,415.08 299.16,409.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="299.16,409.86 299.85,409.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="301.73,409.86 301.73,407.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.73,407.98 299.85,407.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.85,407.98 299.85,409.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.85,409.86 299.16,409.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="299.16,409.86 299.15,382.84" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="299.15,382.84 299.85,382.84" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="301.73,382.78 305.27,382.78" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="305.27,364.33 312.67,364.33" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="312.67,364.33 312.67,384.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="313.16,382.34 313.16,359.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="313.16,359.36 313.16,359.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="374.6,359.36 374.6,373.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="374.6,373.92 432.89,373.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="432.89,373.92 432.89,400.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="432.89,400.44 433.38,400.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="429.47,401.54 430.83,401.42 432.15,401.05 433.38,400.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.01,399.57 418.5,398.04 415.83,396.79 413.04,395.85 410.16,395.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="398.74,396.76 396.33,397.91 394.05,399.32 391.95,400.97 390.04,402.85 388.36,404.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.61,407.98 384.25,407.68 385.8,407.05 387.19,406.12 388.36,404.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.53,406.65 374.05,407.42 375.66,407.95 377.35,408.22 379.05,408.23 380.73,407.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="372.53,406.65 370.44,405.57 368.23,404.81 365.92,404.37 363.58,404.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="363.58,404.28 361.23,404.37 358.93,404.81 356.71,405.57 354.62,406.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.49,401.62 345.3,403.04 345.5,404.45 346.06,405.76 346.94,406.87 348.09,407.72 349.41,408.23 350.83,408.38 352.24,408.15 353.53,407.56 354.62,406.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="344.39,384.56 343.47,382.84 342.39,381.22 341.16,379.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.07,359.36 340.78,361.38 339.75,363.55 339.03,365.84 338.61,368.2 338.5,370.6 338.71,372.99 339.23,375.33 340.05,377.58 341.16,379.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.07,359.36 342.07,359.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="423.17,411.16 425.11,412.99 427.26,414.58 429.59,415.88 432.06,416.89 434.64,417.6 437.28,417.98 439.95,418.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="439.95,418.03 439.95,435.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="439.95,435.44 424.99,435.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="424.99,435.44 424.99,418.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="424.99,418.86 424.87,416.87 424.53,414.91 423.96,412.99 423.17,411.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="423.17,411.16 423.17,411.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.68,433.42 484.68,423.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.68,423.92 484.68,423.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.68,423.48 484.68,418.03" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="495.66,418.16 511.04,418.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="511.04,402.89 511.04,433.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="511.04,433.42 484.68,433.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="448.8,408.53 448.8,409.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.71,384.22 484.71,386.65" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.21,384.22 484.21,386.65" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.21,386.65 484.71,386.65" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.21,386.65 484.71,386.65 484.71,386.87 484.21,386.87 484.21,386.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="484.21,391.51 484.71,391.51 484.71,391.73 484.21,391.73 484.21,391.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.57,386.87 484.21,386.87 484.21,387.07 479.57,387.07 479.57,386.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="479.57,386.87 479.73,388.08 480.19,389.2 480.93,390.16 481.89,390.9 483.01,391.36 484.21,391.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="464.66,355.93 464.6,355.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="464.6,355.93 464.6,358.59" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="463.39,355.93 464.6,355.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="464.6,356.49 463.39,356.49" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="463.39,356.49 463.39,355.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="458.3,356.49 458.3,355.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="458.3,355.93 458.52,355.93 458.52,356.49 458.3,356.49 458.3,355.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.16,355.93 463.39,355.93 463.39,356.49 463.16,356.49 463.16,355.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="458.52,351.29 458.72,351.29 458.72,355.93 458.52,355.93 458.52,351.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.16,355.93 463,354.71 462.52,353.58 461.76,352.61 460.77,351.87 459.62,351.42 458.39,351.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="434.05,373.42 434.05,373.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="442.45,373.42 442.45,373.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.21,391.73 484.71,391.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.71,391.73 484.71,407.98" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.58,227.7 348.58,226.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.58,222.15 348.58,203.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.58,202.06 348.58,178.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.58,176.43 348.58,172.17" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.58,228.2 355.31,228.2" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.58,227.7 355.81,227.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="355.31,246.87 355.31,228.2" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="355.81,246.87 355.81,227.7" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="338.98,254.94 346.7,254.94" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="338.98,254.44 346.7,254.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.08,227.01 348.58,227.01" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.08,226.79 343.44,226.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.08,226.67 343.44,226.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.08,226.67 348.08,226.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.08,226.79 348.08,226.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,227.01 348.58,226.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,226.79 348.08,226.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.08,226.79 348.08,227.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.08,227.01 348.58,227.01" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,221.93 348.08,221.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="348.58,222.15 348.58,221.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,221.93 348.08,221.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.08,221.93 348.08,222.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.08,222.15 348.58,222.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.08,222.15 346.88,222.31 345.76,222.77 344.8,223.51 344.06,224.47 343.6,225.59 343.44,226.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.33,220.5 348.33,215.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,220.5 348.08,220.5 348.08,220.72 348.58,220.72 348.58,220.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,215.39 348.08,215.39 348.08,215.61 348.58,215.61 348.58,215.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,210.17 348.08,210.17 348.08,210.39 348.58,210.39 348.58,210.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.33,215.39 348.33,210.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.33,210.17 348.33,205.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,204.84 348.08,204.84 348.08,205.06 348.58,205.06 348.58,204.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.33,200.64 348.33,195.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,200.64 348.08,200.64 348.08,200.86 348.58,200.86 348.58,200.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,195.53 348.08,195.53 348.08,195.75 348.58,195.75 348.58,195.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,190.31 348.08,190.31 348.08,190.53 348.58,190.53 348.58,190.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.33,195.53 348.33,190.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.33,190.31 348.33,185.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,184.98 348.08,184.98 348.08,185.2 348.58,185.2 348.58,184.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.33,184.98 348.33,179.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="348.58,179.65 348.08,179.65 348.08,179.87 348.58,179.87 348.58,179.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.84,319.41 318.84,322.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="316.14,320.45 316.3,320.5 316.4,320.64 316.4,320.64 316.41,320.75 316.41,320.75 316.34,321.03 316.34,321.03 316.32,321.06 316.32,321.06 316.19,321.2 316.19,321.2 315.91,321.35 315.91,321.35 315.57,321.41 315.57,321.41 315.23,321.35 315.23,321.35 315.02,321.24 315.02,321.24 314.84,321.02 314.84,321.02 314.77,320.75 314.77,320.75 314.78,320.63 314.78,320.63 314.88,320.49 315.04,320.44 316.14,320.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.58,320.81 316.51,321.08 316.51,321.08 316.29,321.33 316.29,321.33 315.98,321.49 315.98,321.49 315.59,321.55 315.59,321.55 315.2,321.49 315.2,321.49 314.89,321.33 314.89,321.33 314.67,321.07 314.67,321.07 314.6,320.8 314.6,320.8 314.67,320.53 314.67,320.53 314.89,320.28 314.89,320.28 315.2,320.12 315.2,320.12 315.59,320.06 315.59,320.06 315.98,320.12 315.98,320.12 316.29,320.28 316.29,320.28 316.51,320.54 316.51,320.54 316.58,320.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.46,320.81 316.39,321.07 316.39,321.07 316.2,321.31 316.2,321.31 315.93,321.46 315.93,321.46 315.59,321.52 315.59,321.52 315.25,321.46 315.25,321.46 314.98,321.31 314.98,321.31 314.79,321.07 314.79,321.07 314.72,320.8 314.72,320.8 314.79,320.54 314.79,320.54 314.98,320.3 314.98,320.3 315.25,320.15 315.25,320.15 315.59,320.09 315.59,320.09 315.93,320.15 315.93,320.15 316.21,320.3 316.21,320.3 316.4,320.54 316.4,320.54 316.46,320.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.7,320.28 315.72,320.25 315.76,320.23 315.79,320.25 315.81,320.28 315.79,320.32 315.76,320.34 315.72,320.32 315.7,320.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.54,320.28 315.55,320.25 315.59,320.23 315.63,320.25 315.64,320.28 315.63,320.32 315.59,320.34 315.55,320.32 315.54,320.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.37,320.28 315.39,320.25 315.43,320.23 315.46,320.25 315.48,320.28 315.46,320.32 315.43,320.34 315.39,320.32 315.37,320.28" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.34,322.2 313.82,322.2 313.82,319.41 318.34,319.41 318.34,322.2" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.34,319.41 318.34,322.42" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="313.82,319.41 328.83,319.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.82,319.41 313.82,328.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.25,340.28 313.25,340.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.58,340.48 312.58,340.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.58,340.28 313.25,340.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.58,340.48 313.25,340.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="314.71,356.34 314.71,358.86 312.67,358.86 312.67,356.34 314.71,356.34" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.86,328.57 312.67,328.57 312.67,332.74 314.86,332.74 314.86,328.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.7,384.33 347.03,384.33 347.03,389.81 346.7,389.81 346.7,384.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="347.03,389.81 349.51,389.81 349.51,390.14 347.03,390.14 347.03,389.81" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.35,384.33 361.68,384.33 361.68,400.49 361.35,400.49 361.35,384.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.35,400.82 347.03,400.82 347.03,400.49 361.35,400.49 361.35,400.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="346.7,400.49 346.7,393.02 347.03,393.02 347.03,400.49 346.7,400.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="361.68,400.49 364.48,400.49 364.48,400.82 361.68,400.82 361.68,400.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.48,384.33 376.81,384.33 376.81,400.49 376.48,400.49 376.48,384.33" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.48,400.82 371.11,400.82 371.11,400.49 376.48,400.49 376.48,400.82" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="376.81,400.49 381.93,400.49 381.93,400.82 376.81,400.82 376.81,400.49" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="313.74,398.83 299.16,398.83" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="424.99,419.52 439.95,419.52" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="440.43,400.44 446.48,400.44" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="443.09,397.12 446.48,397.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="446.48,400.44 446.48,397.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="444.5,388.32 445.19,388.61 445.93,388.6 446.61,388.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="446.04,388.16 446.34,388.05 446.48,387.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="446.04,388.16 445.08,388.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="444.64,387.76 444.78,388.05 445.08,388.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="444.6,388.19 445.22,388.45 445.9,388.44 446.51,388.16" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="444.6,388.19 444.5,388.32" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="446.51,388.16 446.61,388.3" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="446.63,386.58 446.58,386.31 446.37,386.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="446.37,386.12 445.56,385.95 444.75,386.12" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="446.63,386.58 446.48,387.76" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="444.75,386.12 444.54,386.31 444.49,386.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="444.64,387.76 444.49,386.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="444.6,395.58 444.89,394.89 444.88,394.15 444.57,393.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="444.44,394.04 444.32,393.74 444.04,393.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="444.44,394.04 444.44,395.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="444.04,395.45 444.32,395.3 444.44,395.01" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="444.46,395.49 444.72,394.86 444.71,394.19 444.44,393.57" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="444.46,395.49 444.6,395.58" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="444.44,393.57 444.57,393.47" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="442.85,393.45 442.58,393.51 442.4,393.71" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="442.4,393.71 442.22,394.52 442.4,395.34" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="442.85,393.45 444.04,393.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="442.4,395.34 442.58,395.54 442.85,395.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="444.04,395.45 442.85,395.6" style="fill:none;stroke:fuchsia;stroke-width:0.5"/>
+<polyline points="357.51,172.17 357.51,173.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="357.51,173.04 348.58,173.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="364.21,172.17 364.21,173.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="364.21,173.04 380.73,173.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="382.61,173.04 458.56,173.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.87,186.21 483.87,202.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.87,203.94 483.87,227.7" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.87,229.58 483.87,254.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="484.16,339.91 483.99,339.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.83,332.01 482.83,332.95 483.82,332.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.82,338.14 482.94,338.14 482.94,339.91 483.22,339.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.85,246.5 440.89,246.5 440.89,252.47 448.85,252.47 448.85,246.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="354.54,229.58 348.58,229.58 348.58,234.81 354.54,234.81 354.54,229.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="355.15,247.53 348.52,247.53 348.52,253.5 355.15,253.5 355.15,247.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.89,306.26 314.54,306.26 314.54,318.53 322.89,318.53 322.89,306.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="306.24,277.93 306.15,279.45 306.73,278.87" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="306.24,277.93 306.69,279.63" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="306.88,278.52 307.57,277.83" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="307.77,276.91 307.75,276.83 307.74,276.63 307.76,276.51 307.81,276.36 307.97,276.2 308.06,276.21 308.12,276.25 308.21,276.37 308.25,276.53 308.25,276.73 308.24,277.05 308.08,278.25 308.61,277.71" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="308.62,275.55 308.53,275.75 308.51,276.06 308.58,276.51 308.65,276.75 308.8,277.12 308.94,277.28 309.07,277.25 309.15,277.17 309.25,276.97 309.26,276.65 309.19,276.21 309.12,275.97 308.98,275.6 308.83,275.44 308.7,275.47 308.62,275.55" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="309.42,275.98 310.11,275.29" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="310.61,275.71 310.16,274.01 311.15,275.17 310.7,273.47" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="311,273.16 311.65,274.67 311.39,272.78 312.04,274.29 311.77,272.4" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="312.01,272.57 312.07,272.41 312.12,272.05 312.57,273.75" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="306.03,280.96 305.95,282.47 306.53,281.9" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="306.03,280.96 306.49,282.66" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="306.68,281.54 307.37,280.85" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="307.56,279.94 307.54,279.86 307.54,279.66 307.55,279.54 307.61,279.38 307.76,279.23 307.86,279.23 307.92,279.27 308,279.4 308.05,279.56 308.05,279.76 308.04,280.08 307.87,281.27 308.41,280.73" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="308.42,278.57 308.32,278.77 308.31,279.09 308.38,279.53 308.45,279.78 308.59,280.14 308.74,280.31 308.87,280.27 308.95,280.2 309.04,280 309.05,279.68 308.98,279.24 308.92,278.99 308.77,278.63 308.63,278.46 308.49,278.5 308.42,278.57" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="309.22,279.01 309.91,278.31" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="310.41,278.73 309.96,277.04 310.95,278.2 310.49,276.5" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="310.8,276.19 311.45,277.7 311.19,275.81 311.83,277.31 311.57,275.42" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="311.87,275.63 311.85,275.55 311.84,275.35 311.86,275.23 311.92,275.07 312.07,274.92 312.17,274.93 312.23,274.97 312.31,275.09 312.35,275.25 312.36,275.45 312.35,275.77 312.18,276.97 312.72,276.43" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="307,304.16 306.92,305.68 307.49,305.1" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="307,304.16 307.45,305.86" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="307.64,304.75 308.33,304.06" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="308.61,302.55 308.52,302.75 308.51,303.07 308.58,303.51 308.64,303.75 308.79,304.12 308.93,304.28 309.07,304.25 309.15,304.17 309.24,303.97 309.25,303.66 309.18,303.21 309.12,302.97 308.97,302.6 308.83,302.44 308.69,302.47 308.61,302.55" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="309.3,302.38 309.28,302.3 309.27,302.1 309.29,301.98 309.34,301.82 309.5,301.67 309.6,301.67 309.66,301.71 309.74,301.83 309.78,302 309.79,302.2 309.77,302.52 309.61,303.71 310.14,303.17" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="310.18,302.21 310.87,301.52" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="311.38,301.94 310.92,300.24 311.91,301.4 311.46,299.7" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="312.35,337.81 312.27,339.33 312.84,338.75" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="312.35,337.81 312.8,339.51" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="312.99,338.4 313.68,337.71" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="313.96,336.2 313.87,336.39 313.86,336.71 313.93,337.16 313.99,337.4 314.14,337.77 314.28,337.93 314.42,337.9 314.49,337.82 314.59,337.62 314.6,337.3 314.53,336.86 314.47,336.62 314.32,336.25 314.18,336.09 314.04,336.12 313.96,336.2" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="314.65,336.03 314.63,335.95 314.62,335.75 314.64,335.63 314.69,335.47 314.85,335.31 314.95,335.32 315.01,335.36 315.09,335.48 315.13,335.65 315.14,335.85 315.12,336.17 314.96,337.36 315.49,336.82" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="315.53,335.86 316.22,335.17" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="316.27,333.89 316.92,335.4 316.65,333.51 317.3,335.01 317.04,333.12" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="333.66,362.49 333.58,364.01 334.15,363.43" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="333.66,362.49 334.11,364.19" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="334.3,363.08 334.99,362.38" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="335.12,361.03 335.54,360.61 335.48,361.48 335.6,361.37 335.7,361.37 335.76,361.41 335.86,361.62 335.91,361.78 335.93,362.06 335.9,362.3 335.8,362.5 335.69,362.61 335.55,362.65 335.49,362.6 335.41,362.48" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="336.04,360.11 335.95,360.3 335.94,360.62 336.01,361.06 336.07,361.31 336.22,361.67 336.36,361.84 336.5,361.8 336.57,361.73 336.67,361.53 336.68,361.21 336.61,360.77 336.54,360.53 336.4,360.16 336.26,359.99 336.12,360.03 336.04,360.11" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="336.81,359.34 336.76,359.49 336.72,359.73 336.73,359.93 336.75,360.21 336.86,360.62 336.97,360.82 337.05,360.95 337.17,361.03 337.27,361.04 337.42,360.88 337.48,360.72 337.51,360.49 337.5,360.28 337.48,360 337.37,359.6 337.27,359.4 337.18,359.27 337.06,359.19 336.96,359.18 336.81,359.34" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="337.29,360.6 337.66,360.85" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="337.69,359.69 338.38,359" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="339.03,357.43 338.91,357.34 338.77,357.38 338.62,357.53 338.52,357.73 338.49,357.96 338.53,358.13 338.62,358.25 338.68,358.29 338.77,358.3 339.05,358.23 339.15,358.23 339.21,358.27 339.29,358.4 339.35,358.64 339.32,358.88 339.23,359.07 339.07,359.23 338.94,359.26 338.82,359.18" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="339.89,328.41 339.13,329.72 339.91,329.47" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="339.89,328.41 339.53,330.13" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="340.2,329.22 341.13,328.92" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="341.86,327.77 342.42,327.59 341.98,328.34 342.13,328.29 342.22,328.34 342.25,328.41 342.25,328.63 342.22,328.8 342.11,329.06 341.97,329.26 341.8,329.39 341.65,329.44 341.51,329.41 341.47,329.34 341.46,329.2" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="343.1,327.37 342.92,327.5 342.77,327.78 342.63,328.21 342.58,328.45 342.54,328.84 342.59,329.06 342.73,329.09 342.84,329.05 343.01,328.92 343.16,328.64 343.3,328.22 343.35,327.97 343.39,327.58 343.34,327.37 343.2,327.33 343.1,327.37" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="344.13,327.03 344.01,327.15 343.87,327.34 343.79,327.53 343.68,327.79 343.59,328.2 343.59,328.43 343.61,328.57 343.68,328.7 343.77,328.75 343.97,328.68 344.09,328.57 344.23,328.37 344.32,328.19 344.42,327.93 344.51,327.52 344.51,327.29 344.49,327.14 344.42,327.01 344.34,326.96 344.13,327.03" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="343.99,328.37 344.2,328.76" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="344.75,327.75 345.68,327.44" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="345.94,328.05 346.3,326.33 346.66,327.81 347.03,326.09" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="347.44,325.96 347.33,327.59 347.96,325.79 347.85,327.42 348.48,325.62" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="485.79,382.87 485.7,384.38 486.28,383.81" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="485.79,382.87 486.24,384.56" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="486.86,382.31 486.77,382.19 486.65,382.1 486.56,382.1 486.4,382.25 486.35,382.41 486.31,382.65 486.32,382.85 486.34,383.13 486.45,383.53 486.56,383.74 486.64,383.86 486.76,383.95 486.86,383.95 487.01,383.8 487.07,383.64 487.1,383.4 487.09,383.2" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="487.12,382.04 487.1,381.96 487.1,381.76 487.12,381.64 487.17,381.48 487.32,381.33 487.42,381.33 487.48,381.37 487.56,381.5 487.61,381.66 487.61,381.86 487.6,382.18 487.43,383.37 487.97,382.83" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="488.21,380.44 487.82,380.83 487.98,381.59 488,381.48 488.09,381.28 488.21,381.16 488.34,381.13 488.46,381.21 488.57,381.42 488.61,381.58 488.64,381.86 488.6,382.1 488.51,382.3 488.39,382.41 488.26,382.45 488.2,382.4 488.12,382.28" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="358.92,171.27 358.84,172.79 359.41,172.21" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="358.92,171.27 359.37,172.97" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="359.99,170.71 359.91,170.59 359.79,170.51 359.69,170.5 359.53,170.66 359.48,170.81 359.44,171.05 359.45,171.25 359.48,171.53 359.58,171.94 359.69,172.14 359.77,172.27 359.89,172.35 359.99,172.35 360.14,172.2 360.2,172.04 360.23,171.8 360.23,171.6" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="360.2,170.4 360.25,170.25 360.3,169.89 360.76,171.59" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="360.8,169.39 361.22,168.96 361.17,169.84 361.28,169.73 361.38,169.73 361.44,169.77 361.54,169.98 361.59,170.14 361.61,170.42 361.58,170.66 361.49,170.85 361.37,170.97 361.24,171 361.18,170.96 361.09,170.84" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="457.07,181.39 456.99,182.91 457.56,182.33" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="457.07,181.39 457.52,183.09" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="458.14,180.83 458.06,180.71 457.94,180.63 457.84,180.62 457.68,180.77 457.63,180.93 457.59,181.17 457.6,181.37 457.63,181.65 457.73,182.06 457.84,182.26 457.92,182.38 458.04,182.47 458.14,182.47 458.29,182.32 458.35,182.16 458.38,181.92 458.38,181.72" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="458.35,180.52 458.4,180.36 458.45,180.01 458.91,181.7" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="459.34,179.12 458.95,179.51 459.11,180.27 459.13,180.15 459.22,179.96 459.33,179.84 459.47,179.81 459.59,179.89 459.69,180.1 459.74,180.26 459.76,180.54 459.73,180.78 459.64,180.97 459.52,181.09 459.39,181.12 459.33,181.08 459.24,180.96" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="340.62,436.31 340.54,437.82 341.12,437.25" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="340.62,436.31 341.08,438" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="341.69,435.75 341.61,435.63 341.49,435.54 341.39,435.54 341.24,435.69 341.18,435.85 341.15,436.09 341.15,436.29 341.18,436.57 341.29,436.97 341.39,437.18 341.47,437.3 341.59,437.39 341.69,437.39 341.85,437.24 341.9,437.08 341.93,436.84 341.93,436.64" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="341.96,435.48 341.94,435.4 341.93,435.2 341.95,435.08 342.01,434.92 342.16,434.77 342.26,434.77 342.32,434.82 342.4,434.94 342.44,435.1 342.45,435.3 342.44,435.62 342.27,436.81 342.81,436.27" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="342.58,434.35 343.12,433.81 343.19,435.89" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="485.93,357.81 485.85,359.33 486.43,358.75" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="485.93,357.81 486.39,359.51" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="487,357.26 486.92,357.13 486.8,357.05 486.7,357.05 486.55,357.2 486.49,357.36 486.46,357.6 486.46,357.8 486.49,358.08 486.6,358.48 486.7,358.69 486.78,358.81 486.9,358.89 487,358.9 487.15,358.74 487.21,358.59 487.24,358.35 487.24,358.15" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="487.27,356.99 487.25,356.91 487.24,356.71 487.26,356.59 487.31,356.43 487.47,356.28 487.57,356.28 487.63,356.32 487.71,356.45 487.75,356.61 487.76,356.81 487.75,357.13 487.58,358.32 488.12,357.78" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="487.98,356.18 488.03,356.02 488.08,355.66 488.54,357.36" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="463.21,364.98 463.13,366.49 463.71,365.92" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="463.21,364.98 463.67,366.68" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="464.28,364.42 464.2,364.3 464.08,364.21 463.98,364.21 463.83,364.36 463.77,364.52 463.74,364.76 463.74,364.96 463.77,365.24 463.88,365.64 463.98,365.85 464.06,365.97 464.18,366.06 464.28,366.06 464.44,365.91 464.49,365.75 464.53,365.51 464.52,365.31" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="464.55,364.15 464.53,364.07 464.52,363.87 464.54,363.75 464.6,363.59 464.75,363.44 464.85,363.44 464.91,363.49 464.99,363.61 465.03,363.77 465.04,363.97 465.03,364.29 464.86,365.48 465.4,364.94" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="465.32,363.38 465.3,363.3 465.29,363.1 465.31,362.98 465.37,362.82 465.52,362.67 465.62,362.67 465.68,362.72 465.76,362.84 465.8,363 465.81,363.2 465.8,363.52 465.63,364.71 466.17,364.18" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="463.21,368.61 463.13,370.13 463.71,369.55" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="463.21,368.61 463.67,370.31" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="464.28,368.06 464.2,367.93 464.08,367.85 463.98,367.85 463.83,368 463.77,368.16 463.74,368.4 463.74,368.6 463.77,368.88 463.88,369.28 463.98,369.49 464.06,369.61 464.18,369.69 464.28,369.7 464.44,369.54 464.49,369.39 464.53,369.15 464.52,368.95" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="464.55,367.79 464.53,367.71 464.52,367.51 464.54,367.39 464.6,367.23 464.75,367.08 464.85,367.08 464.91,367.12 464.99,367.25 465.03,367.41 465.04,367.61 465.03,367.93 464.86,369.12 465.4,368.58" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="465.25,366.58 465.67,366.15 465.62,367.03 465.73,366.92 465.83,366.92 465.89,366.96 465.99,367.17 466.04,367.33 466.06,367.61 466.03,367.85 465.94,368.04 465.82,368.16 465.68,368.19 465.62,368.15 465.54,368.03" style="fill:none;stroke:black;stroke-width:0.5"/>
+</svg>

ファイルの差分が大きいため隠しています
+ 21408 - 0
src/components/Map/MainMapComponent/images/SecondFloorC.svg


+ 5292 - 0
src/components/Map/MainMapComponent/images/ThirdFloorC.svg

@@ -0,0 +1,5292 @@
+<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="268.22 131.22 263.57 337.54">
+  <title>Produce by Acme CAD Converter</title>
+  <desc>Produce by Acme CAD Converter</desc>
+<polyline points="526.36,246.55 526.36,248.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.52,246.55 528.52,248.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,248.72 528.52,248.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,246.55 528.52,246.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,272.88 528.52,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,275.04 528.52,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.52,272.88 528.52,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,272.88 526.36,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,272.88 496.86,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,275.04 499.02,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,272.88 499.02,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,272.88 457.69,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.85,272.88 459.85,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,275.04 459.85,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,272.88 459.85,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,272.88 418.52,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.68,272.88 420.68,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,275.04 420.68,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,272.88 420.68,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,272.88 379.36,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.52,272.88 381.52,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,275.04 381.52,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,272.88 381.52,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,272.88 342.35,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,275.04 342.35,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.35,272.88 342.35,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,272.88 340.19,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,272.88 303.18,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,275.04 303.18,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.18,272.88 303.18,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,272.88 301.02,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="273.68,272.88 273.68,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,275.04 273.68,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,272.88 273.68,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,302.38 528.52,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,304.54 528.52,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.52,302.38 528.52,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,302.38 526.36,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,302.38 496.86,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,304.54 499.02,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,302.38 499.02,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,302.38 457.69,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.85,302.38 459.85,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,304.54 459.85,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,302.38 459.85,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,302.38 418.52,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.68,302.38 420.68,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,304.54 420.68,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,302.38 420.68,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,302.38 379.36,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.52,302.38 381.52,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,304.54 381.52,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,302.38 381.52,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,302.38 342.35,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,304.54 342.35,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.35,302.38 342.35,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,302.38 340.19,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,302.38 303.18,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,304.54 303.18,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.18,302.38 303.18,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,302.38 301.02,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,302.38 271.52,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,304.54 272.73,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,302.38 272.73,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,331.88 528.52,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,334.04 528.52,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.52,331.88 528.52,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,331.88 526.36,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,331.88 496.86,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.02,331.88 499.02,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,334.04 499.02,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,331.88 499.02,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,331.88 379.36,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.52,331.88 381.52,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,334.04 381.52,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,331.88 381.52,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,331.88 342.35,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,334.04 342.35,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.35,331.88 342.35,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,331.88 340.19,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,331.88 303.18,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,334.04 303.18,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.18,331.88 303.18,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,331.88 301.02,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,331.88 271.52,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="273.74,331.88 273.74,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,334.04 273.74,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,331.88 273.74,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,361.39 529.03,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,363.55 529.03,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,361.39 526.36,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,361.39 496.86,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.02,361.39 499.02,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,363.55 499.02,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,361.39 499.02,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,361.39 457.69,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.85,361.39 459.85,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,363.55 459.85,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,361.39 459.85,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,361.39 418.52,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.68,361.39 420.68,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,363.55 420.68,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,361.39 420.68,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,361.39 379.36,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.52,361.39 381.52,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,363.55 381.52,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,361.39 381.52,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,361.39 342.35,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,363.55 342.35,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.35,361.39 342.35,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,361.39 340.19,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,361.39 303.18,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,363.55 303.18,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.18,361.39 303.18,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,361.39 301.02,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,361.39 271.52,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="273.74,361.39 273.74,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,363.55 273.74,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,361.39 273.74,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,390.89 528.52,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,393.05 528.52,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.52,390.89 528.52,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,390.89 526.36,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,390.89 496.86,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.02,390.89 499.02,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,393.05 499.02,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,390.89 499.02,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,390.89 457.69,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.85,390.89 459.85,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,393.05 459.85,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,390.89 459.85,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,390.89 418.52,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.68,390.89 420.68,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,393.05 420.68,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,390.89 420.68,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,390.89 379.36,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.52,390.89 381.52,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,393.05 381.52,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,390.89 381.52,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,390.89 342.35,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,393.05 342.35,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.35,390.89 342.35,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,390.89 340.19,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,390.89 303.18,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,393.05 303.18,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.18,390.89 303.18,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,390.89 301.02,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,387.71 271.52,389.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="273.68,387.71 273.68,389.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,389.87 273.68,389.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,387.71 273.68,387.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,420.39 496.86,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.02,420.39 499.02,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,422.55 499.02,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,420.39 499.02,420.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,420.39 457.69,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.85,420.39 459.85,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,422.55 459.85,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,420.39 459.85,420.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,420.39 418.52,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.68,420.39 420.68,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,422.55 420.68,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,420.39 420.68,420.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,420.39 379.36,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.52,420.39 381.52,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,422.55 381.52,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,420.39 381.52,420.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,420.39 342.35,420.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,422.55 342.35,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.35,420.39 342.35,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,420.39 340.19,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,420.39 303.18,420.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,422.55 303.18,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.18,420.39 303.18,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,420.39 301.02,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.27,420.39 286.27,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.43,420.39 288.43,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.27,422.55 288.43,422.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.27,420.39 288.43,420.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.52,446.71 528.52,448.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.23,448.88 528.52,448.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.23,446.71 528.52,446.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.27,446.71 288.43,446.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.27,448.88 288.43,448.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.43,446.71 288.43,448.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.27,446.71 286.27,448.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.12,149.02 342.41,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.25,146.85 342.76,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.41,148.13 342.76,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,146.85 339.77,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,146.85 339.77,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,146.85 339.77,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.28,146.85 339.77,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.28,147.36 342.25,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.45,244.14 500.93,244.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.03,243.53 509.03,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.95,243.53 507.95,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.95,243.53 509.03,243.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.94,244.29 508.94,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.05,244.29 508.05,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.31,243.79 501.31,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.93,243.79 500.93,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.93,245.06 501.31,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="515.68,243.79 515.68,245.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="516.06,243.79 516.06,245.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.8,245.76 523.69,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.8,244.29 522.8,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.69,244.29 523.69,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.7,243.53 522.7,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.78,243.53 523.78,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,251.29 530.78,251.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,252.37 530.78,252.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,252.37 531.54,251.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,251.39 529.32,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,252.28 529.32,252.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.69,245.76 529.32,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,259.02 530.02,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,259.4 530.02,259.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,267.03 529.32,267.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,266.14 529.32,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,267.12 531.54,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,267.12 530.78,267.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,266.04 530.78,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,274.15 530.02,274.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,273.77 530.02,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,280.79 530.78,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,281.87 530.78,281.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,281.87 531.54,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,280.89 529.32,280.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,281.78 529.32,281.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,288.52 530.02,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,288.9 530.02,288.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.05,245.06 508.05,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.05,245.76 508.94,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.31,245.06 501.31,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.05,245.06 501.31,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.05,244.29 501.31,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.56,244.77 507.79,244.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.56,244.58 507.79,244.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="507.79,245.06 508.05,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.05,245.06 508.05,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.05,244.29 507.79,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="507.79,244.29 507.79,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.31,245.06 501.56,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.56,245.06 501.56,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.56,244.29 501.31,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.31,244.29 501.31,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="515.68,245.04 516.06,245.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="515.68,245.06 516.06,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="515.68,244.29 515.68,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.94,244.29 508.94,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="515.68,244.29 508.94,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="515.68,245.06 508.94,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.19,244.77 515.42,244.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.19,244.58 515.42,244.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="515.42,245.06 515.68,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="515.68,245.06 515.68,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="515.68,244.29 515.42,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="515.42,244.29 515.42,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.94,245.06 509.19,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.19,245.06 509.19,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.19,244.29 508.94,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.94,244.29 508.94,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="522.8,245.06 522.8,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.7,243.53 523.78,243.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="516.06,245.06 516.06,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.8,245.06 516.06,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.8,244.29 516.06,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="516.31,244.77 522.54,244.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="516.31,244.58 522.54,244.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="522.54,245.06 522.8,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="522.8,245.06 522.8,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="522.8,244.29 522.54,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="522.54,244.29 522.54,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="516.06,245.06 516.31,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="516.31,245.06 516.31,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="516.31,244.29 516.06,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="516.06,244.29 516.06,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.69,245.06 523.94,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.94,245.06 523.94,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.94,244.29 523.69,244.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.69,244.29 523.69,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="522.7,244.29 522.8,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.69,244.29 523.78,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,251.39 530.02,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,244.9 530.78,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,244.9 530.02,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,251.39 530.78,251.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,251.13 530.02,251.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,251.13 530.02,251.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,251.39 530.78,251.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,259.02 530.02,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,259.02 530.02,259.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,259.02 530.78,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,252.28 530.78,252.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,252.28 529.32,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,259.02 530.78,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,252.28 530.02,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,252.28 530.78,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.49,258.76 530.49,252.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,258.76 530.3,252.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,252.53 530.78,252.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,252.28 530.02,252.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,252.28 530.02,252.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,252.53 530.78,252.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,259.02 530.78,258.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,258.76 530.02,258.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,258.76 530.02,259.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,259.02 530.78,259.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,259.4 530.78,259.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,259.4 530.02,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,266.14 530.78,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,259.4 530.02,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,259.4 530.78,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.49,265.88 530.49,259.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,265.88 530.3,259.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,259.65 530.78,259.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,259.4 530.02,259.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,259.4 530.02,259.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,259.65 530.78,259.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,266.14 530.78,265.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,265.88 530.02,265.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,265.88 530.02,266.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,266.14 530.78,266.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,273.77 530.02,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,273.77 530.02,274.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,273.77 530.78,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,267.03 529.32,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,267.03 530.78,267.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,273.77 530.78,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,267.03 530.02,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,267.03 530.78,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.49,273.51 530.49,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,273.51 530.3,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,267.28 530.78,267.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,267.03 530.02,267.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,267.03 530.02,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,267.28 530.78,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,273.77 530.78,273.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,273.51 530.02,273.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,273.51 530.02,273.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,273.77 530.78,273.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,274.15 530.78,274.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,274.15 530.02,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,280.89 530.78,280.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,274.15 530.02,280.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,274.15 530.78,280.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.49,280.63 530.49,274.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,280.63 530.3,274.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,274.4 530.78,274.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,274.15 530.02,274.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,274.15 530.02,274.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,274.4 530.78,274.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,280.89 530.78,280.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,280.63 530.02,280.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,280.63 530.02,280.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,280.89 530.78,280.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,288.52 530.02,288.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,288.52 530.78,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,281.78 530.78,281.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,288.52 530.78,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,281.78 530.02,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,281.78 530.78,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.49,288.26 530.49,282.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,288.26 530.3,282.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,282.03 530.78,281.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,281.78 530.02,281.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,281.78 530.02,282.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,282.03 530.78,282.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,288.52 530.78,288.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,288.26 530.02,288.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,288.26 530.02,288.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,288.52 530.78,288.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,288.9 530.78,288.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,288.9 530.02,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,295.64 530.78,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,288.9 530.02,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,288.9 530.78,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.49,295.39 530.49,289.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,295.39 530.3,289.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,289.15 530.78,288.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,288.9 530.02,288.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,288.9 530.02,289.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,289.15 530.78,289.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,295.64 530.78,295.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,295.39 530.02,295.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,295.39 530.02,295.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,295.64 530.78,295.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,384.15 530.78,383.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,383.89 530.02,383.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,383.89 530.02,384.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,384.15 530.78,384.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,377.66 530.78,377.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,377.41 530.02,377.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,377.41 530.02,377.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,377.66 530.78,377.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.49,383.89 530.49,377.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,383.89 530.3,377.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,377.41 530.78,384.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,377.41 530.02,384.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,384.15 530.78,384.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,377.41 530.02,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.18,377.41 530.94,377.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,377.03 530.78,376.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,376.77 530.02,376.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,376.77 530.02,377.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,377.03 530.78,377.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,370.54 530.78,370.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,370.29 530.02,370.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,370.29 530.02,370.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,370.54 530.78,370.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.49,376.77 530.49,370.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,376.77 530.3,370.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,370.29 530.78,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,370.29 530.02,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.18,377.03 530.94,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,370.29 529.32,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,370.29 530.78,370.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.94,377.03 530.94,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,377.03 530.02,377.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,369.4 530.78,369.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,369.14 530.02,369.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,369.14 530.02,369.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,369.4 530.78,369.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,362.91 530.78,362.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,362.66 530.02,362.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,362.66 530.02,362.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,362.91 530.78,362.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.49,369.14 530.49,362.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,369.14 530.3,362.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,362.66 530.78,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,362.66 530.02,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,369.4 530.78,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.18,362.66 530.94,362.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.18,362.28 530.94,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.94,362.28 530.94,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.18,362.28 530.18,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,377.41 530.02,377.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,377.03 530.02,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,370.29 529.32,370.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,369.4 529.32,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,370.38 531.54,369.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,370.38 530.78,370.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,369.3 530.78,369.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.23,362.28 530.02,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.23,362.66 530.02,362.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,362.66 530.02,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.03,361.39 529.03,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,369.4 529.32,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,384.05 530.78,384.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,385.13 530.78,385.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,385.13 531.54,384.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,384.15 529.32,384.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,385.04 529.32,385.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,391.78 530.02,391.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,392.16 530.02,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,384.15 530.78,384.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,391.78 530.02,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,391.78 530.78,391.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,385.04 530.78,385.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,391.78 530.78,391.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,385.04 530.02,391.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,385.04 530.78,391.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.49,391.52 530.49,385.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,391.52 530.3,385.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,385.29 530.78,385.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,385.04 530.02,385.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,385.04 530.02,385.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,385.29 530.78,385.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,391.78 530.78,391.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,391.52 530.02,391.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,391.52 530.02,391.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,391.78 530.78,391.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,392.16 530.78,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,392.16 530.02,391.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,398.9 530.78,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,392.16 530.02,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,392.16 530.78,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.49,398.64 530.49,392.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,398.64 530.3,392.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,392.41 530.78,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,392.16 530.02,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,392.16 530.02,392.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,392.41 530.78,392.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,398.9 530.78,398.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,398.64 530.02,398.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,398.64 530.02,398.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,398.9 530.78,398.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="529.32,385.04 529.32,391.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,413.65 530.78,413.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,413.4 530.02,413.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,413.4 530.02,413.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,413.65 530.78,413.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,407.17 530.78,406.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,406.91 530.02,406.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,406.91 530.02,407.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,407.17 530.78,407.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.49,413.4 530.49,407.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,413.4 530.3,407.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,406.91 530.78,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,406.91 530.02,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,413.65 530.78,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,406.91 530.02,406.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,406.91 530.78,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,406.53 530.78,406.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,406.27 530.02,406.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,406.27 530.02,406.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,406.53 530.78,406.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,400.04 530.78,399.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,399.79 530.02,399.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,399.79 530.02,400.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,400.04 530.78,400.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.49,406.27 530.49,400.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,406.27 530.3,400.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,399.79 530.78,406.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,399.79 530.02,406.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,406.53 530.78,406.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,399.79 529.32,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,399.79 530.78,399.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,406.53 530.78,406.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,406.53 530.02,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,398.9 530.78,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,406.91 530.02,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,406.53 530.02,406.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,399.79 529.32,399.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,398.9 529.32,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,399.88 531.54,398.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,399.88 530.78,399.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,398.8 530.78,398.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,398.9 530.78,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,413.65 530.78,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,413.56 530.78,413.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,414.64 530.78,414.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,414.64 531.54,413.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,413.65 529.32,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,414.54 529.32,414.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,421.28 530.02,421.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,421.66 530.02,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,413.65 530.78,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,421.28 530.02,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,421.28 530.78,421.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,414.54 530.78,414.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,414.54 529.32,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,421.28 530.78,421.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,414.54 530.02,421.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,414.54 530.78,421.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.49,421.03 530.49,414.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,421.03 530.3,414.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,414.8 530.78,414.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,414.54 530.02,414.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,414.54 530.02,414.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,414.8 530.78,414.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.77,146.85 339.77,147.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,421.28 530.78,421.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,421.03 530.02,421.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,421.03 530.02,421.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,421.28 530.78,421.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,421.66 530.78,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,414.54 529.32,428.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,413.65 530.78,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,421.66 530.02,421.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,421.66 530.02,421.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,421.66 530.02,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.69,451.13 523.78,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.7,451.13 522.8,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.69,450.37 523.94,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.94,450.37 523.94,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.94,451.13 523.69,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.69,451.13 523.69,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.17,450.37 523.69,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,451.13 530.43,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="516.06,450.37 516.31,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="516.31,450.37 516.31,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="516.31,451.13 516.06,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="516.06,451.13 516.06,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="522.54,450.37 522.8,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="522.8,450.37 522.8,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="522.8,451.13 522.54,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="522.54,451.13 522.54,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="516.31,450.66 522.54,450.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="516.31,450.85 522.54,450.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="522.8,451.13 516.06,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.8,450.37 516.06,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="516.06,450.37 516.06,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.7,451.9 523.78,451.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.8,450.37 522.8,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.94,450.37 509.19,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.19,450.37 509.19,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.19,451.13 508.94,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.94,451.13 508.94,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="515.42,450.37 515.68,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="515.68,450.37 515.68,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="515.68,451.13 515.42,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="515.42,451.13 515.42,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.19,450.66 515.42,450.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="509.19,450.85 515.42,450.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="515.68,450.37 508.94,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="515.68,451.13 508.94,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.94,451.13 508.94,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="515.68,451.13 515.68,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="515.68,450.37 516.06,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="515.68,450.38 516.06,450.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.31,450.37 501.56,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.56,450.37 501.56,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.56,451.13 501.31,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.31,451.13 501.31,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="507.79,450.37 508.05,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.05,450.37 508.05,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.05,451.13 507.79,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="507.79,451.13 507.79,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.56,450.66 507.79,450.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.56,450.85 507.79,450.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="508.05,451.13 501.31,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.05,450.37 501.31,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.31,450.37 501.31,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.08,449.67 508.05,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.05,449.67 508.94,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.05,450.37 508.05,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.93,450.37 500.93,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,450.78 530.78,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,450.78 530.78,450.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,451.16 530.81,451.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.43,451.64 530.43,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.81,451.64 530.81,451.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.78,451.9 523.78,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.7,451.9 522.7,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.69,451.13 523.69,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.8,451.13 522.8,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.8,449.67 523.69,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="516.06,451.64 516.06,450.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="515.68,451.64 515.68,450.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.93,450.37 501.31,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.93,451.64 500.93,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.31,451.64 501.31,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.05,451.13 508.05,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.94,451.13 508.94,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.95,451.9 509.03,451.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.95,451.9 507.95,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="509.03,451.9 509.03,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.52,448.88 528.52,446.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,444.27 530.02,444.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,444.04 530.02,450.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,444.3 530.78,444.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,444.04 530.02,444.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,444.04 530.02,444.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,444.3 530.78,444.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.6,451.13 298.73,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.11,450.37 298.73,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.11,450.37 299.11,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.73,451.13 298.48,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.48,451.13 298.48,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.48,450.37 298.73,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.73,450.37 298.73,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.25,451.13 291.99,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.99,451.13 291.99,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.99,450.37 292.25,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.25,450.37 292.25,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.48,450.84 292.25,450.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.48,450.65 292.25,450.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.99,451.13 298.73,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.99,450.37 298.73,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.73,450.37 298.73,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.99,449.67 291.1,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.99,450.37 291.99,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.73,451.13 298.73,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.73,450.37 299.11,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.73,450.37 298.73,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.1,451.13 290.85,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.85,451.13 290.85,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.85,450.37 291.1,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.1,450.37 291.1,451.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.1,451.13 291.1,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.01,444.04 284.01,444.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.01,443.06 284.01,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,444.04 284.78,444.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,444.3 284.01,444.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,444.3 284.01,444.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,444.04 284.78,444.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,450.37 284.78,444.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,436.41 284.78,436.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,436.67 284.01,436.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,436.67 284.01,436.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,436.41 284.78,436.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,442.9 284.78,443.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,443.15 284.01,443.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,443.15 284.01,442.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,442.9 284.78,442.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.49,436.67 284.49,442.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.3,436.67 284.3,442.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,443.15 284.01,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,443.15 284.78,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,436.41 284.01,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.25,443.06 283.25,444.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,443.15 284.78,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,429.29 284.78,429.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,429.55 284.01,429.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,429.55 284.01,429.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,429.29 284.78,429.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,435.78 284.78,436.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,436.03 284.01,436.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,436.03 284.01,435.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,435.78 284.78,435.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.49,429.55 284.49,435.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.3,429.55 284.3,435.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,436.03 284.78,429.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.01,436.03 284.01,429.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.01,429.29 284.78,429.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.01,436.03 284.78,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,436.03 284.78,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.76,436.03 284.76,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,421.66 284.78,421.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,421.92 284.01,421.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,421.92 284.01,421.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,421.66 284.78,421.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,428.15 284.78,428.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,428.4 284.01,428.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,428.4 284.01,428.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,428.15 284.78,428.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.49,421.92 284.49,428.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.3,421.92 284.3,428.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,428.4 284.01,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,428.4 284.78,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,421.66 284.01,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.47,428.4 285.47,429.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,428.4 284.01,428.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.99,449.67 298.73,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.11,451.64 299.11,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.73,451.64 298.73,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.1,449.67 285.47,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.47,444.04 285.47,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.99,451.13 291.99,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.1,451.13 291.1,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.09,451.89 291.01,451.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.09,451.89 292.09,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.01,451.89 291.01,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.25,444.14 284.01,444.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.25,443.06 284.01,443.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.01,444.04 285.47,444.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.01,443.15 285.47,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.47,443.15 285.47,444.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.5,436.41 284.76,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.5,436.03 284.76,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,421.28 284.78,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.5,421.28 284.78,421.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.5,421.66 284.78,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.01,428.4 285.47,428.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.01,429.29 285.47,429.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.25,428.31 283.25,429.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.25,428.31 284.01,428.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.25,429.39 284.01,429.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.27,446.71 286.27,448.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.43,446.71 288.43,448.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.27,448.88 288.43,448.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.27,446.71 288.43,446.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.73,450.37 298.73,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.11,450.37 298.73,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.73,451.64 298.73,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.61,451.29 299.11,451.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,392.16 284.78,392.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,392.41 284.01,392.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,392.41 284.01,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,392.16 284.78,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,259.4 269.26,259.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,259.02 269.26,258.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,258.76 270.02,258.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,258.76 270.02,259.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,259.02 269.26,259.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,252.53 269.26,252.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,252.28 270.02,252.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,252.28 270.02,252.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,252.53 269.26,252.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.55,258.76 269.55,252.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.74,258.76 269.74,252.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,252.28 269.26,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,252.28 270.02,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,259.02 269.26,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.72,252.28 270.72,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,252.28 269.26,252.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,259.02 269.26,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,259.02 270.02,259.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,259.02 270.02,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,251.39 269.26,251.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,251.13 270.02,251.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,251.13 270.02,251.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,251.39 269.26,251.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,245.31 269.26,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,245.06 270.02,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,245.06 270.02,245.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,245.31 269.26,245.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,244.9 270.02,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,245.06 269.26,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,251.39 270.02,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.35,244.3 276.26,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.34,244.3 277.24,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.35,245.06 276.1,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.1,245.06 276.1,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.1,244.3 276.35,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.35,244.3 276.35,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.28,245.06 270.02,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,245.06 270.02,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,244.3 270.28,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.28,244.3 270.28,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,245.06 276.35,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,244.3 276.35,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.98,245.06 283.73,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.73,245.06 283.73,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.73,244.3 283.98,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.98,244.3 283.98,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.49,245.06 277.24,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.24,245.06 277.24,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.24,244.3 277.49,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.49,244.3 277.49,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.73,244.77 277.49,244.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.73,244.58 277.49,244.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.24,244.3 283.98,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.24,245.06 283.98,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.98,245.06 283.98,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.34,243.53 276.26,243.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.24,245.06 277.24,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.1,245.06 290.85,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.85,245.06 290.85,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.85,244.3 291.1,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.1,244.3 291.1,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.62,245.06 284.36,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.36,245.06 284.36,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.36,244.3 284.62,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.62,244.3 284.62,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.85,244.77 284.62,244.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.85,244.58 284.62,244.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.36,245.06 291.1,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.36,244.3 291.1,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.1,244.3 291.1,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.36,244.3 284.36,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.36,245.06 283.98,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.36,245.05 283.98,245.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.73,245.06 298.48,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.48,245.06 298.48,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.48,244.3 298.73,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.73,244.3 298.73,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.25,245.06 291.99,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.99,245.06 291.99,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.99,244.3 292.25,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="292.25,244.3 292.25,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.48,244.77 292.25,244.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.48,244.58 292.25,244.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.99,244.3 298.73,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.99,245.06 298.73,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.73,245.06 298.73,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.7,245.76 291.93,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.99,245.76 291.1,245.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.99,245.06 291.99,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,259.4 270.02,259.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,259.02 270.02,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.35,245.76 270.72,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,252.28 270.72,252.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,251.39 270.72,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,252.37 268.5,251.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,252.37 269.26,252.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,251.29 269.26,251.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.26,243.53 276.26,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.34,243.53 277.34,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.35,244.3 276.35,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.24,244.3 277.24,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.24,245.76 276.35,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.98,243.79 283.98,245.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,452.75 321.94,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.36,243.79 284.36,245.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.11,245.06 298.73,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.11,243.79 299.11,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.73,243.79 298.73,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.99,244.3 291.99,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.1,244.3 291.1,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.09,243.53 291.01,243.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.09,243.53 292.09,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.01,243.53 291.01,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="273.68,272.88 273.68,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="273.68,275.04 271.04,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="273.68,272.88 271.04,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.26,452.75 303.6,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.6,452.75 303.6,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.25,146.85 342.25,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.28,146.85 340.28,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.12,148.13 340.12,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.41,148.13 342.41,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.25,148.13 303.25,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.09,146.85 303.09,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.6,146.85 303.6,147.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,147.36 303.09,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.25,148.13 303.6,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.09,146.85 303.6,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.77,148.13 312.77,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.26,148.13 312.26,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.43,148.13 321.43,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.94,148.13 321.94,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.11,148.13 331.11,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,148.13 330.6,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.26,148.13 312.77,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.26,148.13 312.77,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.26,147.36 312.26,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.26,147.36 303.6,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.26,148.13 303.6,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.85,147.87 312,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.85,147.62 312,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312,148.13 312.26,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.26,148.13 312.26,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.26,147.36 312,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312,147.36 312,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.6,148.13 303.85,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.85,148.13 303.85,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.85,147.36 303.6,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.6,147.36 303.6,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.43,147.36 321.43,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.43,148.13 321.94,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.43,148.13 321.94,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.77,147.36 312.77,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.43,147.36 312.77,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.43,148.13 312.77,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.02,147.87 321.18,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.02,147.62 321.18,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.18,148.13 321.43,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.43,148.13 321.43,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.43,147.36 321.18,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.18,147.36 321.18,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.77,148.13 313.02,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.02,148.13 313.02,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.02,147.36 312.77,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.77,147.36 312.77,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.6,147.36 330.6,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,148.13 331.11,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,148.13 331.11,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.94,147.36 321.94,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,147.36 321.94,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,148.13 321.94,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,413.65 284.02,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.19,147.87 330.35,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.19,147.62 330.35,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.35,148.13 330.6,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,413.65 284.78,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,147.36 330.35,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.35,147.36 330.35,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.94,148.13 322.19,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.19,148.13 322.19,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.19,147.36 321.94,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.94,147.36 321.94,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.77,148.13 340.12,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.11,147.36 331.11,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.77,147.36 331.11,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.77,148.13 331.11,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.37,147.87 339.52,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,398.9 284.01,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.37,147.62 339.52,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,398.9 285.47,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.52,148.13 339.77,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.77,148.13 339.77,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.77,147.36 339.52,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="339.52,147.36 339.52,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.11,148.13 331.37,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.37,148.13 331.37,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.37,147.36 331.11,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.23,398.58 269.23,398.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.11,147.36 331.11,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.02,147.87 351.17,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="271.52,398.58 269.23,398.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="343.02,147.62 351.17,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="351.43,148.13 342.76,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.43,147.36 342.76,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.76,148.13 343.02,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.02,148.13 343.02,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="343.02,147.36 342.76,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.23,413.52 268.47,413.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.76,147.36 342.76,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="378.94,148.13 370.28,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.94,147.36 370.28,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="370.28,147.36 370.28,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.94,148.13 379.29,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.94,147.36 378.94,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.77,148.13 358.67,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.77,147.36 361.11,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.11,147.36 361.11,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.77,148.13 370.28,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.77,148.13 370.28,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.77,147.36 369.77,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.93,148.13 352.19,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.19,148.13 352.19,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.19,147.36 351.93,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="351.93,147.36 351.93,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="351.93,147.36 351.93,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.6,148.13 361.11,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.6,148.13 361.11,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.6,147.36 360.6,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.17,148.13 351.43,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="351.43,148.13 351.43,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="351.43,147.36 351.17,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="351.17,147.36 351.17,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="351.43,147.36 351.43,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.43,148.13 351.93,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.43,148.13 351.93,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.77,148.13 369.77,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="370.28,148.13 370.28,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.11,148.13 361.11,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.6,148.13 360.6,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.43,148.13 351.43,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.93,148.13 351.93,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.45,146.85 379.45,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.42,146.85 381.42,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.45,147.36 381.42,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.45,146.85 378.94,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.29,148.13 378.94,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,146.85 378.94,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,146.85 378.94,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,146.85 378.94,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.58,148.13 381.93,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.42,146.85 381.93,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.58,148.13 381.58,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.29,148.13 379.29,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.29,149.02 381.58,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.59,146.85 421.1,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.75,148.13 421.1,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,146.85 418.11,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,146.85 418.11,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,146.85 418.11,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.62,146.85 418.11,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.62,147.36 420.59,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.59,146.85 420.59,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.62,146.85 418.62,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="391.1,148.13 391.1,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.59,148.13 390.59,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.77,148.13 399.77,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="400.27,148.13 400.27,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="409.45,148.13 409.45,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.94,148.13 408.94,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.59,148.13 391.1,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.59,148.13 391.1,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.59,147.36 390.59,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.34,148.13 390.59,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.59,148.13 390.59,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.59,147.36 390.34,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.34,147.36 390.34,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.77,147.36 399.77,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.77,148.13 400.27,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.77,148.13 400.27,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="391.1,147.36 391.1,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.77,147.36 391.1,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.77,148.13 391.1,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="391.36,147.87 399.51,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.36,147.62 399.51,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.51,148.13 399.77,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.77,148.13 399.77,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.77,147.36 399.51,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.51,147.36 399.51,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.1,148.13 391.36,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.36,148.13 391.36,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.36,147.36 391.1,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.1,147.36 391.1,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.94,147.36 408.94,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.94,148.13 409.45,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.94,148.13 409.45,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="400.27,147.36 400.27,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.94,147.36 400.27,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.94,148.13 400.27,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="400.53,147.87 408.68,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="400.53,147.62 408.68,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.68,148.13 408.94,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.94,148.13 408.94,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.94,147.36 408.68,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.68,147.36 408.68,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="400.27,148.13 400.53,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="400.53,148.13 400.53,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="400.53,147.36 400.27,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="400.27,147.36 400.27,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="418.11,147.36 418.11,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.11,148.13 418.46,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="409.45,147.36 409.45,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.11,147.36 409.45,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.11,148.13 409.45,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="409.7,147.87 417.85,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.7,147.62 417.85,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.85,148.13 418.11,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="418.11,148.13 418.11,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="418.11,147.36 417.85,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.85,147.36 417.85,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.45,148.13 409.7,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.7,148.13 409.7,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.7,147.36 409.45,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.45,147.36 409.45,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="418.46,149.02 420.75,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.46,148.13 418.46,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.75,148.13 420.75,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.59,147.36 381.93,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.59,148.13 381.93,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="382.18,147.87 390.34,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.18,147.62 390.34,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="381.93,148.13 382.18,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.18,148.13 382.18,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.18,147.36 381.93,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="381.93,147.36 381.93,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.91,148.13 459.91,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.63,148.13 457.63,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.61,148.13 448.87,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.87,148.13 448.87,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.87,147.36 448.61,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.61,147.36 448.61,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.02,148.13 457.28,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.28,148.13 457.28,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.28,147.36 457.02,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.02,147.36 457.02,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.87,147.87 457.02,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.87,147.62 457.02,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.28,148.13 448.61,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.28,147.36 448.61,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.61,147.36 448.61,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.28,148.13 457.63,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.28,147.36 457.28,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="439.44,148.13 439.7,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.7,148.13 439.7,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.7,147.36 439.44,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.44,147.36 439.44,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="447.85,148.13 448.1,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.1,148.13 448.1,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.1,147.36 447.85,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="447.85,147.36 447.85,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.7,147.87 447.85,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.7,147.62 447.85,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.1,148.13 439.44,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.1,147.36 439.44,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="439.44,147.36 439.44,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.1,148.13 448.61,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.1,148.13 448.61,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.1,147.36 448.1,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="430.27,148.13 430.52,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.52,148.13 430.52,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.52,147.36 430.27,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.27,147.36 430.27,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.68,148.13 438.93,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.93,148.13 438.93,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.93,147.36 438.68,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.68,147.36 438.68,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.52,147.87 438.68,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.52,147.62 438.68,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.93,148.13 430.27,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.93,147.36 430.27,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="430.27,147.36 430.27,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.93,148.13 439.44,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.93,148.13 439.44,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.93,147.36 438.93,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.51,148.13 429.76,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.76,148.13 429.76,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.76,147.36 429.51,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.51,147.36 429.51,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.76,147.36 429.76,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.76,148.13 430.27,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.76,148.13 430.27,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.1,148.13 448.1,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.61,148.13 448.61,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="439.44,148.13 439.44,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.93,148.13 438.93,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.76,148.13 429.76,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="430.27,148.13 430.27,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.78,146.85 457.78,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.76,146.85 459.76,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="460.26,146.85 460.26,147.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.28,146.85 457.28,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.78,147.36 459.76,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.63,148.13 457.28,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.78,146.85 457.28,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.91,148.13 460.26,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.76,146.85 460.26,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.1,148.13 421.35,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.35,148.13 421.35,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.35,147.36 421.1,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.1,147.36 421.1,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.35,147.87 429.51,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.35,147.62 429.51,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.76,148.13 421.1,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.76,147.36 421.1,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.93,147.36 460.26,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.93,148.13 460.26,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="460.52,147.87 468.67,147.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.52,147.62 468.67,147.62" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.26,148.13 460.52,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.52,148.13 460.52,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.52,147.36 460.26,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.26,147.36 460.26,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.93,147.08 468.93,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.1,147.08 478.1,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.61,147.08 478.61,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.78,147.08 487.78,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.27,147.08 487.27,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.93,147.36 468.93,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.67,148.13 468.93,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.93,148.13 468.93,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.93,147.36 468.67,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.67,147.36 468.67,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.08,451.32 499.08,449.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.79,449.26 499.08,449.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.95,453.26 496.95,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="498.92,453.26 498.92,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.43,453.26 499.43,451.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.79,451.99 496.79,449.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.44,451.99 487.78,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.44,452.75 487.78,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.78,452.75 487.78,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.44,451.99 496.79,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.44,452.75 496.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.61,451.99 478.86,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.86,451.99 478.86,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.86,452.75 478.61,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.61,452.75 478.61,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="487.02,451.99 487.27,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="487.27,451.99 487.27,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="487.27,452.75 487.02,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="487.02,452.75 487.02,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.86,452.25 487.02,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.26,213.24 500.26,214.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.27,451.99 478.61,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.27,452.75 478.61,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.61,452.75 478.61,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.27,451.99 487.78,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.27,451.99 487.78,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.27,452.75 487.27,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.44,451.99 469.69,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469.69,451.99 469.69,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469.69,452.75 469.44,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469.44,452.75 469.44,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.85,451.99 478.1,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.1,451.99 478.1,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.1,452.75 477.85,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.85,452.75 477.85,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469.69,452.25 477.85,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="469.69,452.5 477.85,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.1,451.99 469.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.1,452.75 469.44,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.44,452.75 469.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.1,451.99 478.61,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.1,451.99 478.61,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.1,452.75 478.1,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.93,452.75 468.93,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.93,451.99 469.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.93,451.99 469.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.27,451.99 487.27,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.78,451.99 487.78,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.61,451.99 478.61,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.1,451.99 478.1,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.93,451.99 468.93,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.44,451.99 469.44,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.44,453.26 496.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.79,451.99 496.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.93,451.99 460.26,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.93,452.75 460.26,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.76,452.75 421.1,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.76,451.99 421.1,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.91,451.99 460.26,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.63,451.99 457.28,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.28,453.33 457.28,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="460.26,453.33 460.26,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.76,453.33 459.76,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.78,453.33 457.78,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="430.27,451.99 430.27,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.76,451.99 429.76,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.93,451.99 438.93,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="439.44,451.99 439.44,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.61,451.99 448.61,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.1,451.99 448.1,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.76,451.99 430.27,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.76,451.99 430.27,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.76,452.75 429.76,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.93,452.75 438.93,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.93,451.99 439.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.93,451.99 439.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="430.27,452.75 430.27,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.93,452.75 430.27,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.93,451.99 430.27,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="430.52,452.25 438.68,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.52,452.5 438.68,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.68,451.99 438.93,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.93,451.99 438.93,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.93,452.75 438.68,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="438.68,452.75 438.68,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.27,451.99 430.52,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.52,451.99 430.52,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.52,452.75 430.27,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="430.27,452.75 430.27,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.1,452.75 448.1,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.1,451.99 448.61,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.1,451.99 448.61,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="439.44,452.75 439.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.1,452.75 439.44,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.1,451.99 439.44,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="439.7,452.25 447.85,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.7,452.5 447.85,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="447.85,451.99 448.1,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.1,451.99 448.1,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.1,452.75 447.85,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="447.85,452.75 447.85,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.44,451.99 439.7,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.7,451.99 439.7,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.7,452.75 439.44,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="439.44,452.75 439.44,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.28,452.75 457.28,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.28,451.99 457.63,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.61,452.75 448.61,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.28,452.75 448.61,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.28,451.99 448.61,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.63,449.19 459.91,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.63,451.99 457.63,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.91,451.99 459.91,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.59,451.99 381.93,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.59,452.75 381.93,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.75,451.99 420.75,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.46,451.99 418.46,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.46,449.19 420.75,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.11,451.99 409.45,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.11,452.75 409.45,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="409.45,452.75 409.45,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.11,451.99 418.46,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.11,452.75 418.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="400.27,451.99 400.53,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="400.53,451.99 400.53,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="400.53,452.75 400.27,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="400.27,452.75 400.27,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.68,451.99 408.94,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.94,451.99 408.94,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.94,452.75 408.68,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.68,452.75 408.68,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="400.53,452.25 408.68,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="400.53,452.5 408.68,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="408.94,451.99 400.27,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.94,452.75 400.27,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="400.27,452.75 400.27,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.94,451.99 409.45,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.94,451.99 409.45,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.94,452.75 408.94,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="391.1,451.99 391.36,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.36,451.99 391.36,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.36,452.75 391.1,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.1,452.75 391.1,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.51,451.99 399.77,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.77,451.99 399.77,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.77,452.75 399.51,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.51,452.75 399.51,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.36,452.25 399.51,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="391.36,452.5 399.51,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="399.77,451.99 391.1,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.77,452.75 391.1,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="391.1,452.75 391.1,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.77,451.99 400.27,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.77,451.99 400.27,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.77,452.75 399.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.59,452.75 390.59,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.59,451.99 391.1,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.59,451.99 391.1,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.94,451.99 408.94,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="409.45,451.99 409.45,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="400.27,451.99 400.27,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.77,451.99 399.77,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.59,451.99 390.59,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="391.1,451.99 391.1,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.62,453.26 418.62,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.59,453.26 420.59,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.1,453.26 421.1,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.11,453.26 418.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.46,451.99 418.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.75,451.99 421.1,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.29,449.19 381.58,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.29,451.99 379.29,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.58,451.99 381.58,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.58,451.99 381.93,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.29,451.99 378.94,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.94,453.26 378.94,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.93,453.26 381.93,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.42,453.26 381.42,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.45,453.26 379.45,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.93,451.99 351.93,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.43,451.99 351.43,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.6,451.99 360.6,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.11,451.99 361.11,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="370.28,451.99 370.28,453.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.77,451.99 369.77,453.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.43,451.99 351.93,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.43,451.99 351.93,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.6,451.99 361.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.6,451.99 361.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.6,452.75 351.93,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.6,451.99 351.93,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.77,452.75 369.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.77,451.99 370.28,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.77,451.99 370.28,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.11,452.75 361.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.77,452.75 361.11,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.77,451.99 361.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.36,452.25 369.52,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.36,452.5 369.52,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.52,451.99 369.77,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.77,451.99 369.77,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.77,452.75 369.52,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.52,452.75 369.52,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.11,451.99 361.36,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.36,451.99 361.36,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.36,452.75 361.11,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="361.11,452.75 361.11,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="378.94,452.75 378.94,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.94,451.99 379.29,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="370.28,452.75 370.28,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.94,452.75 370.28,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.94,451.99 370.28,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.43,452.75 342.76,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.43,451.99 342.76,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.11,451.99 331.37,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.37,451.99 331.37,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.37,452.75 331.11,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.11,452.75 331.11,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.11,452.75 331.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.77,451.99 340.12,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.77,452.75 339.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.94,451.99 322.19,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.19,451.99 322.19,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.19,452.75 321.94,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.94,452.75 321.94,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.35,451.99 330.6,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.99,242.23 299.97,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,451.99 330.6,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.6,452.75 330.35,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.99,212.92 300.99,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="322.19,452.25 330.35,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.18,212.92 300.99,212.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,451.99 321.94,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,242.74 300.67,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.94,452.75 321.94,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,451.99 331.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,451.99 331.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,452.75 330.6,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.77,451.99 313.02,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.34,245.76 298.7,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.02,451.99 313.02,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.02,452.75 312.77,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.77,452.75 312.77,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.18,451.99 321.43,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.43,451.99 321.43,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.43,452.75 321.18,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.73,243.79 298.73,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.59,244.14 299.11,244.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.02,452.5 321.18,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.43,451.99 312.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.43,452.75 312.77,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.77,452.75 312.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.48,148.89 300.48,153.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.43,451.99 321.94,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.43,451.99 321.94,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.43,452.75 321.43,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="498.86,165.42 498.86,164.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.26,451.99 303.6,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.92,164.4 498.86,164.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.92,163.64 496.92,164.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.26,452.75 312.26,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.26,451.99 312.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.26,451.99 312.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,451.99 330.6,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.11,451.99 331.11,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.94,451.99 321.94,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.43,451.99 321.43,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.26,451.99 312.26,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.77,451.99 312.77,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.73,449.67 303.25,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.25,451.99 303.6,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.61,453.26 300.61,451.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.6,453.26 303.6,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.09,453.26 303.09,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.12,453.26 301.12,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.25,451.99 303.25,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.41,451.99 342.41,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.12,451.99 340.12,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.28,453.26 340.28,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.25,453.26 342.25,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.76,453.26 342.76,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.77,453.26 339.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.12,451.99 339.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.41,451.99 342.76,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.12,449.19 342.41,449.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,259.4 270.02,259.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,259.4 270.02,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,259.4 269.26,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,259.4 270.02,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,259.65 270.02,259.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,259.4 269.26,259.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,259.4 269.26,259.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,259.65 270.02,259.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,266.14 270.02,265.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,265.88 269.26,265.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,265.88 269.26,266.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,266.14 270.02,266.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.11,243.79 298.73,243.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.36,243.79 283.98,243.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,259.02 268.75,259.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="515.68,243.79 516.06,243.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.93,243.79 501.31,243.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,288.52 531.29,288.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,273.77 531.29,274.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,259.02 531.29,259.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.73,451.64 299.11,451.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.5,436.41 283.5,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.5,421.66 283.5,421.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,325.05 268.5,326.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,267.12 269.26,267.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.51,406.91 283.51,406.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.25,414.64 284.02,414.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.25,413.56 284.02,413.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.25,413.56 283.25,414.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.02,414.54 285.48,414.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.02,413.65 285.48,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.51,406.91 284.78,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.51,406.53 284.78,406.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,406.53 284.78,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,421.66 530.02,428.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.48,413.65 285.48,414.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,406.91 284.02,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.94,450.66 530.02,450.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.02,413.65 284.02,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.94,450.84 530.02,450.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.3,407.17 284.3,413.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,413.4 284.78,413.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,413.65 284.02,413.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.02,413.65 284.02,413.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.02,413.4 284.78,413.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,406.91 284.78,407.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,407.17 284.02,407.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.02,407.17 284.02,406.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.02,406.91 284.78,406.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.02,414.54 284.78,414.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.02,421.28 284.02,414.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,421.28 284.78,414.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.49,414.8 284.49,421.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.3,414.8 284.3,421.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,421.03 284.78,421.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,421.28 284.02,421.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.02,421.28 284.02,421.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.02,421.03 284.78,421.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,414.54 284.78,414.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,414.8 284.02,414.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.02,414.8 284.02,414.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.02,414.54 284.78,414.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,399.79 284.78,400.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,400.04 284.01,400.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,400.04 284.01,399.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,399.79 284.78,399.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,406.27 284.78,406.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,406.53 284.01,406.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,406.53 284.01,406.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,406.27 284.78,406.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,244.29 523.69,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.3,400.04 284.3,406.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,406.53 284.78,399.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.01,406.53 284.01,399.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.01,399.79 284.78,399.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.49,251.13 530.49,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,398.9 284.01,398.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,244.3 269.61,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.01,398.64 284.78,398.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,398.9 284.01,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,244.27 269.23,244.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,398.9 284.78,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.47,390.7 285.47,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.23,243.79 269.23,244.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.47,398.9 285.47,399.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,245.06 270.02,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,245.06 269.26,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.01,399.79 285.47,399.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.25,398.8 283.25,399.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.25,398.8 284.01,398.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.25,399.88 284.01,399.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,406.53 284.78,406.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,398.58 271.52,400.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.81,451.64 530.43,451.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.47,398.77 268.47,399.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,421.28 531.29,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,400.11 269.23,400.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.23,399.92 269.23,400.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.23,398.77 268.47,398.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.23,399.92 268.47,399.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.23,414.67 268.47,414.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,244.64 531.29,244.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.23,414.67 269.23,414.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,414.86 269.23,414.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,413.33 269.23,413.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.47,413.52 268.47,414.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.23,413.33 269.23,413.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,413.33 271.52,414.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,442.84 271.52,444.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.23,442.84 269.23,443.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.47,443.03 268.47,444.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,442.84 269.23,442.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,444.36 269.23,444.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.23,444.17 269.23,444.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.23,443.03 268.47,443.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.23,444.17 268.47,444.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.23,429.42 268.47,429.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.23,428.27 268.47,428.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.23,429.42 269.23,429.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,429.61 269.23,429.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,428.08 269.23,428.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.47,428.27 268.47,429.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.23,428.08 269.23,428.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,428.08 271.52,429.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.37,451.1 277.37,451.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.22,451.1 276.22,451.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.37,451.1 277.56,451.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.56,448.81 277.56,451.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.03,448.81 276.03,451.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.22,451.86 277.37,451.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.03,451.1 276.22,451.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.03,448.81 277.56,448.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.26,392.9 277.4,392.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.26,392.9 276.26,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.61,361.39 493.61,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="488.27,361.39 488.27,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,363.55 493.61,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="497.3,361.39 493.61,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="497.3,361.39 497.3,351.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="498.38,361.39 498.38,342.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="488.27,363.55 483.57,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="488.27,361.39 484.59,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.51,362.15 484.59,362.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.51,362.78 484.59,362.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,362.15 494.38,362.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,362.78 494.38,362.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.51,362.15 487.51,362.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="494.38,362.15 494.38,362.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.59,362.78 484.59,362.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.57,363.55 483.57,361.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.59,361.39 484.59,351.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="497.3,351.21 484.59,351.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="497.3,350.19 484.59,350.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.59,350.19 484.59,332.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="497.3,350.19 497.3,342.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.98,340.02 498.89,340.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,363.55 504.11,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,362.66 505.99,362.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.11,363.55 504.11,361.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.11,361.58 505.99,361.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.63,362.72 530.02,362.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.63,362.72 530.02,362.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.63,363.55 529.63,362.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.03,363.55 529.63,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.03,362.21 530.02,362.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,391.71 530.02,391.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,390.89 529.32,391.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,390.89 528.52,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="528.52,392.22 530.02,392.22" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,390.89 504.3,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.3,386.95 506.46,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="526.61,387.26 505.56,387.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="518.67,379.32 505.56,379.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="518.35,379 505.56,379" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="518.67,374.8 506.08,374.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="518.35,375.12 506.9,375.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="526.3,367.17 506.08,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="526.61,366.85 506.9,366.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="505.56,386.95 526.3,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="526.3,367.17 526.3,377.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="526.61,366.85 526.61,377.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="518.67,374.8 518.67,375.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="518.35,375.12 518.35,375.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="518.67,374.8 518.67,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="518.67,379.32 518.67,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="517.27,374.8 517.27,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="515.87,374.8 515.87,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="514.47,374.8 514.47,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="513.07,374.8 513.07,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="517.27,379.32 517.27,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="515.87,379.32 515.87,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="514.47,379.32 514.47,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="513.07,379.32 513.07,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="511.67,379.32 511.67,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="510.27,379.32 510.27,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="508.87,379.32 508.87,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="507.48,379.32 507.48,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="506.08,379.32 506.08,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="505.56,379 505.56,379.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="505.56,386.95 505.56,387.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="529.32,384.4 526.61,384.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="529.32,384.78 526.61,384.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="529.32,370.03 526.61,370.03" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="529.32,369.65 526.61,369.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="522.34,383.23 505.01,383.23" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="271.04,272.88 271.04,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="274.25,249.64 274.25,261.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="273.93,249.32 273.93,261.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.88,257.27 281.88,265.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="282.2,257.59 282.2,265.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.25,249.64 290.72,249.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="273.93,249.32 290.4,249.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.88,257.27 290.72,257.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="282.2,257.59 290.4,257.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.88,257.27 274.25,257.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.88,258.67 274.25,258.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.88,260.07 274.25,260.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.88,261.46 274.25,261.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.88,262.86 276.59,262.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.88,264.26 279.45,264.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.59,265.66 274.25,265.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.39,267.06 274.25,267.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.88,268.46 274.25,268.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.88,269.86 274.25,269.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.88,271.26 274.25,271.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.88,272.66 274.25,272.66" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.88,274.05 274.25,274.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.88,275.45 274.25,275.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.88,276.85 274.25,276.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="273.93,280.22 274.25,280.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.88,280.22 282.2,280.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.88,257.27 281.88,249.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="283.28,257.27 283.28,249.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="284.68,257.27 284.68,249.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="286.08,257.27 286.08,249.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="287.48,257.27 287.48,249.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.91,260.6 278.07,261.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.07,261.18 279.23,260.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.91,260.31 278.07,260.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.07,260.89 279.23,260.31" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.91,260.31 276.91,260.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.23,260.31 279.23,260.6" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M276.91 260.31L276.91 260.6 278.07 261.18 278.07 260.89 276.91 260.31Z" fill-rule="evenodd" fill="blue"/>
+<path d="M279.23 260.31L279.23 260.6 278.07 261.18 278.07 260.89 279.23 260.31Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="278.07,253.35 278.07,261.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="340.19,212.92 340.19,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.35,212.92 342.35,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,215.08 342.35,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,212.92 342.35,212.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,212.92 381.52,212.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,215.08 381.52,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.52,212.92 381.52,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,212.92 379.36,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,212.92 420.68,212.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,215.08 420.68,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.68,212.92 420.68,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,212.92 418.52,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,212.92 459.85,212.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,215.08 459.85,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.85,212.92 459.85,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,212.92 457.69,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,183.42 457.69,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.85,183.42 459.85,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,185.58 459.85,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,183.42 459.85,183.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,183.42 418.52,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.68,183.42 420.68,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,185.58 420.68,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,183.42 420.68,183.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,183.42 379.36,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.52,183.42 381.52,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,185.58 381.52,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,183.42 381.52,183.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,183.42 342.35,183.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,185.58 342.35,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.35,183.42 342.35,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,183.42 340.19,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,153.91 340.19,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.35,153.91 342.35,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,156.08 342.35,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,153.91 342.35,153.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,153.91 381.52,153.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,156.08 381.52,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.52,153.91 381.52,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,153.91 379.36,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,153.91 420.68,153.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,156.08 420.68,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.68,153.91 420.68,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,153.91 418.52,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,153.91 459.85,153.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,156.08 459.85,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.85,153.91 459.85,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,153.91 457.69,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,243.38 457.69,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.85,243.38 459.85,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,245.54 459.85,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,243.38 459.85,243.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,243.38 418.52,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.68,243.38 420.68,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,245.54 420.68,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,243.38 420.68,243.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,243.38 379.36,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.52,243.38 381.52,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,245.54 381.52,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,243.38 381.52,243.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,243.38 342.35,243.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,245.54 342.35,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.35,243.38 342.35,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,243.38 340.19,245.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.91,149.02 457.63,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<path d="M276.75 273.7L276.75 273.41 277.91 272.83 277.91 273.12 276.75 273.7Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="340.12,149.02 301.88,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.76,146.85 342.76,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.94,146.85 378.94,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.93,146.85 381.93,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.11,146.85 418.11,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="421.1,146.85 421.1,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.63,149.02 420.75,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.46,149.02 381.58,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.29,149.02 358.67,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.95,243.25 499.05,243.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.95,245.76 501.34,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,233.58 500.64,233.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,233.07 500.64,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,242.23 500.64,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,242.74 500.64,242.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.64,242.74 500.64,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,242.74 499.37,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,215.08 499.05,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,212.92 499.05,212.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.05,215.27 499.05,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.05,212.92 499.05,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.05,243.25 499.05,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.05,242.23 500.07,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.95,245.76 496.95,243.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.34,245.76 501.34,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.45,242.74 500.45,244.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.05,242.23 499.05,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,242.74 499.37,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.45,233.58 500.45,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,223.92 500.64,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,224.43 500.64,224.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.26,213.24 500.64,213.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.45,224.43 500.45,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.05,212.73 500.64,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.64,213.24 500.64,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.64,214.76 500.64,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.05,215.27 500.64,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.26,214.76 500.64,214.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.45,215.27 500.45,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.05,185.77 500.64,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.26,185.26 500.64,185.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.64,183.73 500.64,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.64,185.26 500.64,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.05,183.23 500.64,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.26,183.73 500.64,183.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.05,183.42 499.05,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.26,183.73 500.26,185.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.05,185.77 499.05,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,183.42 499.05,183.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,185.58 499.05,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,185.77 500.07,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.45,185.77 500.45,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.05,212.73 499.05,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.05,183.23 499.05,165.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,242.23 500.07,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.64,233.58 500.64,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,234.11 499.37,233.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,234.11 499.37,233.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,233.58 499.37,233.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,242.23 499.37,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,233.58 500.07,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,233.58 499.37,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.84,241.98 499.84,233.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,233.84 500.07,233.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.59,241.98 499.59,233.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,233.58 499.37,233.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,233.58 499.37,233.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,233.84 500.07,233.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,241.98 499.37,241.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,242.23 500.07,242.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,224.43 499.37,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,224.43 499.37,224.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,224.43 499.37,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,233.07 499.37,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.64,224.43 500.64,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,224.43 500.07,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,224.43 499.37,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.59,232.82 499.59,224.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.84,232.82 499.84,224.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,224.68 500.07,224.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,224.43 499.37,224.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,224.43 499.37,224.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,224.68 500.07,224.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,232.82 499.37,232.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,233.07 500.07,232.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,232.82 499.37,233.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,233.07 500.07,233.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,223.92 499.37,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,215.27 499.37,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,215.27 499.37,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,215.27 500.07,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.59,223.66 499.59,215.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.84,223.66 499.84,215.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,215.53 500.07,215.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,215.27 499.37,215.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,215.53 500.07,215.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,215.27 499.37,215.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,223.92 500.07,223.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,223.66 499.37,223.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,223.92 500.07,223.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,223.66 499.37,223.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,194.16 499.37,194.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,194.42 500.07,194.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,194.16 499.37,194.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,194.42 500.07,194.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.84,194.16 499.84,186.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.59,194.16 499.59,186.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,185.77 500.07,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,185.77 499.37,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,194.42 499.37,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,185.77 499.37,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,203.32 499.37,203.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,203.57 500.07,203.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,203.32 499.37,203.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,203.57 500.07,203.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,195.18 500.07,194.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,194.92 499.37,194.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,195.18 500.07,195.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,194.92 499.37,195.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.59,203.32 499.59,195.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.84,203.32 499.84,195.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,194.92 500.07,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,194.92 499.37,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,203.57 499.37,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.64,194.92 500.64,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,194.92 499.37,194.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,194.92 499.37,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,194.92 499.37,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,204.34 500.07,204.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,204.08 499.37,204.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,204.08 499.37,204.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,204.34 500.07,204.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,204.08 499.37,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,204.08 499.37,204.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,204.08 499.37,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.64,204.08 500.64,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.05,185.77 500.64,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,194.92 500.64,194.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.45,194.92 500.45,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,194.42 500.64,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,203.57 500.64,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,212.73 500.07,212.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,204.08 500.64,204.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,212.47 499.37,212.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,212.47 499.37,212.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,212.73 500.07,212.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.84,212.47 499.84,204.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.59,212.47 499.59,204.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,204.08 499.37,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,186.02 500.07,185.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,204.08 500.07,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,185.77 499.37,185.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,185.77 499.37,186.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.45,204.08 500.45,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,186.02 500.07,186.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,204.08 500.07,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,194.92 500.07,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.45,194.92 500.45,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,165.42 500.07,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,174.07 500.64,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,174.58 500.64,174.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,164.91 500.64,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,165.42 500.64,165.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,174.58 499.37,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.64,174.58 500.64,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,174.58 499.37,174.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,174.58 499.37,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,174.58 499.37,174.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,326.03 530.78,326.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,174.58 499.37,174.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,174.83 500.07,174.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,165.42 499.37,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,165.42 499.37,165.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.64,165.42 500.64,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,165.42 499.37,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,165.42 500.07,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,174.07 499.37,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.84,173.82 499.84,165.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,165.42 499.37,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,165.68 500.07,165.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.59,173.82 499.59,165.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,165.42 499.37,165.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,165.42 499.37,165.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,165.68 500.07,165.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,174.07 500.07,173.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,173.82 499.37,173.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,173.82 499.37,174.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,174.58 499.37,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,174.07 500.07,174.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.59,182.97 499.59,174.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.84,182.97 499.84,174.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,183.23 500.07,182.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,174.58 500.07,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,182.97 499.37,183.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.07,182.97 499.37,182.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="500.45,174.58 500.45,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,183.23 500.07,183.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.59,165.42 299.59,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.45,165.42 500.45,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,156.52 299.97,156.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.59,174.58 299.59,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,156.27 300.67,156.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,156.27 300.67,156.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,183.23 299.97,182.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,156.52 299.97,156.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,182.97 300.67,183.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,182.97 300.67,182.97" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,183.23 299.97,183.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.2,182.97 300.2,174.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,174.58 300.67,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.45,182.97 300.45,174.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,164.91 299.97,164.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.99,156.27 299.4,156.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,164.66 300.67,164.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,164.66 300.67,164.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.2,164.66 300.2,156.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,164.91 299.97,164.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.45,164.66 300.45,156.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,156.27 300.67,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,164.91 300.67,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,156.27 299.97,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,156.27 300.67,156.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,174.07 299.97,173.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,333.15 269.26,333.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,173.82 300.67,174.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,333.15 270.02,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,165.68 299.97,165.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,174.07 299.97,174.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,165.42 300.67,165.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,165.42 300.67,165.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.2,173.82 300.2,165.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,165.68 299.97,165.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.45,173.82 300.45,165.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,165.42 300.67,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,174.07 300.67,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,165.42 299.97,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.4,165.42 299.4,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,165.42 300.67,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,165.42 300.67,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,165.42 300.67,165.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,174.58 300.67,174.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,174.83 299.97,174.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,174.58 300.67,174.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,174.83 299.97,174.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,174.58 300.67,174.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,174.58 300.67,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.4,174.58 299.4,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,174.58 300.67,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,164.91 299.4,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,165.42 299.4,165.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,174.58 299.4,174.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,174.07 299.4,174.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,194.92 299.97,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.59,194.92 299.59,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.59,204.08 299.59,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,204.08 299.97,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,186.02 299.97,185.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,185.77 300.67,185.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,186.02 299.97,186.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,185.77 300.67,186.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,204.08 300.67,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,204.08 299.97,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.2,212.47 300.2,204.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.45,212.47 300.45,204.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,212.73 299.97,212.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,212.47 300.67,212.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,212.47 300.67,212.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,212.73 299.97,212.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,204.08 299.4,204.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,203.57 299.4,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,194.42 299.4,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,194.92 299.4,194.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,185.77 299.4,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.59,194.92 299.59,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,204.08 300.67,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.4,204.08 299.4,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,204.34 299.97,204.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,204.08 300.67,204.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,204.08 300.67,204.08" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,204.08 300.67,204.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,204.34 299.97,204.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,194.92 300.67,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,194.92 300.67,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,194.92 300.67,194.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,203.57 300.67,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.4,194.92 299.4,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,194.92 300.67,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,194.92 299.97,203.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.2,203.32 300.2,195.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.45,203.32 300.45,195.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,195.18 299.97,194.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,194.92 300.67,194.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,195.18 299.97,195.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,194.92 300.67,195.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,203.57 299.97,203.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,203.32 300.67,203.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,203.32 300.67,203.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,203.57 299.97,203.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,194.42 300.67,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,185.77 300.67,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,185.77 300.67,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,185.77 299.97,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.2,194.16 300.2,186.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.45,194.16 300.45,186.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,194.42 299.97,194.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,194.16 300.67,194.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,194.16 300.67,194.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,194.42 299.97,194.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,223.92 299.97,223.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,223.66 300.67,223.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,223.92 299.97,223.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,223.66 300.67,223.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,215.53 299.97,215.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,215.27 300.67,215.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,215.53 299.97,215.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,215.27 300.67,215.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.2,223.66 300.2,215.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.45,223.66 300.45,215.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,215.27 300.67,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,215.27 299.97,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,223.92 300.67,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,215.27 300.67,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,233.07 299.97,232.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,232.82 300.67,232.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,232.82 300.67,233.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,233.07 299.97,233.07" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,224.68 299.97,224.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,224.43 300.67,224.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,224.43 300.67,224.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,224.68 299.97,224.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.45,232.82 300.45,224.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.2,232.82 300.2,224.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,224.43 300.67,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,224.43 299.97,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,233.07 300.67,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.4,224.43 299.4,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,224.43 300.67,224.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,224.43 300.67,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,242.23 299.97,241.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,224.43 300.67,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,241.98 300.67,242.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,241.98 300.67,241.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,242.23 299.97,242.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,233.84 299.97,233.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.97,233.58 300.67,233.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,233.58 300.67,233.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.2,241.98 300.2,233.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,233.84 299.97,233.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.45,241.98 300.45,233.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.67,233.58 300.67,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,242.23 300.67,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,233.58 299.97,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,233.58 300.67,233.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,233.58 300.67,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,233.58 300.67,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.4,233.58 299.4,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,242.23 299.97,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.59,156.27 299.59,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,183.23 300.99,156.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.59,185.77 299.59,194.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,156.27 299.4,156.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,155.76 299.4,155.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,156.27 300.99,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.4,155.76 299.4,156.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.69,153.91 303.69,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.69,153.91 301.88,153.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.69,156.08 300.99,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.69,185.58 300.99,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.69,183.42 300.99,183.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.69,183.42 303.69,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,185.77 300.99,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,183.42 300.99,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.78,183.73 299.4,183.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.78,183.73 299.78,185.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.4,183.73 299.4,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,183.23 299.4,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.4,185.26 299.4,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,185.77 299.4,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.78,185.26 299.4,185.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.59,215.27 299.59,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.78,214.76 299.4,214.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,215.27 299.4,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.4,214.76 299.4,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.4,213.24 299.4,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.78,213.24 299.4,213.24" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,212.73 299.4,212.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,224.43 299.4,224.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.59,224.43 299.59,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.59,233.58 299.59,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,223.92 299.4,223.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,242.23 300.99,215.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,242.74 300.67,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.7,245.76 298.7,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.59,242.74 299.59,244.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,243.25 300.99,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.78,213.24 299.78,214.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,215.27 300.99,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.18,215.08 300.99,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,242.74 299.4,242.74" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,242.23 299.4,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.4,242.74 299.4,242.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.11,243.79 298.73,243.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,233.07 299.4,233.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.67,233.58 299.4,233.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.34,243.25 300.99,243.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.48,245.06 298.48,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.48,244.3 298.73,244.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.73,245.06 298.48,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="298.73,245.06 298.73,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.11,245.06 298.73,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.73,244.3 298.73,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.11,243.79 299.11,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,174.58 299.97,183.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.34,245.76 303.34,243.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.88,153.91 301.88,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,147.36 299.97,155.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,148.89 300.99,153.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.33,162.12 498.67,162.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,165.42 498.86,165.42" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.93,163.64 496.92,163.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.45,147.08 500.45,155.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.45,155.66 500.65,155.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.95,147.08 496.95,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.45,156.23 500.65,156.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.45,156.23 500.45,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.33,148.89 470.33,156.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.91,149.02 468.93,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.44,147.08 496.44,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.33,148.89 498.67,148.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.95,165.17 492.95,163.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.93,148.13 468.93,156.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.2,164.91 498.86,164.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.95,165.17 498.86,165.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="493.2,164.91 493.2,163.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.26,146.85 312.77,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.43,146.98 312.77,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.45,147.08 496.95,147.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,146.98 321.94,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.26,146.98 303.6,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,146.85 331.11,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.94,146.85 321.43,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.77,146.98 331.11,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.6,146.85 361.11,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.43,146.98 342.76,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.59,146.85 391.1,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.43,146.85 351.93,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.77,146.85 370.28,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.77,146.98 391.1,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.59,146.98 381.93,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.77,146.85 400.27,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.94,146.85 409.45,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.94,146.98 400.27,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.11,146.98 409.45,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.93,146.85 439.44,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.76,146.85 430.27,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.93,146.98 430.27,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.1,146.85 448.61,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.1,146.98 439.44,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.1,146.85 478.61,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.93,146.98 460.26,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.76,146.98 421.1,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.28,146.98 448.61,146.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.1,147.08 468.93,147.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.27,146.85 487.78,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.44,147.08 487.78,147.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.27,147.08 478.61,147.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.44,146.85 496.95,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.93,146.85 469.44,146.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.65,155.66 500.65,156.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="498.67,148.89 498.67,162.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,153.91 300.48,153.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.44,146.85 469.44,147.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.93,147.08 468.93,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.3,398.64 284.3,392.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.99,148.89 300.48,148.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.88,183.42 301.88,156.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,421.92 530.78,421.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.49,398.64 284.49,392.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="518.27,376.64 521.79,377.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="521.79,377.46 522.63,376.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="522.63,376.44 523.25,379.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.25,379.02 524.1,378" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="524.1,378 527.22,378.73" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.78,421.66 530.02,421.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,421.66 530.02,421.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,421.92 530.78,421.92" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,428.4 530.78,428.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,421.66 530.78,428.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,428.14 530.02,428.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,444.04 530.78,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,450.37 530.78,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,451.13 523.69,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,450.37 284.78,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.48,444.3 530.48,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.98,451.64 283.98,451.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.31,444.3 530.31,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,450.37 530.02,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,450.37 284.01,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.5,451.16 283.98,451.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.36,451.64 284.36,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.5,450.78 284.01,450.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.01,450.37 284.01,444.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.78,451.13 284.36,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.01,450.78 284.01,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.48,444.3 284.48,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,451.13 291.1,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.3,444.3 284.3,450.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.85,450.65 284.78,450.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,450.37 291.1,450.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,245.06 530.78,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.81,243.79 530.81,244.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="290.85,450.84 284.78,450.84" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="531.29,244.26 530.81,244.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.43,243.79 530.43,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,244.64 530.78,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,245.06 530.02,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,244.29 530.43,244.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,245.06 523.69,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,244.64 530.78,244.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="523.94,244.58 530.02,244.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,251.13 530.3,245.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="523.94,244.77 530.02,244.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="369.77,453.07 370.28,453.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,244.65 269.26,245.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,244.65 269.26,244.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.61,243.79 269.61,244.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.1,244.59 270.28,244.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.55,251.13 269.55,245.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="501.31,451.64 500.93,451.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.74,251.13 269.74,245.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.1,244.77 270.28,244.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="516.06,451.64 515.68,451.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,406.53 531.29,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,450.78 531.29,451.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,377.03 531.29,377.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,391.78 531.29,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.23,362.28 531.23,362.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.81,243.79 530.43,243.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,244.65 268.75,244.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="476.63,156.27 484.01,156.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="479.3,156.46 479.3,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="269.23,243.79 269.61,243.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.98,451.64 284.36,451.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.5,450.78 283.5,451.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.1,156.46 482.1,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.63,154.74 493.6,154.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.43,154.55 493.79,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="484.9,159.11 484.9,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="480.7,156.46 480.7,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="487.7,156.46 487.7,158.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="483.5,156.46 483.5,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.43,156.46 484.1,156.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="493.79,154.55 493.79,156.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="494.95,151.79 475.13,151.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="489.1,156.46 489.1,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="486.3,156.46 486.3,158.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="489.69,158.13 489.11,159.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="490.49,156.46 490.49,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="493.6,154.74 493.6,156.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="489.4,159.29 489.98,160.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="494.95,159.29 494.95,151.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="489.11,159.29 489.69,160.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="489.98,158.13 489.4,159.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M489.98 160.45L489.69 160.45 489.11 159.29 489.4 159.29 489.98 160.45Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="489.98,160.45 489.69,160.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="529.32,384.15 529.32,385.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="494.95,159.29 489.09,159.29" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="529.32,370.29 529.32,384.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="488.27,361.39 493.61,361.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<path d="M489.98 158.13L489.69 158.13 489.11 159.29 489.4 159.29 489.98 158.13Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="489.98,158.13 489.69,158.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="285.47,429.29 285.47,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.47,414.54 285.47,428.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.94,449.67 515.76,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="291.1,245.76 277.18,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="285.48,399.79 285.48,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.18,275.04 312.78,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.99,317.45 313.99,310.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.02,361.39 499.02,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.99,291.89 319.62,291.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,392.22 529.32,398.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.99,309.69 318.6,309.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.07,318.47 319.62,318.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.99,310.71 318.6,310.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.99,292.91 318.6,292.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.18,303.33 312.78,303.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.99,309.69 313.99,303.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.74,302.32 312.78,302.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.99,317.45 318.6,317.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,272.88 301.02,292.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.99,291.89 313.99,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.74,275.04 302.74,288.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.99,303.33 318.6,303.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.78,303.33 312.78,317.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.78,275.04 312.78,278.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.99,302.32 313.99,292.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.99,302.32 318.6,302.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.78,273.64 312.78,274.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.6,317.45 318.6,315.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.62,312.78 319.62,307.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.6,302.32 318.6,302.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.62,318.47 319.62,315.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.6,309.69 318.6,307.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.62,312.78 318.6,312.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.6,305.11 319.62,305.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.6,312.78 318.6,310.71" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.62,315.57 318.6,315.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.62,305.11 319.62,302.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.6,307.98 319.62,307.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.74,288.07 312.78,288.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.6,305.11 318.6,303.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.74,288.58 312.78,288.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.18,273.64 312.78,273.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.74,288.58 302.74,292.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.78,278.12 313.99,278.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.99,278.12 313.99,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.78,288.58 312.78,302.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.18,274.28 312.78,274.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.18,272.88 313.99,272.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.78,284.99 312.78,288.07" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.74,298.79 302.74,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.78,284.99 313.99,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.72,355.54 270.72,362.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,303.27 268.75,303.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,298.79 301.02,310.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,303.91 269.26,303.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.75,288.52 268.75,288.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,303.65 269.26,310.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,273.77 268.75,274.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,303.65 270.02,303.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,303.91 269.26,303.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,303.27 269.26,303.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,303.65 270.02,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,303.65 270.02,303.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,303.65 269.26,303.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,303.65 270.02,310.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,303.27 269.26,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,303.02 270.02,303.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,289.15 269.26,288.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,303.02 270.02,303.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,303.27 269.26,303.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,296.63 269.26,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,303.27 269.26,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,296.53 270.02,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,288.9 269.26,295.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,288.9 270.02,289.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,288.9 270.02,288.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,288.9 270.02,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,289.15 269.26,289.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,303.27 270.02,303.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,288.9 270.02,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,288.26 270.02,288.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,288.9 269.26,288.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,288.26 270.02,288.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,288.52 269.26,288.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,281.78 270.02,282.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,282.03 269.26,281.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,288.52 269.26,288.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,288.52 269.26,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,288.52 269.26,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,281.78 269.26,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,281.78 270.02,281.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,282.03 269.26,282.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,288.52 270.02,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,280.89 269.26,280.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,288.52 270.02,288.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,281.78 270.02,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,280.63 270.02,280.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,280.63 270.02,280.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,280.89 269.26,280.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,274.15 269.26,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,274.15 270.02,274.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,274.4 269.26,274.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,274.15 269.26,274.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,274.15 270.02,274.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,274.15 270.02,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,273.51 270.02,273.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,274.4 269.26,274.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,273.77 269.26,273.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,274.15 270.02,280.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,267.28 269.26,267.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,267.03 270.02,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,273.51 270.02,273.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,273.77 269.26,273.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,267.03 270.02,267.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,267.28 269.26,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,267.03 269.26,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.55,273.51 269.55,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,267.03 270.02,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.74,273.51 269.74,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,273.77 269.26,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,288.52 270.02,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,273.77 270.02,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,273.77 269.26,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,273.77 270.02,274.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,303.65 270.02,303.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,303.27 270.02,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,288.9 270.02,288.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,326.13 268.5,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,274.15 270.02,274.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.73,259.65 269.73,265.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.75,273.77 270.02,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,318.4 270.02,318.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.55,259.65 269.55,265.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.75,318.02 270.02,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,318.02 270.02,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,318.02 270.02,318.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,318.02 269.26,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,318.02 269.26,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,317.77 270.02,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,311.28 270.02,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,311.38 269.26,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,318.02 269.26,318.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,318.02 269.26,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,317.77 270.02,318.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,318.4 270.02,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,318.4 270.02,318.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,318.4 270.02,325.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,318.4 270.02,318.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,318.66 269.26,318.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,318.4 269.26,318.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,318.4 269.26,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,318.66 269.26,318.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.74,274.4 269.74,280.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.75,318.02 268.75,318.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.74,282.03 269.74,288.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,296.78 270.02,296.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,295.39 270.02,295.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.55,274.4 269.55,280.63" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,295.39 270.02,295.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,295.39 270.02,295.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,295.64 269.26,295.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.55,282.03 269.55,288.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,296.53 270.02,296.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,296.78 269.26,296.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,296.78 269.26,296.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.74,289.15 269.74,295.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,296.53 270.02,296.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.55,289.15 269.55,295.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.74,296.78 269.74,303.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,295.64 269.26,295.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,310.14 270.02,310.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,311.28 270.02,311.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.55,296.78 269.55,303.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,311.54 269.26,311.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,311.28 270.02,311.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,311.54 269.26,311.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,310.39 269.26,310.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,310.39 269.26,310.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,310.14 270.02,310.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.74,303.91 269.74,310.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.55,303.91 269.55,310.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.5,326.13 268.5,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.55,311.54 269.55,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,324.89 270.02,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,326.13 268.5,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.74,311.54 269.74,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,325.14 269.26,324.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,324.89 270.02,324.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,325.14 269.26,325.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.5,326.13 268.5,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,324.89 270.02,325.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.55,318.66 269.55,324.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.74,362.91 269.74,369.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.74,370.54 269.74,376.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.55,377.66 269.55,383.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.74,377.66 269.74,383.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.55,370.54 269.55,376.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.74,318.66 269.74,324.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,369.4 269.26,369.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,370.54 270.02,370.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,369.14 270.02,369.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,369.14 270.02,369.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,369.4 269.26,369.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.55,362.91 269.55,369.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,370.29 270.02,370.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,369.14 270.02,369.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,370.54 269.26,370.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,370.29 270.02,370.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.74,355.79 269.74,362.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,370.54 269.26,370.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.75,377.03 268.75,377.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.55,355.79 269.55,362.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,377.41 270.02,377.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,355.79 270.02,355.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,377.66 269.26,377.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,377.66 269.26,377.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,377.41 270.02,377.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,354.39 270.02,354.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,377.41 270.02,384.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,377.41 269.26,377.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,377.41 270.02,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,377.41 269.26,384.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,377.03 269.26,376.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,376.77 270.02,376.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,370.29 270.02,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,370.29 269.26,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,377.03 269.26,377.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,377.03 269.26,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,377.03 270.02,377.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,376.77 270.02,377.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.75,377.03 270.02,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,377.03 269.26,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,377.03 270.02,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,362.28 270.02,362.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,362.28 270.02,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,377.41 270.02,377.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,362.66 270.02,362.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,362.28 269.26,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,355.63 269.26,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,362.28 269.26,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,362.02 270.02,362.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,362.02 270.02,362.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,362.28 269.26,362.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,362.28 269.26,362.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,355.63 270.02,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,362.66 270.02,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,362.66 269.26,362.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,362.66 270.02,362.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,362.91 269.26,362.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,362.66 270.02,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,362.66 269.26,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="290.4,249.32 290.4,246.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="270.02,362.91 269.26,362.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,362.66 270.02,362.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.4,273.1 290.4,257.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="282.31,267.51 278.59,265.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.59,265.69 278.58,264.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.58,264.37 276.47,265.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.47,265.98 276.46,264.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="290.72,249.64 290.72,246.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="290.72,273.42 290.72,257.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="282.2,273.42 290.72,273.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="282.32,273.1 290.4,273.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="268.75,362.28 268.75,362.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="273.93,263.42 273.93,280.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="282.32,273.1 282.32,273.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="282.33,265.67 279.14,264.11" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.14,264.11 279.13,262.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.13,262.78 277.02,264.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.02,264.39 277.01,263.07" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.01,263.07 273.93,261.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="274.25,263.57 274.25,280.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="288.88,257.27 288.88,249.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="282.2,267.46 282.2,280.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="279.07,273.7 279.07,273.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="275.66,264.26 274.25,264.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M279.07 273.7L279.07 273.41 277.91 272.83 277.91 273.12 279.07 273.7Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="277.19,264.26 277.02,264.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.91,280.66 277.91,272.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="290.28,257.27 290.28,249.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="281.88,267.3 281.88,280.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="374.62,244.9 374.62,248.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="276.75,273.41 277.91,272.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.75,273.7 277.91,273.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="291.48,253.35 278.07,253.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.91,273.12 279.07,273.7" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.91,272.83 279.07,273.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="276.75,273.7 276.75,273.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="503.85,363.55 504.11,363.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="290.4,246.02 290.72,246.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="499.27,363.55 499.27,368.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.94,362.28 530.94,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.42,363.55 499.42,368.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.27,363.55 499.42,363.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.42,363.55 499.42,363.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.02,363.55 499.27,363.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.85,362.69 503.85,363.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.58,363.55 506.58,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="504.11,363.55 504.11,362.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.14,368.12 500.35,368 501.48,367.56 502.46,366.83 503.21,365.88 503.69,364.75 503.85,363.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="518,375.26 522.05,376.21" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="522.05,376.21 522.9,375.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="522.9,375.19 523.51,377.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.51,377.77 524.36,376.75" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="524.36,376.75 526.92,377.34" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="504.11,362.69 503.85,362.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.02,362.69 499.02,363.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.9,363.55 506.9,366.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="499.27,362.69 499.02,362.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="506.9,375.12 506.9,379" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="506.9,387.26 506.9,390.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="506.58,374.8 506.58,379" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="499.27,363.55 499.27,362.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="518.67,379.32 526.3,379.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="506.58,387.26 506.58,390.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="518.67,377.92 522.99,377.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="511.67,374.8 511.67,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="518.35,376.59 518.35,379" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="518.67,374.8 526.3,374.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="526.3,378.51 526.3,386.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="522.03,376.2 522.05,376.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="508.87,374.8 508.87,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="518.67,376.75 518.67,379.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="526.61,387.26 526.61,378.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="507.48,374.8 507.48,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.62,375.22 522.46,375.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="510.27,374.8 510.27,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.14,376.2 526.3,376.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="522.46,370.83 504.69,370.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="521.3,374.93 521.3,375.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="506.08,374.8 506.08,367.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="522.46,375.51 521.3,374.93" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="522.46,375.8 521.3,375.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="522.46,370.83 522.46,375.82" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.62,374.93 523.62,375.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="523.62,374.93 522.46,375.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="522.34,378.26 523.5,378.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="522.34,378.55 523.5,379.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="521.18,378.85 522.34,378.26" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M521.3 374.93L521.3 375.22 522.46 375.8 522.46 375.51 521.3 374.93Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="521.18,379.14 521.18,378.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M523.62 374.93L523.62 375.22 522.46 375.8 522.46 375.51 523.62 374.93Z" fill-rule="evenodd" fill="blue"/>
+<path d="M521.18 379.14L521.18 378.85 522.34 378.26 522.34 378.55 521.18 379.14Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="522.34,383.23 522.34,378.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="521.18,379.14 522.34,378.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.81,148.89 476.81,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M523.5 379.14L523.5 378.85 522.34 378.26 522.34 378.55 523.5 379.14Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="523.5,379.14 523.5,378.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="478.21,148.89 478.21,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.43,154.55 476.43,154.74" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="483.97,156.19 484.86,158.05" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="484.86,158.05 484.04,159.09" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="484.04,159.09 486.69,159.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="486.69,159.14 485.88,160.19" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="485.88,160.19 486.8,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="482.41,148.89 482.41,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="479.61,148.89 479.61,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="485.54,156.27 486.1,157.45" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="486.1,157.45 485.28,158.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="485.28,158.49 487.94,158.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="487.94,158.54 487.12,159.59" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="487.12,159.59 488.33,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="485.21,148.89 485.21,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="481.01,148.89 481.01,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="483.81,148.89 483.81,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="482.36,158.17 482.65,158.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.43,154.74 476.43,156.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.63,154.74 476.63,156.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M482.36 158.17L482.65 158.17 483.23 159.33 482.94 159.33 482.36 158.17Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="482.36,160.49 482.94,159.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="486.6,148.89 486.6,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M482.36 160.49L482.65 160.49 483.23 159.33 482.94 159.33 482.36 160.49Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="482.94,159.33 482.36,158.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="487.7,158.85 487.7,160.8" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="482.36,160.49 482.65,160.49" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="482.65,160.49 483.23,159.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="485.63,156.46 493.79,156.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="490.8,148.89 490.8,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="483.23,159.33 482.65,158.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="473.6,150.72 473.6,152.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="473.6,151.44 473.49,151.3 473.38,151.22 473.22,151.22 473.11,151.3 473,151.44 472.95,151.66 472.95,151.81 473,152.02 473.11,152.17 473.22,152.24 473.38,152.24 473.49,152.17 473.6,152.02" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="473.98,152.24 473.98,151.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="473.98,151.51 474.15,151.3 474.25,151.22 474.42,151.22 474.53,151.3 474.58,151.51 474.58,152.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.07,152.1 475.02,152.17 475.07,152.24 475.13,152.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="485.54,156.27 493.6,156.27" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="492.2,148.89 492.2,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="475.62,158.99 475.62,159.71 475.67,159.93 475.78,160 475.95,160 476.06,159.93 476.22,159.71" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.22,158.99 476.22,160" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.65,158.99 476.65,160.51" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="476.65,159.2 476.76,159.06 476.87,158.99 477.04,158.99 477.15,159.06 477.25,159.2 477.31,159.42 477.31,159.57 477.25,159.79 477.15,159.93 477.04,160 476.87,160 476.76,159.93 476.65,159.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="489.4,148.89 489.4,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="488,148.89 488,154.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.05,252.32 293.05,253.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.05,253.05 292.94,252.9 292.83,252.83 292.67,252.83 292.56,252.9 292.45,253.05 292.39,253.26 292.39,253.41 292.45,253.63 292.56,253.77 292.67,253.85 292.83,253.85 292.94,253.77 293.05,253.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.43,253.85 293.43,252.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="293.43,253.12 293.59,252.9 293.7,252.83 293.87,252.83 293.98,252.9 294.03,253.12 294.03,253.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="294.52,253.7 294.47,253.77 294.52,253.85 294.57,253.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.78,255.9 313.75,255.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.3,161.07 486.3,162.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="486.3,159.14 486.3,159.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="477.96,159.33 483.25,159.33" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.05,281.33 277.05,282.06 277.1,282.27 277.21,282.35 277.38,282.35 277.49,282.27 277.65,282.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="277.65,281.33 277.65,282.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.09,281.33 278.09,282.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="278.09,281.55 278.19,281.4 278.3,281.33 278.47,281.33 278.58,281.4 278.69,281.55 278.74,281.76 278.74,281.91 278.69,282.13 278.58,282.27 278.47,282.35 278.3,282.35 278.19,282.27 278.09,282.13" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="302.04,255.14 313.75,255.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.88,243.25 301.88,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.88,278.25 274.25,278.25" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.02,212.92 303.18,212.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,215.08 303.18,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="281.88,279.65 274.25,279.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.02,263.59 331.3,263.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.04,255.14 302.04,254.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.52,259.78 323.67,259.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,263.59 301.02,261.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.18,212.92 303.18,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.78,262.83 301.78,261.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.52,259.02 323.67,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.34,244.46 330.54,244.46" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.78,262.83 309.68,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.07,318.47 302.07,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.34,243.69 331.3,243.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="476.7,363.55 476.7,361.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.18,317.45 312.78,317.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.98,340.02 496.98,342.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="298.73,450.37 298.73,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.18,304.54 303.18,317.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="498.89,340.02 498.89,342.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,392.16 490.96,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.57,360.37 483.57,331.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.02,272.88 499.02,275.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,317.77 530.02,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.98,342.06 498.89,342.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,318.02 530.78,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="498.19,361.39 498.19,342.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.94,363.55 475.94,360.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,311.54 530.78,311.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,318.02 530.78,318.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="531.29,303.27 531.29,303.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,317.77 530.02,318.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,311.28 530.02,311.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,311.28 530.78,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,311.28 530.02,311.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,311.28 530.02,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.3,317.77 530.3,311.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,311.54 530.78,311.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.49,317.77 530.49,311.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,311.28 530.78,311.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,303.91 530.78,303.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,310.39 530.78,310.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,310.14 530.02,310.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.49,310.14 530.49,303.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,310.14 530.02,310.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,310.39 530.78,310.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,303.65 530.78,310.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="476.83,389.36 476.83,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,303.65 530.02,303.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,303.91 530.78,303.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,303.65 530.02,303.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,310.14 530.3,303.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,310.39 530.78,310.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,303.65 530.02,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,303.27 530.78,303.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,303.65 530.78,303.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,303.02 530.02,303.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,303.65 530.02,310.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,303.02 530.02,303.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,296.78 530.78,296.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.49,303.02 530.49,296.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,296.53 530.02,296.53" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,303.27 530.78,303.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,303.02 530.3,296.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,303.27 530.78,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,296.78 530.78,296.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,296.53 530.02,296.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,296.53 530.78,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,303.27 530.02,303.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,296.53 530.02,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,303.27 530.78,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,295.64 530.78,295.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,296.53 530.78,296.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,303.27 530.02,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,295.64 530.78,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,295.39 530.02,295.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,295.39 530.02,295.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,295.64 530.78,295.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="531.54,311.38 531.54,310.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,303.65 530.02,303.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,310.3 530.78,310.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,296.53 529.32,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,311.38 530.78,311.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,296.63 530.78,296.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,303.27 530.02,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,295.54 530.78,295.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,295.64 529.32,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,311.28 529.32,311.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,296.53 529.32,296.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,311.28 529.32,310.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,296.63 531.54,295.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,296.53 529.32,303.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,310.39 529.32,310.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,318.02 530.78,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,317.77 530.02,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,318.02 530.78,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,318.02 530.78,318.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,332.52 530.02,332.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,317.77 530.02,318.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,332.77 530.78,332.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,332.77 530.78,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,318.02 530.78,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,332.52 530.02,332.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,332.77 530.78,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,325.05 530.78,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,332.77 530.78,332.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="531.54,326.13 530.78,326.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,318.02 530.78,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,318.02 530.02,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,318.4 530.02,318.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,318.02 530.02,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,318.02 530.02,318.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,318.02 530.78,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,326.13 531.54,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,318.02 530.78,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,317.77 530.02,317.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,318.4 530.02,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,318.4 530.78,318.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,317.77 530.02,318.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,318.02 530.78,318.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.49,324.89 530.49,318.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,325.14 530.78,325.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,318.4 530.78,325.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,318.4 530.02,325.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,318.66 530.78,318.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,324.89 530.3,318.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,325.14 530.78,324.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,318.66 530.78,318.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,318.4 530.02,318.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,325.14 530.78,325.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,324.89 530.02,324.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,324.89 530.02,325.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.49,332.52 530.49,326.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,326.03 530.02,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,326.29 530.78,326.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,326.03 530.78,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.3,332.52 530.3,326.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,326.29 530.78,326.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,326.03 530.02,326.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,332.77 530.78,332.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,332.52 530.02,332.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,332.77 530.78,332.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,326.03 529.32,326.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,318.02 531.29,318.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.88,382.82 502.88,383.55 502.93,383.77 503.04,383.84 503.2,383.84 503.31,383.77 503.48,383.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="503.48,382.82 503.48,383.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="503.91,382.82 503.91,384.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="503.91,383.04 504.02,382.89 504.13,382.82 504.29,382.82 504.4,382.89 504.51,383.04 504.57,383.26 504.57,383.4 504.51,383.62 504.4,383.77 504.29,383.84 504.13,383.84 504.02,383.77 503.91,383.62" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.02,332.52 530.02,332.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,325.14 529.32,325.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.88,212.92 301.88,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,326.03 529.32,325.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="502.75,369.87 502.75,371.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="502.75,370.59 502.64,370.45 502.53,370.38 502.37,370.38 502.26,370.45 502.15,370.59 502.1,370.81 502.1,370.96 502.15,371.18 502.26,371.32 502.37,371.39 502.53,371.39 502.64,371.32 502.75,371.18" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="503.13,371.39 503.13,370.38" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="503.13,370.67 503.3,370.45 503.4,370.38 503.57,370.38 503.68,370.45 503.73,370.67 503.73,371.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="504.22,371.25 504.17,371.32 504.22,371.39 504.28,371.32" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="470.33,161.89 470.33,162.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.33,156.81 468.93,156.81" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.33,161.64 474.91,161.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.93,161.89 468.93,163.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="300.99,212.73 300.99,185.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.92,157.06 470.33,157.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.33,161.5 470.33,161.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="474.91,161.78 474.78,160.56 474.34,159.43 473.61,158.45 472.66,157.7 471.54,157.22 470.33,157.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.33,161.64 470.33,161.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.33,161.5 474.9,161.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.33,157.06 470.33,156.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.85,243.38 459.85,234.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.92,161.89 470.33,161.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.33,161.89 468.93,161.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.33,156.81 468.92,156.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.33,161.89 470.33,161.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.85,243.38 447.82,243.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.92,161.64 468.92,161.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="459.09,235.75 448.58,235.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.33,161.64 468.92,161.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.92,156.81 468.92,157.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.58,242.61 448.58,235.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="447.82,243.38 447.82,234.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.09,242.61 459.09,235.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.09,242.61 448.58,242.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.85,234.98 447.82,234.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,348.16 269.26,347.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.75,347.52 268.75,347.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.94,380.75 475.94,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.49,421.92 530.49,428.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,421.92 530.3,428.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,347.91 270.02,347.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,348.16 269.26,348.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,347.27 270.02,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,347.52 269.26,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,347.91 269.26,347.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,347.91 270.02,348.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,347.52 269.26,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,347.91 270.02,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,347.52 269.26,347.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,347.52 269.26,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,347.91 270.02,347.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,340.78 270.02,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,347.52 270.02,347.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,347.27 270.02,347.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,340.78 270.02,340.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.75,347.52 270.02,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,341.04 269.26,341.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.55,341.04 269.55,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,341.04 270.02,340.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,341.04 269.26,340.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,340.78 270.02,341.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.74,341.04 269.74,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,347.91 269.26,354.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.74,348.16 269.74,354.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.72,245.76 270.72,332.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.72,333.16 270.72,354.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.55,348.16 269.55,354.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,339.64 270.02,339.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,339.64 270.02,339.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,347.91 270.02,354.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.55,333.41 269.55,339.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,339.89 269.26,339.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.74,333.41 269.74,339.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,333.15 270.02,339.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,339.89 269.26,339.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.55,326.29 269.55,332.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,333.15 269.26,339.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,326.03 270.02,326.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,326.29 269.26,326.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,332.77 269.26,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.74,326.29 269.74,332.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.75,332.77 270.02,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,326.03 270.02,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,326.29 269.26,326.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,332.77 270.02,333.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,326.03 270.02,326.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,332.77 269.26,332.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,326.03 269.26,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,333.15 270.02,333.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,332.77 269.26,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,332.52 270.02,332.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,332.52 270.02,332.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,333.41 269.26,333.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,333.15 270.02,333.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,332.77 269.26,332.77" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,333.41 269.26,333.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,333.15 270.02,333.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="273.68,302.38 273.68,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,302.38 271.52,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,355.54 270.72,355.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,332.77 268.75,333.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,354.55 269.26,354.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,355.63 269.26,355.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,304.54 273.68,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,354.39 270.02,354.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="271.52,302.38 273.68,302.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,354.65 270.72,354.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,354.39 270.02,354.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,354.65 269.26,354.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,354.65 269.26,354.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,355.54 270.02,355.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,354.65 269.26,354.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.72,354.65 270.72,355.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,355.54 270.02,355.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,355.79 269.26,355.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.72,369.4 270.72,370.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,370.29 270.72,370.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,355.54 270.02,355.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,355.79 269.26,355.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.5,369.3 269.26,369.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,369.3 269.26,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,369.4 270.72,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.72,339.89 270.72,340.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,340.88 269.26,340.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,370.38 269.26,370.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,340.78 269.26,340.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,340.78 270.02,340.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,339.89 270.72,339.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,326.03 269.26,326.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,370.29 269.26,370.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,340.78 270.72,340.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,340.78 269.26,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,325.05 269.26,325.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,326.13 268.5,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,326.13 269.26,326.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,339.8 269.26,339.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,326.13 268.5,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,325.05 269.26,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,326.03 270.72,326.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,311.54 270.02,311.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.72,325.14 270.72,326.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,325.14 270.72,325.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,310.39 270.72,310.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,311.28 270.72,311.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,311.38 269.26,311.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,311.28 269.26,311.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,310.3 269.26,310.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.72,310.39 270.72,311.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,296.53 270.72,296.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,295.64 270.72,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,310.3 269.26,310.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.72,295.64 270.72,296.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,295.54 269.26,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,296.63 269.26,296.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,280.79 269.26,280.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,295.54 269.26,295.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,296.53 269.26,296.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,281.78 269.26,281.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,281.87 269.26,281.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,280.79 268.5,281.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,281.78 270.72,281.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,280.79 269.26,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.72,280.89 270.72,281.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,391.4 269.26,391.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,391.4 270.02,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,280.89 270.72,280.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.55,385.29 269.55,391.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,391.78 269.26,391.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,281.87 268.5,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.73,385.29 269.73,391.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.23,392.67 269.61,392.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,391.4 269.26,385.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,391.78 269.26,391.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,391.4 270.02,385.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.61,392.67 269.61,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.01,392.16 285.47,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.23,392.67 269.23,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,392.16 269.23,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.38,392.16 270,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.27,392.16 277.27,391.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.53,392.16 277.27,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.38,391.4 276.38,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.13,391.87 270.02,391.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.27,391.4 277.27,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.38,392.16 276.13,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.38,392.16 276.38,391.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.53,391.4 277.53,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.27,391.4 277.53,391.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.13,392.16 276.13,391.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.27,392.16 284.01,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.13,391.4 276.38,391.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.76,391.88 277.53,391.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="283.76,392.16 283.76,391.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,392.16 283.76,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.27,391.4 284.01,391.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.76,391.4 284.01,391.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.38,392.16 276.38,390.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.76,391.68 277.53,391.68" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.13,391.69 270.02,391.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.4,392.9 277.4,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.01,391.4 284.01,392.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="277.27,390.7 276.38,390.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.72,390.7 285.47,390.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270,391.4 276.38,391.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,267.12 268.5,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.01,392.16 284.01,390.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.27,392.16 277.27,390.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,267.03 270.72,267.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,267.12 268.5,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.75,391.78 268.75,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,267.12 268.5,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,266.14 270.72,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,392.16 269.61,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.72,266.14 270.72,267.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,266.04 269.26,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,266.04 269.26,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,266.04 268.5,267.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,267.12 268.5,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,267.12 268.5,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,267.12 268.5,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,267.03 269.26,267.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.02,267.03 270.02,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.5,267.12 268.5,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,267.12 269.26,267.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,267.28 269.26,267.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.5,267.12 268.5,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,267.12 268.5,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,385.04 269.26,385.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,384.15 270.72,384.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,385.13 269.26,385.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,267.03 270.02,267.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,384.05 269.26,384.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,385.04 270.72,385.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,385.04 270.02,385.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,267.28 269.26,267.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,384.15 269.26,384.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,385.29 269.26,385.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="269.26,384.15 269.26,383.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,385.29 269.26,385.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.72,384.15 270.72,385.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.26,383.89 270.02,383.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,383.89 270.02,384.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="270.02,385.04 270.02,385.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="268.5,310.3 268.5,311.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,384.05 269.26,384.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,354.55 268.5,355.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,295.54 268.5,296.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,413.33 271.52,414.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,369.3 268.5,370.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.08,431.84 301.08,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.9,441.28 302.9,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,384.05 268.5,385.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="268.5,339.8 268.5,340.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.85,441.28 302.9,441.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.41,440.77 303.41,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.85,441.28 301.85,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.85,440.77 303.41,440.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.85,432.6 301.85,434" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.85,432.6 304.64,432.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.08,431.84 331.08,433.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.29,432.6 314.29,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="315.06,432.6 323.45,432.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.08,431.84 331.08,431.84" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="315.06,432.6 315.06,435.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.45,432.6 323.45,435.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="315.06,435.65 323.45,435.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.21,432.6 324.21,440.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.32,432.6 330.32,433.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.43,444.12 322.66,444.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="314.29,436.41 323.45,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.21,440.99 324.72,440.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.21,440.23 324.72,440.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.45,436.41 323.45,444.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.21,432.6 330.32,432.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.21,440.99 324.21,444.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.61,444.12 318.09,444.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="318.85,436.49 318.85,444.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="322.76,441.07 321.79,441.19 320.91,441.62 320.22,442.29 319.77,443.16 319.61,444.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="322.66,444.12 322.66,441.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="323.45,444.93 324.21,444.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.21,444.12 315.03,444.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="318.18,441.07 317.21,441.19 316.34,441.62 315.64,442.29 315.19,443.16 315.03,444.12" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="318.09,444.12 318.09,441.07" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="330.32,440.99 330.32,450.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.27,436.49 314.27,444.05" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="301.85,434.25 304.9,434.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.64,432.6 304.64,434" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.85,434 304.64,434" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.9,432.6 304.9,434.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.85,434.25 301.85,440.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.58,450.97 330.58,451.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.32,438.49 330.32,440.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.32,450.97 330.58,450.97" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.9,432.6 314.29,432.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.32,433.4 331.08,433.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.08,438.49 331.08,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.11,251.31 482.94,251.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="482.18,258.94 482.18,251.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="482.94,251.31 483.1,252.27 483.55,253.13 484.24,253.81 485.12,254.24 486.08,254.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="485.99,251.31 485.99,254.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="330.32,433.66 325.74,433.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.32,438.49 331.08,438.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.52,251.31 485.99,251.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="325.74,433.52 325.87,434.73 326.31,435.87 327.03,436.85 327.99,437.6 329.11,438.07 330.32,438.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="486.76,258.94 486.76,251.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="330.32,438.49 331.08,438.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.33,251.31 490.57,251.31" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="330.32,433.8 325.75,433.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="487.52,251.31 487.67,252.27 488.12,253.13 488.82,253.81 489.7,254.24 490.66,254.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="490.57,251.31 490.57,254.36" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="330.32,433.66 330.32,433.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.32,433.8 330.32,433.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.08,438.49 331.08,438.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.08,438.23 330.32,438.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.32,433.66 331.08,433.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.08,433.66 331.08,433.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.32,438.23 330.32,438.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.08,433.4 330.32,433.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.32,433.4 330.32,433.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.81,440.23 330.32,440.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.81,440.99 330.32,440.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.72,440.99 324.72,440.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.55,440.99 329.55,445.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.98,440.99 325.14,442.2 325.61,443.32 326.37,444.28 327.34,445 328.48,445.44 329.69,445.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.81,440.99 329.81,440.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.55,440.99 329.41,440.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.98,440.23 324.72,440.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.41,440.99 329.41,440.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.41,440.99 329.41,445.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.98,440.99 324.98,440.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.72,440.99 324.98,440.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.55,440.99 329.81,440.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.81,440.23 329.55,440.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.72,440.23 324.72,440.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312,452.5 306.9,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.81,440.99 329.81,440.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.14,439.98 321.47,439.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.43,436.49 322.43,437.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.04,438.81 321.94,438.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="329.55,440.23 329.55,440.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.43,437.33 322.21,437.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="321.47,439.9 321.78,439.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="321.78,439.64 321.97,439.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="321.97,439.27 322.04,438.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.21,437.38 321.96,437.55 321.86,437.83 321.94,438.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.34,438.12 320.42,437.83 320.31,437.55 320.06,437.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.34,438.12 320.23,438.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.85,436.49 322.43,436.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.85,437.33 320.06,437.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.85,436.49 319.85,437.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.8,439.9 321.14,439.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.23,438.81 320.31,439.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.5,439.64 320.8,439.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.31,439.27 320.5,439.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.39,439.27 317.46,438.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.56,439.98 316.89,439.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.89,439.9 317.2,439.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.2,439.64 317.39,439.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.85,437.33 317.64,437.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.85,436.49 317.85,437.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.46,438.81 317.36,438.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.64,437.38 317.39,437.55 317.28,437.83 317.36,438.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.27,436.49 315.27,437.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.27,436.49 317.85,436.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.66,438.81 315.73,439.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.23,439.9 316.56,439.98" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.92,439.64 316.23,439.9" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.76,438.12 315.84,437.83 315.73,437.55 315.48,437.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.76,438.12 315.66,438.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.27,437.33 315.48,437.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.53,432.79 311.53,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.73,439.27 315.92,439.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.53,433.95 312.05,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.05,433.95 312.5,434.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.35,251.86 319.88,251.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="312.82,434.34 313.34,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.86,432.79 311.53,432.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="312.5,434.34 312.82,434.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.92,433.95 309.38,434.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.86,433.95 313.34,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="313.86,432.79 313.86,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.41,432.79 308.41,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.79,254.91 320.75,254.78 321.63,254.36 322.33,253.68 322.78,252.82 322.93,251.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="319.88,251.86 319.88,254.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="308.41,433.95 308.92,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="319.12,259.02 319.12,251.92" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="315.21,254.91 316.18,254.78 317.05,254.36 317.75,253.68 318.2,252.82 318.35,251.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="315.3,251.86 315.3,254.91" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="323.67,251.86 322.93,251.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="309.7,434.34 310.22,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.73,433.95 310.22,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.38,434.34 309.7,434.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.73,432.79 310.73,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.39,433.95 305.91,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.39,432.79 305.39,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.91,433.95 306.36,434.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="307.72,433.95 307.2,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="314.52,251.86 315.3,251.86" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="310.73,432.79 308.41,432.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="306.68,434.34 307.2,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.54,444 305.54,442.06" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="307.72,432.79 305.39,432.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="307.72,432.79 307.72,433.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.28,441.8 303.6,441.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="306.36,434.34 306.68,434.34" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="303.6,444.26 305.28,444.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.22,443.8 305.22,442.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="303.6,441.8 303.6,444.26" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="304.18,442.25 304.18,443.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.09,442.12 304.31,442.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="304.31,442.12 304.22,442.16 304.18,442.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.22,442.25 305.18,442.16 305.09,442.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.28,444.26 305.47,444.18 305.54,444" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="304.31,443.93 305.09,443.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.58,447.49 305.58,445.56" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.09,443.93 305.18,443.89 305.22,443.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.54,442.06 305.47,441.88 305.28,441.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="303.64,447.75 305.32,447.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="303.64,445.3 303.64,447.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="304.18,443.8 304.22,443.89 304.31,443.93" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.32,445.3 303.64,445.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.26,447.3 305.26,445.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="304.22,445.75 304.22,447.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.23,444.21 497.46,444.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="305.13,445.62 304.35,445.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.13,447.43 305.22,447.39 305.26,447.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="304.35,447.43 305.13,447.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.26,445.75 305.22,445.66 305.13,445.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="493.65,436.58 493.65,444.15" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="494.41,444.21 492.89,444.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="497.46,444.21 497.31,443.25 496.86,442.39 496.16,441.71 495.29,441.29 494.32,441.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="494.41,444.21 494.41,441.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="304.35,445.62 304.26,445.66 304.22,445.75" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.32,447.75 305.5,447.68 305.58,447.49" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="304.22,447.3 304.26,447.39 304.35,447.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="489.07,436.58 489.07,444.15" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="489.83,444.21 488.31,444.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="473.45,247.94 473.45,249.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.58,445.56 305.5,445.37 305.32,445.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.19,250.13 471.52,250.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492.89,444.21 492.73,443.25 492.28,442.39 491.58,441.71 490.71,441.29 489.74,441.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="489.83,444.21 489.83,441.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="488.31,444.21 488.15,443.25 487.7,442.39 487.01,441.71 486.13,441.29 485.17,441.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="485.26,444.21 485.26,441.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="484.49,436.58 484.49,444.15" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="471.52,247.68 473.19,247.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.52,250.13 471.52,247.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="484.43,444.21 485.26,444.21" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="472.1,249.68 472.1,248.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.13,248.13 473.13,249.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.23,248 473,248" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473,249.81 472.23,249.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473,249.81 473.09,249.77 473.13,249.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.45,247.94 473.38,247.75 473.19,247.68" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.13,248.13 473.09,248.04 473,248" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.19,250.13 473.38,250.06 473.45,249.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.1,249.68 472.13,249.77 472.23,249.81" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.16,253.63 471.48,253.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.23,248 472.13,248.04 472.1,248.13" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.42,251.43 473.42,253.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.48,251.17 473.16,251.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.06,253.18 472.06,251.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="471.48,253.63 471.48,251.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.19,251.5 472.96,251.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.09,251.63 473.09,253.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.96,253.31 472.19,253.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.09,251.63 473.06,251.54 472.96,251.5" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.96,253.31 473.06,253.27 473.09,253.18" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.06,253.18 472.1,253.27 472.19,253.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="472.19,251.5 472.1,251.54 472.06,251.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.16,253.63 473.34,253.55 473.42,253.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.42,251.43 473.34,251.25 473.16,251.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.3,262.64 473.3,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.3,261.48 473.82,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="473.82,261.48 474.27,261.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.62,262.64 473.3,262.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.62,261.48 475.11,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.62,262.64 475.62,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.59,261.09 475.11,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.83,261.48 477.28,261.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="474.27,261.09 474.59,261.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.61,261.09 478.12,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.31,262.64 476.31,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.64,261.48 478.12,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="476.31,261.48 476.83,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.64,262.64 478.64,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.64,262.64 476.31,262.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.28,261.09 477.61,261.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.44,261.48 479.96,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.96,261.48 480.41,261.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.44,262.64 479.44,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.77,261.48 481.25,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.73,261.09 481.25,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.77,262.64 481.77,261.48" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.41,261.09 480.73,261.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="484.8,255.53 484.47,255.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="481.77,262.64 479.44,262.64" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.3,256.16 485.11,255.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.11,255.79 484.8,255.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.37,256.62 485.3,256.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.76,258.1 485.54,258.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.27,257.31 485.37,256.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.76,258.94 485.76,258.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.39,258.05 483.64,257.88 483.75,257.6 483.67,257.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.27,257.31 485.19,257.6 485.29,257.88 485.54,258.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.18,258.94 485.76,258.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.18,258.1 483.39,258.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.63,256.16 483.56,256.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.18,258.94 483.18,258.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.83,255.79 483.63,256.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="483.56,256.62 483.67,257.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="489.38,255.53 489.05,255.45" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="484.47,255.45 484.13,255.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="484.13,255.53 483.83,255.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="489.68,255.79 489.38,255.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="489.85,257.31 489.95,256.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="489.95,256.62 489.88,256.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.34,258.94 490.34,258.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="489.88,256.16 489.68,255.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="489.85,257.31 489.77,257.6 489.87,257.88 490.12,258.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.97,258.05 488.22,257.88 488.32,257.6 488.25,257.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.34,258.1 490.12,258.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.75,258.94 490.34,258.94" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.75,258.94 487.75,258.1" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.75,258.1 487.97,258.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="488.21,256.16 488.14,256.62" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="488.14,256.62 488.25,257.31" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="488.41,255.79 488.21,256.16" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="497.72,256.73 497.46,256.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.71,255.53 488.41,255.79" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="497.46,256.73 497.46,255.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="489.05,255.45 488.71,255.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="497.46,255.96 497.72,255.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.63,256.73 492.63,255.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.88,256.73 492.63,256.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.72,255.96 497.72,256.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.63,255.96 492.88,255.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.88,255.96 492.88,256.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.46,255.96 497.46,251.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.46,255.96 497.32,255.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.6,251.39 496.39,251.51 495.25,251.96 494.27,252.68 493.52,253.64 493.04,254.76 492.88,255.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.32,255.96 497.32,251.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.63,255.96 492.63,256.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="497.32,255.96 497.32,255.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.72,255.96 498.22,255.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="497.72,255.96 497.72,256.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="498.99,263.59 498.99,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="497.72,256.73 498.22,256.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="498.22,262.83 498.22,256.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.81,262.83 482.2,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.72,261.18 472.81,261.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.55,262.83 472.55,261.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.72,261.18 469.72,254.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="472.81,262.83 472.81,261.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="498.22,255.96 498.22,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.12,255.96 492.12,250.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.72,261.43 472.55,261.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.12,255.96 492.63,255.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="491.36,250.5 492.12,250.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.12,256.73 492.63,256.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.12,262.83 492.63,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="491.36,259.02 491.36,250.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.96,262.83 491.36,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="491.36,262.83 491.36,259.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.2,259.02 491.36,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.12,262.83 492.12,256.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.96,259.78 491.36,259.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.72,262.83 472.55,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.96,262.83 482.96,259.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.2,262.83 482.2,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.72,262.83 469.72,261.43" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="471.28,254.12 471.28,245.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.99,263.59 492.63,263.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.72,245.98 471.28,245.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.96,263.59 468.96,243.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.95,243.25 468.96,243.25" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.72,246.49 470.77,246.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.72,254.12 471.28,254.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.95,244.01 469.72,244.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.72,253.61 469.72,246.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.77,253.61 470.77,246.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.72,253.61 470.77,253.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="497.72,263.59 498.99,263.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="497.72,262.83 497.72,263.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.72,245.98 469.72,244.01" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.63,262.83 492.63,263.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="497.72,262.83 498.22,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="497.32,262.83 497.32,258.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.46,262.83 497.46,258.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.6,258.26 496.39,258.38 495.25,258.82 494.27,259.55 493.52,260.5 493.04,261.62 492.88,262.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.46,262.83 497.32,262.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.88,262.83 492.63,262.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.32,262.83 497.32,262.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.63,263.59 492.88,263.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.63,262.83 492.63,263.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.72,262.83 497.46,262.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.88,263.59 492.88,262.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.46,263.59 497.72,263.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.46,262.83 497.46,263.59" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="342.35,215.08 347.64,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.64,215.08 347.64,221.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,215.08 340.19,221.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="497.72,263.59 497.72,262.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="340.95,215.08 340.95,221.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.4,221.86 340.19,221.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.35,214.32 348.4,214.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.64,221.1 340.95,221.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.75,251.77 313.75,254.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.52,251.77 314.52,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="348.4,214.32 348.4,221.86" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.04,254.63 313.75,254.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.75,254.63 313.75,255.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.04,254.12 313.75,254.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.75,255.9 313.75,260.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.04,254.12 302.04,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.52,262.83 323.67,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.67,251.77 323.67,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="314.52,259.78 314.52,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.3,243.69 331.3,257.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.54,244.46 330.54,254.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.44,251.77 324.44,254.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.44,255.2 324.44,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.75,251.77 314.52,251.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.44,254.44 324.94,254.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.44,255.2 324.94,255.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="323.67,259.78 323.67,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.44,262.83 330.54,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.03,254.44 330.54,254.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.54,255.2 330.54,257.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.03,254.44 330.03,255.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.03,255.2 330.54,255.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="329.63,254.44 329.63,249.87" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.78,254.44 329.78,249.86" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.63,254.44 329.63,254.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.94,254.44 324.94,255.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="324.94,254.44 324.94,255.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.91,249.86 328.7,249.99 327.57,250.43 326.59,251.15 325.83,252.11 325.36,253.23 325.2,254.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.78,254.44 329.63,254.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.2,254.44 324.94,254.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.94,255.2 325.2,255.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="325.2,255.2 325.2,254.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.03,254.44 329.78,254.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.78,254.44 329.78,255.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.03,255.2 330.03,254.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.78,255.2 330.03,255.2" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.3,262.49 331.3,263.59" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.54,262.49 330.54,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.54,262.49 331.3,262.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.54,262.23 325.96,262.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.54,257.66 329.33,257.82 328.21,258.29 327.25,259.04 326.53,260.02 326.09,261.16 325.96,262.37" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.54,257.4 331.3,257.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.3,257.66 331.3,257.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.54,262.09 325.97,262.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.54,262.09 330.54,262.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.3,257.4 330.54,257.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.54,262.23 330.54,262.09" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.54,257.66 331.3,257.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.54,257.4 330.54,257.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.3,262.23 330.54,262.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.3,262.49 331.3,262.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.54,262.23 330.54,262.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.83,255.46 316.49,255.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="330.54,262.49 331.3,262.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="323.67,251.77 324.44,251.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="316,256.17 315.92,256.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.49,255.55 316.19,255.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="316.19,255.8 316,256.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.92,256.63 316.03,257.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.54,258.96 315.54,258.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.54,258.12 315.75,258.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="315.75,258.07 316,257.9 316.11,257.62 316.03,257.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.63,257.33 317.55,257.62 317.65,257.9 317.9,258.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.12,258.96 315.54,258.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.12,258.12 317.9,258.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.73,256.63 317.66,256.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="318.12,258.96 318.12,258.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.63,257.33 317.73,256.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="321.41,255.46 321.07,255.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.66,256.17 317.47,255.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="321.07,255.55 320.77,255.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.47,255.8 317.16,255.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="317.16,255.55 316.83,255.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.57,256.17 320.5,256.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.11,258.96 320.11,258.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.77,255.8 320.57,256.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.5,256.63 320.61,257.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.11,258.12 320.33,258.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="320.33,258.07 320.58,257.9 320.68,257.62 320.61,257.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.21,257.33 322.13,257.62 322.23,257.9 322.48,258.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.7,258.96 322.7,258.12" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.7,258.96 320.11,258.96" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.7,258.12 322.48,258.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.31,256.63 322.24,256.17" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.05,255.8 321.74,255.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.21,257.33 322.31,256.63" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="322.24,256.17 322.05,255.8" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.84,252.15 308.9,252.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="321.74,255.55 321.41,255.46" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.64,254.09 311.09,254.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.64,252.47 309.09,252.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.64,252.41 308.64,254.09" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.09,254.09 311.09,252.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.77,253.38 310.77,252.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.77,252.6 310.73,252.51 310.64,252.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.09,253.51 310.64,253.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.96,253.38 309,253.47 309.09,253.51" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.96,252.6 308.96,253.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="310.64,253.51 310.73,253.47 310.77,253.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.09,252.47 309,252.51 308.96,252.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="311.09,252.41 311.02,252.22 310.84,252.15" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="306.93,252.07 304.99,252.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="304.73,254.01 307.19,254.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="308.9,252.15 308.72,252.22 308.64,252.41" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="304.73,252.33 304.73,254.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="307.19,254.01 307.19,252.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="306.87,253.3 306.87,252.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="306.74,252.39 305.19,252.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.06,252.52 305.06,253.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.19,253.43 306.74,253.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="306.87,252.52 306.83,252.43 306.74,252.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.19,252.39 305.1,252.43 305.06,252.52" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="307.19,252.33 307.11,252.14 306.93,252.07" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="305.06,253.3 305.1,253.39 305.19,253.43" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="306.74,253.43 306.83,253.39 306.87,253.3" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.94,261.05 313.75,261.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="304.99,252.07 304.81,252.14 304.73,252.33" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="309.68,260.8 313.75,260.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="313.75,261.05 313.75,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.94,261.05 309.94,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.68,260.8 309.68,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="309.94,262.83 313.75,262.83" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.45,436.54 498.32,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.08,431.96 499.08,449.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.69,432.73 470.2,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="498.22,432.73 498.22,435.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.21,435.78 498.22,435.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.21,432.73 485.21,435.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="477.57,432.73 477.57,434.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.93,431.96 470.2,431.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.45,432.73 484.45,436.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="477.06,432.73 477.06,443.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.79,443.92 477.57,443.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="476.55,432.73 476.55,443.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.79,432.73 475.79,440.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.21,432.73 498.22,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="476.55,432.73 477.06,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="476.55,443.41 477.06,443.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.93,451.99 468.93,431.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="477.57,432.73 480.36,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.44,451.99 469.44,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.69,451.13 469.69,441.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="387.25,256.17 388.88,259.58" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="388.88,259.58 388.06,260.63" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="388.06,260.63 390.71,260.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.71,260.68 389.9,261.72" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="389.9,261.72 391.39,264.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="469.44,451.13 469.69,451.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="498.32,436.54 498.32,449.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.69,441.12 470.2,441.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.69,440.36 469.69,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="469.69,440.36 470.2,440.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.79,441.12 475.79,443.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.27,439.99 496.58,439.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="495.94,440.08 496.27,439.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.58,439.74 496.77,439.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.77,439.37 496.84,438.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="496.84,438.91 496.74,438.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="497.23,436.58 497.23,437.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="497.23,437.42 497.02,437.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="497.02,437.47 496.76,437.64 496.66,437.92 496.74,438.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="494.65,436.58 497.23,436.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="495.14,438.21 495.22,437.92 495.11,437.64 494.86,437.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="494.65,437.42 494.86,437.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="494.65,436.58 494.65,437.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="495.03,438.91 495.11,439.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="495.3,439.74 495.61,439.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="495.14,438.21 495.03,438.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="495.11,439.37 495.3,439.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="491.36,440.08 491.69,439.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="495.61,439.99 495.94,440.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492,439.74 492.19,439.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="491.69,439.99 492,439.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492.27,438.91 492.16,438.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492.65,437.42 492.44,437.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492.19,439.37 492.27,438.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492.65,436.58 492.65,437.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="492.44,437.47 492.19,437.64 492.08,437.92 492.16,438.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.07,436.58 492.65,436.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.56,438.21 490.64,437.92 490.53,437.64 490.28,437.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.07,436.58 490.07,437.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.07,437.42 490.28,437.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.56,438.21 490.46,438.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.53,439.37 490.72,439.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.46,438.91 490.53,439.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="490.72,439.74 491.03,439.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.12,439.99 487.42,439.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="491.03,439.99 491.36,440.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="486.78,440.08 487.12,439.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.62,439.37 487.69,438.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="488.07,436.58 488.07,437.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.42,439.74 487.62,439.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.69,438.91 487.58,438.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="487.86,437.47 487.61,437.64 487.5,437.92 487.58,438.21" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.49,436.58 488.07,436.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="488.07,437.42 487.86,437.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.49,436.58 485.49,437.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.98,438.21 486.06,437.92 485.96,437.64 485.71,437.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.49,437.42 485.71,437.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.98,438.21 485.88,438.91" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="485.88,438.91 485.95,439.37" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="486.14,439.74 486.45,439.99" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.57,434.12 480.36,434.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="485.95,439.37 486.14,439.74" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.57,434.38 480.62,434.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="486.45,439.99 486.78,440.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="480.36,432.73 480.36,434.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="477.57,434.38 477.57,443.92" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.62,432.73 484.45,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.62,432.73 480.62,434.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.54,438.47 479.54,436.53" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.29,436.27 477.61,436.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.22,438.27 479.22,436.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.61,436.27 477.61,438.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.32,438.4 479.09,438.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.61,438.73 479.29,438.73" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.19,436.72 478.19,438.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.09,438.4 479.18,438.37 479.22,438.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.09,436.6 478.32,436.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.22,436.72 479.18,436.63 479.09,436.6" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.29,438.73 479.47,438.65 479.54,438.47" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.32,436.6 478.23,436.63 478.19,436.72" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.19,438.27 478.23,438.37 478.32,438.4" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.54,442.01 479.54,440.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.6,439.82 477.6,442.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.54,436.53 479.47,436.35 479.29,436.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="477.6,442.27 479.28,442.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.28,439.82 477.6,439.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.21,441.82 479.21,440.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.31,441.95 479.09,441.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.18,440.27 478.18,441.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.09,441.95 479.18,441.91 479.21,441.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.09,440.14 478.31,440.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.31,440.14 478.22,440.18 478.18,440.27" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.21,440.27 479.18,440.18 479.09,440.14" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="478.18,441.82 478.22,441.91 478.31,441.95" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="479.28,442.27 479.46,442.2 479.54,442.01" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.28,432.73 475.79,432.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="479.54,440.08 479.46,439.89 479.28,439.82" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="475.28,432.73 475.28,431.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.28,431.96 499.08,431.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.2,432.73 470.2,431.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.45,432.73 470.45,437.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.31,437.3 471.52,437.18 472.66,436.73 473.64,436.01 474.39,435.05 474.87,433.93 475.03,432.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.59,432.73 470.59,437.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.59,432.73 470.59,432.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.45,432.73 470.59,432.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.28,432.73 475.28,431.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.28,431.96 475.03,431.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.03,432.73 475.28,432.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.03,431.96 475.03,432.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.45,432.73 470.45,431.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.2,432.73 470.45,432.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.2,431.96 470.2,432.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.28,441.12 475.79,441.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.45,431.96 470.2,431.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.28,441.12 475.28,440.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="475.28,440.36 475.79,440.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.31,445.69 471.52,445.57 472.66,445.13 473.64,444.4 474.39,443.45 474.87,442.33 475.03,441.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.2,441.12 470.2,440.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.59,441.12 470.59,445.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.45,441.12 470.45,445.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.45,441.12 470.59,441.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.59,441.12 470.59,441.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.03,441.12 475.28,441.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.28,441.12 475.28,440.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.28,440.36 475.03,440.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.03,440.36 475.03,441.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.2,441.12 470.45,441.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.45,440.36 470.2,440.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.27,390.89 286.27,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="470.45,441.12 470.45,440.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="470.2,440.36 470.2,441.12" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.27,393.05 288.44,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="286.27,390.89 288.44,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="288.44,390.89 288.44,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.36,330.99 346.36,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.18,330.99 346.36,330.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.95,331.76 345.59,331.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.18,330.99 336.18,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.95,331.76 336.95,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.18,334.93 346.36,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="384.76,331.76 384.76,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.95,334.17 345.59,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="376.11,334.17 384.76,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.59,331.76 345.59,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="375.35,334.93 385.52,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="376.11,331.76 376.11,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="375.35,330.99 385.52,330.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="376.11,331.76 384.76,331.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="375.35,330.99 375.35,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="385.52,330.99 385.52,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,331.88 379.36,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.52,331.88 381.52,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,331.88 381.52,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.36,334.04 381.52,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.52,330.99 414.52,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.69,330.99 424.69,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.52,334.93 424.69,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.52,330.99 424.69,330.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.28,331.76 415.28,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.28,331.76 423.93,331.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.28,334.17 423.93,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="423.93,331.76 423.93,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="454.45,331.76 454.45,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.09,331.76 463.09,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="453.68,334.93 463.86,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="454.45,334.17 463.09,334.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="454.45,331.76 463.09,331.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="453.68,330.99 453.68,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,331.88 420.68,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="453.68,330.99 463.86,330.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,334.04 420.68,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.86,330.99 463.86,334.93" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.68,331.88 420.68,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,331.88 418.52,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,331.88 420.68,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.68,331.88 420.68,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,331.88 418.52,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.52,334.04 420.68,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,334.04 459.85,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,331.88 457.69,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,331.88 457.69,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.85,331.88 459.85,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.85,331.88 459.85,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,331.88 459.85,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.28,363.67 423.93,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,334.04 459.85,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.69,331.88 459.85,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.52,364.44 424.69,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.28,361.26 415.28,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.52,360.5 414.52,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="423.93,361.26 423.93,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="414.52,360.5 424.69,360.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="415.28,361.26 423.93,361.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="385.52,360.5 385.52,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="376.11,361.26 384.76,361.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="424.69,360.5 424.69,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="384.76,361.26 384.76,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="375.35,360.5 385.52,360.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="375.35,360.5 375.35,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="375.35,364.44 385.52,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="376.11,363.67 384.76,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="376.11,361.26 376.11,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.95,361.26 345.59,361.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="345.59,361.26 345.59,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.95,361.26 336.95,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.18,360.5 346.36,360.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.18,360.5 336.18,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.36,360.5 346.36,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.18,364.44 346.36,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="336.95,363.67 345.59,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.86,360.5 463.86,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="453.68,360.5 463.86,360.5" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="463.09,361.26 463.09,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="454.45,361.26 463.09,361.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="453.68,360.5 453.68,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="453.68,364.44 463.86,364.44" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="454.45,361.26 454.45,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,443.15 530.78,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,444.04 529.32,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="454.45,363.67 463.09,363.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,436.03 531.29,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,443.15 530.78,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,443.15 529.32,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,444.04 529.32,444.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,444.14 531.54,443.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,444.14 530.78,444.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,443.06 530.78,443.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,443.15 530.78,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,428.4 530.78,428.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,428.31 530.78,428.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,429.39 531.54,428.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,429.39 530.78,429.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,428.4 529.32,428.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,429.29 529.32,429.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,436.03 530.02,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,436.41 530.02,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,428.4 530.78,428.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,436.03 530.02,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,436.03 530.78,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,429.29 530.78,429.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,436.03 530.78,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,429.29 529.32,428.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,429.29 530.78,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,429.29 530.02,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.3,435.78 530.3,429.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.49,435.78 530.49,429.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,429.55 530.78,429.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,429.29 530.02,429.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,429.55 530.78,429.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,429.29 530.02,429.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,436.03 530.78,435.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,435.78 530.02,435.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,435.78 530.02,436.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,436.03 530.78,436.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,436.41 530.78,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,436.41 530.02,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,443.15 530.78,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,436.41 530.02,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.49,442.9 530.49,436.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,436.41 530.78,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.3,442.9 530.3,436.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,436.67 530.78,436.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,436.41 530.02,436.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,436.41 530.02,436.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,436.67 530.78,436.67" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,443.15 530.78,442.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,442.9 530.02,443.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,442.9 530.02,442.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,443.15 530.78,443.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="529.32,399.79 529.32,413.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,355.54 529.32,355.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,355.54 529.32,354.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,354.65 529.32,354.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,347.52 531.29,347.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,362.02 530.02,362.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,362.28 530.78,362.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,362.28 530.78,362.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,362.02 530.02,362.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,355.79 530.78,355.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,355.54 530.02,355.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,355.79 530.78,355.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,355.54 530.02,355.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.49,362.02 530.49,355.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,362.02 530.3,355.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,355.54 530.78,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,355.54 530.02,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,354.65 530.78,354.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,355.54 530.78,355.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,354.39 530.02,354.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,354.39 530.02,354.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,348.16 530.78,347.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,354.65 530.78,354.65" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,347.91 530.02,347.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,347.91 530.02,348.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,348.16 530.78,348.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.49,354.39 530.49,348.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,347.91 530.78,354.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.3,354.39 530.3,348.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,347.91 530.02,354.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,354.65 530.78,354.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,347.91 530.02,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,347.91 530.78,347.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,347.52 530.78,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,347.27 530.02,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,347.27 530.02,347.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,347.52 530.78,347.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,347.52 530.78,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,347.52 530.78,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,347.52 530.02,347.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,347.52 530.02,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,355.63 530.78,355.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,355.63 531.54,354.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,347.52 530.02,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,354.55 530.78,354.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,362.28 530.78,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,347.91 530.02,347.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,362.02 530.02,362.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,362.28 530.78,362.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,362.28 530.78,362.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,347.52 530.78,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,362.02 530.02,362.28" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,362.28 530.78,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.76,462.79 347.18,463.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="347.18,463.95 347.76,465.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="348.05,462.79 347.47,463.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="347.47,463.95 348.05,465.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="348.05,462.79 347.76,462.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="348.05,465.12 347.76,465.12" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M348.05 462.79L347.76 462.79 347.18 463.95 347.47 463.95 348.05 462.79Z" fill-rule="evenodd" fill="blue"/>
+<path d="M348.05 465.12L347.76 465.12 347.18 463.95 347.47 463.95 348.05 465.12Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="353.34,463.95 347.16,463.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.78,347.52 530.78,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,347.27 530.02,347.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,347.52 530.78,347.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,347.27 530.02,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,340.78 529.32,340.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,347.52 530.78,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,333.15 530.02,333.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,339.89 529.32,339.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.29,332.77 530.02,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,340.78 529.32,339.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.7,466.79 342.93,464.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="342.93,464.2 342.12,463.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="342.12,463.15 344.77,463.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="344.77,463.1 343.95,462.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="343.95,462.06 344.5,460.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="531.54,339.8 530.78,339.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="343.32,466.79 344.14,465.06" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="344.14,465.06 343.32,464.01" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="343.32,464.01 345.98,463.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="345.98,463.96 345.16,462.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="345.16,462.92 346.16,460.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="531.54,340.88 530.78,340.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="531.54,340.88 531.54,339.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,332.77 530.02,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,332.77 530.78,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,332.77 530.02,333.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,332.77 530.78,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,333.15 530.78,333.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,333.15 530.02,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,339.89 530.78,339.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,333.15 530.02,339.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,333.15 530.78,339.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.3,339.64 530.3,333.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.49,339.64 530.49,333.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,333.41 530.78,333.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,333.15 530.02,333.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,333.15 530.02,333.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,333.41 530.78,333.41" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,339.64 530.02,339.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,339.89 530.78,339.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,339.89 530.78,339.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,339.64 530.02,339.89" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,340.78 530.78,340.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,340.78 530.02,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.49,347.27 530.49,341.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,340.78 530.78,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,341.04 530.78,340.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.3,347.27 530.3,341.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,340.78 530.02,341.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,340.78 530.02,340.78" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,347.52 530.78,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,341.04 530.78,341.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,347.27 530.02,347.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.02,347.27 530.02,347.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="531.29,332.77 531.29,333.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,347.52 530.78,347.52" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="483.57,360.37 475.94,360.37" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,355.54 529.32,362.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="476.7,363.55 475.94,363.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.57,361.13 476.7,361.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.59,332.96 496.86,332.96" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="483.57,331.95 496.86,331.95" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="498,340.02 498,334.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,332.96 484.59,350.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="484.59,332.96 497.3,350.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.3,393.02 504.2,393.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.3,391.65 504.3,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,347.6 529.32,354.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.02,302.38 499.02,304.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.02,303.76 528.52,303.76" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="530.02,303.19 528.52,303.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="529.32,252.28 529.32,266.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="508.94,245.76 522.8,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,303.73 299.73,303.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="271.52,303.1 270.72,303.1" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="301.02,303.16 299.73,303.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="312.78,303.33 303.18,317.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="271.52,303.67 270.72,303.67" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="303.18,303.33 312.78,317.45" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.72,362.32 270.72,369.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="366.49,139.15 367.41,137.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="367.41,137.22 366.8,136.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="366.8,136.43 368.79,136.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.79,136.4 368.17,135.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.17,135.61 369.31,133.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.02,139.18 366.17,136.78" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="366.17,136.78 365.56,135.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.56,135.99 367.55,135.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="367.55,135.95 366.94,135.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="366.94,135.17 367.86,133.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="301.78,257.4 301.78,255.9" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.02,257.4 301.02,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.78,257.4 301.02,257.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.78,261.98 301.02,261.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.78,261.73 305.85,261.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.85,261.85 305.74,260.77 305.35,259.76 304.7,258.89 303.85,258.22 302.86,257.8 301.78,257.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.78,261.6 305.85,261.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.78,261.6 301.78,261.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.78,261.73 301.78,261.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.78,257.66 301.78,257.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.78,257.4 301.02,257.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.02,257.4 301.02,257.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.02,257.66 301.78,257.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.78,261.98 301.78,261.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.78,261.73 301.02,261.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.02,261.73 301.02,261.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.02,261.98 301.78,261.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="529.32,326.03 529.32,347.6" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.02,380.75 499.02,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.96,381.64 490.96,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.02,380.75 497.05,380.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="515.76,449.67 522.8,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,243.38 349.91,243.38" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,243.38 340.19,234.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.95,242.61 340.95,235.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.95,242.61 349.15,242.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="349.15,242.61 349.15,235.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="349.91,243.38 349.91,234.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.95,235.75 349.15,235.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.19,234.98 349.91,234.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.35,215.08 342.35,221.12" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.63,215.08 346.08,216.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.35,215.08 343.79,216.72" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.29,235.75 342.29,242.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="349.15,235.75 347.27,237.63" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.29,235.75 344.34,237.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.75,235.75 457.75,242.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.75,235.75 455.34,237.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.6,235.75 450.54,237.2" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="397.34,260.53 398.67,260.35 399.9,259.8 400.92,258.93 401.66,257.8 402.04,256.51 402.04,255.17 401.66,253.88 400.92,252.75 399.9,251.88 398.67,251.33 397.34,251.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="397.46,260.53 393.89,260.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M394.78 261.69L394.48 261.69 393.9 260.53 394.19 260.53 394.78 261.69Z" fill-rule="evenodd" fill="blue"/>
+<path d="M394.78 259.36L394.48 259.36 393.9 260.53 394.19 260.53 394.78 259.36Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="394.78,261.69 394.48,261.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="394.78,259.36 394.48,259.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="394.19,260.53 394.78,261.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="394.78,259.36 394.19,260.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="393.9,260.53 394.48,261.69" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="394.48,259.36 393.9,260.53" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="384.39,251.15 397.34,251.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.11,264.26 391.11,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="392.38,264.28 392.38,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="393.65,264.28 393.65,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="394.92,264.28 394.92,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="396.19,264.28 396.19,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.89,247.4 385.89,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="387.16,247.4 387.16,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="388.43,247.4 388.43,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="389.71,247.4 389.71,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="390.98,247.4 390.98,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="392.25,247.4 392.25,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="393.52,247.4 393.52,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="394.79,247.4 394.79,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="396.06,247.4 396.06,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="397.34,247.4 397.34,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="397.4,255.48 397.4,256.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="397.97,254.91 397.97,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="530.78,326.03 530.02,326.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="397.15,264.28 398.91,264.1 400.6,263.57 402.14,262.69 403.46,261.51 404.51,260.08 405.23,258.46 405.6,256.73 405.6,254.95 405.23,253.22 404.51,251.6 403.46,250.17 402.14,248.99 400.6,248.11 398.91,247.58 397.15,247.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="397.15,264.85 399.03,264.66 400.83,264.09 402.47,263.15 403.89,261.89 405,260.36 405.77,258.64 406.17,256.79 406.17,254.89 405.77,253.04 405,251.32 403.89,249.79 402.47,248.53 400.83,247.59 399.03,247.02 397.15,246.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="397.46,264.28 397.46,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.39,264.85 397.27,264.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="391.11,264.28 397.27,264.28" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="387.26,256.2 397.4,256.2" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="387.54,256.77 397.97,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.65,247.4 397.27,247.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.77,246.83 397.27,246.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="397.4,255.48 385.77,255.48" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="397.97,254.91 385.65,254.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="375.25,245.54 375.25,248.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="530.02,318.4 530.02,318.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.62,244.9 379.36,244.9" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.25,245.54 413.77,245.54" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="414.4,244.9 414.4,266.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="413.77,245.54 413.77,266.35" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.25,266.35 375.38,266.35" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="374.62,266.99 375.38,266.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="381.52,244.9 414.4,244.9" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="385.1,255.46 385.1,266.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.67,255.57 385.67,266.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.69,254.91 385.39,254.98 385.17,255.2 385.1,255.5" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.78,255.48 385.71,255.5 385.67,255.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.68,246.74 385.71,246.8 385.79,246.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.1,246.81 385.18,247.11 385.4,247.33 385.7,247.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.1,246.81 385.1,245.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="385.68,246.74 385.68,245.54" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="375.25,263.45 375.25,266.35" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="374.62,263.45 374.62,266.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.25,248.44 374.62,248.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.25,263.45 374.62,263.45" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.25,248.44 375.25,263.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.62,248.44 374.62,263.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.25,253.66 375.25,253.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.25,253.4 374.62,253.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.62,253.4 374.62,253.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.62,253.66 375.25,253.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.25,258.49 375.25,258.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.25,258.23 374.62,258.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.62,258.23 374.62,258.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.62,258.49 375.25,258.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.25,248.7 375.25,248.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.25,248.44 374.62,248.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.62,248.44 374.62,248.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.62,248.7 375.25,248.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.25,263.45 375.25,263.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.25,263.19 374.62,263.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.62,263.19 374.62,263.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.62,263.45 375.25,263.45" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.94,248.7 374.94,253.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.94,253.66 374.94,258.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="374.94,258.49 374.94,263.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="384.53,266.35 413.77,266.35" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="384.53,266.99 414.4,266.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="384.53,266.35 384.53,266.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.38,266.35 375.38,266.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="375.63,266.35 375.63,262.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="379.96,266.35 379.8,265.21 379.35,264.16 378.64,263.25 377.72,262.57 376.65,262.15 375.5,262.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.77,266.35 375.77,262.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.77,266.35 375.77,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.63,266.35 375.77,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="384.28,266.35 384.14,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="384.14,266.35 384.14,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="384.14,266.35 384.14,262.04" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="384.41,262.03 383.26,262.15 382.19,262.57 381.27,263.25 380.56,264.16 380.11,265.21 379.96,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="384.28,266.35 384.28,262.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="384.28,266.99 384.53,266.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="384.53,266.99 384.53,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="384.53,266.35 384.28,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="384.28,266.35 384.28,266.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.38,266.99 375.63,266.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.63,266.99 375.63,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.63,266.35 375.38,266.35" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.38,266.35 375.38,266.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="389.83,260.66 389.83,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="388.56,260.64 388.56,259.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="388.56,258.93 388.56,256.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="305.25,272.88 305.25,272.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="319.62,305.11 319.62,307.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.6,305.11 318.6,307.98" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.62,312.78 319.62,315.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.6,312.78 318.6,315.57" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.6,293.03 318.6,292.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.62,293.03 319.62,291.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.6,293.03 319.62,293.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="318.6,302.19 319.62,302.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="319.62,301.94 323.94,301.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="323.94,302.06 323.82,300.92 323.41,299.85 322.72,298.92 321.82,298.21 320.76,297.76 319.62,297.61" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.62,301.8 323.93,301.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.62,301.8 319.62,301.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.62,301.94 319.62,301.8" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.62,293.29 319.62,293.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.62,293.42 319.62,293.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.62,293.42 323.93,293.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.62,297.61 320.76,297.46 321.82,297.01 322.72,296.3 323.41,295.37 323.82,294.3 323.94,293.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.62,293.29 323.94,293.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.62,293.29 319.62,293.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.62,293.03 318.6,293.03" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.6,293.03 318.6,293.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.6,293.29 319.62,293.29" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.62,302.19 319.62,301.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="319.62,301.94 318.6,301.94" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.6,301.94 318.6,302.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="318.6,302.19 319.62,302.19" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.61,272.88 304.61,272.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="305.25,263.66 305.25,263.59" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="304.61,263.66 304.61,263.59" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="305.25,263.66 304.61,263.66" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="305.25,272.81 304.61,272.81" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="304.61,263.91 300.29,263.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="300.29,263.78 300.41,264.93 300.82,266 301.51,266.92 302.41,267.64 303.47,268.08 304.61,268.24" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.61,264.05 300.3,264.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.61,264.05 304.61,264.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.61,263.91 304.61,264.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.61,272.56 304.61,272.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.61,272.42 304.61,272.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.61,272.42 300.3,272.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.61,268.24 303.47,268.39 302.41,268.84 301.51,269.55 300.82,270.47 300.41,271.54 300.29,272.69" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.61,272.56 300.29,272.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.61,272.56 304.61,272.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.61,272.81 305.25,272.81" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.25,272.81 305.25,272.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.25,272.56 304.61,272.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.61,263.66 304.61,263.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="304.61,263.91 305.25,263.91" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.25,263.91 305.25,263.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="305.25,263.66 304.61,263.66" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.78,278.12 312.78,284.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.74,292.18 301.02,292.18" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.74,298.79 301.02,298.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.74,292.18 302.74,298.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,428.4 530.78,428.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="530.78,428.14 530.02,428.14" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.64,303.16 273.68,303.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="294.64,303.73 273.68,303.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="299.73,303.16 299.73,303.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="294.64,303.16 294.64,303.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="299.47,303.73 299.47,308.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.89,303.73 295.06,304.94 295.53,306.06 296.28,307.01 297.26,307.74 298.4,308.18 299.61,308.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.33,303.73 299.33,308.3" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.33,303.73 299.33,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.47,303.73 299.33,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.89,303.16 294.64,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.64,303.16 294.64,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.64,303.73 294.89,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="294.89,303.73 294.89,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.73,303.16 299.47,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.47,303.16 299.47,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.47,303.73 299.73,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="299.73,303.73 299.73,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.02,310.4 301.02,331.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="501.34,245.76 508.05,245.76" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,245.76 529.32,251.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,280.89 529.32,267.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,281.78 529.32,280.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,281.78 529.32,295.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,303.76 529.32,310.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,311.28 529.32,325.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,429.29 529.32,443.15" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,444.04 529.32,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="529.32,449.67 523.69,449.67" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="270.72,370.29 270.72,390.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,183.42 496.86,185.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="299.97,173.82 300.67,173.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.86,212.92 496.86,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,174.83 500.07,174.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="526.23,446.71 526.23,448.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.86,393.05 475.94,393.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="526.36,391.78 506.33,391.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="498.13,381.64 498.13,390.89" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="498.13,381.64 497.05,381.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.07,381.64 490.07,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="476.83,381.64 476.83,388.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.07,392.16 481.41,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="490.07,381.64 482.82,381.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.33,393.02 504.3,393.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.3,390.89 504.3,393.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="506.33,391.78 506.33,393.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.3,391.75 504.2,391.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.12,391.75 499.02,391.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.12,393.02 499.02,393.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="504.2,391.75 504.2,393.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.12,391.75 499.12,393.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,391.75 499.37,387.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.95,391.75 503.79,390.54 503.31,389.42 502.56,388.47 501.58,387.74 500.44,387.3 499.23,387.17" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.51,391.75 499.51,387.18" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.51,391.75 499.51,391.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,391.75 499.51,391.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.95,393.02 504.2,393.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="504.2,393.02 504.2,391.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="504.2,391.75 503.95,391.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="503.95,391.75 503.95,393.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.12,393.02 499.37,393.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,393.02 499.37,391.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.37,391.75 499.12,391.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="499.12,391.75 499.12,393.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="481.41,388.85 476.83,388.85" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="481.41,388.85 481.41,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="500.07,242.23 500.07,241.98" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="480.9,389.36 476.83,389.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.9,389.36 480.9,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="480.9,392.16 476.83,392.16" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.37,241.98 499.37,242.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.96,381.64 490.96,381.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="491.96,380.75 482.82,380.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="497.05,381.64 497.05,380.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="491.96,381.64 491.96,380.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="492.22,381.64 492.22,386.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.08,386.22 493.29,386.09 494.43,385.65 495.41,384.93 496.16,383.97 496.63,382.85 496.8,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.78,398.64 284.78,398.9" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.36,381.64 492.36,386.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.36,381.64 492.36,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.01,398.9 284.01,398.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.22,381.64 492.36,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.8,381.64 497.05,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.49,400.04 284.49,406.27" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.05,381.64 497.05,380.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="497.05,380.75 496.8,380.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.8,380.75 496.8,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.96,381.64 492.22,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.22,381.64 492.22,380.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="492.22,380.75 491.96,380.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="491.96,380.75 491.96,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.74,381.64 476.83,381.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="477.74,380.75 475.94,380.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="482.82,381.64 482.82,380.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="477.74,381.64 477.74,380.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="477.99,381.64 477.99,386.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.85,386.22 479.07,386.09 480.2,385.65 481.18,384.93 481.93,383.97 482.41,382.85 482.57,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.13,381.64 478.13,386.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.13,381.64 478.13,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.99,381.64 478.13,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.57,381.64 482.82,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.82,381.64 482.82,380.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.82,380.75 482.57,380.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="482.57,380.75 482.57,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.74,381.64 477.99,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.99,381.64 477.99,380.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.99,380.75 477.74,380.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="477.74,380.75 477.74,381.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.94,363.55 475.94,367.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="476.57,363.55 476.57,367.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="476.57,376.73 476.57,380.75" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="475.94,376.73 475.94,380.75" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="284.49,407.17 284.49,413.4" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.57,367.57 475.94,367.57" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="476.57,376.73 475.94,376.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="476.57,367.83 480.9,367.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.57,372.15 477.71,372 478.77,371.55 479.68,370.84 480.36,369.91 480.78,368.84 480.9,367.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.57,367.96 480.89,367.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.57,367.96 476.57,367.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.57,367.83 476.57,367.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.57,376.47 476.57,376.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.57,376.34 476.57,376.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.57,376.34 480.89,376.34" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="313.02,452.25 321.18,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="480.9,376.6 480.78,375.46 480.36,374.39 479.68,373.46 478.77,372.75 477.71,372.3 476.57,372.15" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.57,376.47 480.9,376.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.94,376.47 475.94,376.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.94,376.73 476.57,376.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.57,376.73 476.57,376.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="321.18,452.75 321.18,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.57,376.47 475.94,376.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.94,367.57 475.94,367.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="475.94,367.83 476.57,367.83" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.57,367.83 476.57,367.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="476.57,367.57 475.94,367.57" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.19,452.5 330.35,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.35,452.75 330.35,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="478.86,452.5 487.02,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="505.99,362.66 505.99,361.58" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.3,452.75 332.56,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332.56,452.75 332.56,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332.56,451.99 332.3,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332.3,451.99 332.3,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.13,452.75 337.39,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.39,452.75 337.39,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.39,451.99 337.13,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="337.13,451.99 337.13,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332.56,452.75 332.56,457.33" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332.42,457.33 333.63,457.2 334.77,456.76 335.74,456.04 336.5,455.08 336.97,453.96 337.13,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332.7,452.75 332.7,457.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332.7,452.75 332.7,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332.56,452.75 332.7,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="332.3,452.75 332.3,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="337.39,452.75 337.39,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.3,451.99 331.11,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.3,452.75 331.11,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.77,452.75 339.77,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.77,452.75 337.39,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.77,451.99 337.39,451.99" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.37,467.75 331.37,468.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,467.75 330.6,468.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.39,467.75 330.6,467.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.37,460.23 331.37,467.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.07,467.49 331.07,460.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.85,467.49 330.85,460.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.37,460.48 331.37,460.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.37,460.23 330.6,460.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.6,460.23 330.6,460.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.6,460.48 331.37,460.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.37,467.75 331.37,467.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.37,467.49 330.6,467.49" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.6,467.49 330.6,467.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.6,467.75 331.37,467.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="330.6,460.23 330.6,467.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.37,468.51 338.88,468.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.88,468.51 361.11,468.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.88,467.75 338.63,467.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.63,467.75 338.63,468.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.63,468.51 338.88,468.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.88,468.51 338.88,467.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.62,467.75 331.37,467.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.37,467.75 331.37,468.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.37,468.51 331.62,468.51" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.62,468.51 331.62,467.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.63,468.05 331.62,468.05" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="338.63,468.26 331.62,468.26" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="331.37,467.75 338.88,467.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.88,467.72 338.88,468.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.37,467.72 331.37,468.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.92,467.7 339.53,467.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.92,467.09 339.53,467.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.53,467.09 339.53,467.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.92,467.09 338.92,467.7" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.92,453.48 338.92,454.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.53,453.48 339.53,454.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.92,453.48 339.53,453.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.92,454.09 339.53,454.09" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.07,466.57 352.07,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="352.07,459.98 352.07,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="354.4,457.42 337.6,457.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="354.4,463.95 354.4,457.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="353.34,463.95 354.5,463.95" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="341.71,466.76 338.38,466.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="332.29,466.82 359.42,466.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.8,466.57 338.38,466.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="344.44,463.11 344.44,462.68" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="344.41,461.1 338.38,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="344.5,460.91 338.57,460.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="344.41,461.1 338.38,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="350.8,459.98 350.8,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="349.52,459.98 349.52,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="348.25,459.98 348.25,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="346.98,459.98 346.98,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="352.24,460.91 352.24,460.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="352.43,460.91 352.43,459.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="338.77,454.1 359.42,454.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.42,454.1 359.42,466.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,468.51 331.37,468.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,467.75 360.34,467.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.2,453.4 332.2,454.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.43,453.4 331.43,454.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.2,453.4 331.43,453.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.2,454.17 331.43,454.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.2,467.65 331.43,467.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.2,466.88 331.43,466.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.43,466.88 331.43,467.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="332.2,466.88 332.2,467.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.27,466.88 360.27,467.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.51,466.88 359.51,467.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.27,466.88 359.51,466.88" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.27,467.65 359.51,467.65" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="350.8,466.57 350.8,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="352.21,466.76 343.33,466.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="352.24,460.91 346.12,460.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="352.43,461.1 346.03,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="352.21,466.57 343.42,466.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="352.43,460.91 352.43,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="352.21,466.57 352.21,466.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.47,454.17 360.24,454.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.47,453.4 360.24,453.4" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.24,453.4 360.24,454.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.47,453.4 359.47,454.17" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.43,461.1 346.03,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.42,454.55 338.39,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="347.91,454.55 339.25,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.42,454.35 338.58,454.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="352.43,459.98 338.38,459.98" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="352.24,460.17 338.57,460.17" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="338.38,466.57 338.38,466.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="338.38,459.98 338.38,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="338.57,460.17 338.57,460.91" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="349.52,466.57 349.52,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="348.25,466.57 348.25,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="346.98,466.57 346.98,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="345.71,466.57 345.71,461.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="344.44,466.57 344.44,463.99" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="343.17,463.13 343.17,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="330.6,148.13 330.6,147.36" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="341.89,466.57 341.89,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="340.62,466.57 340.62,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="339.35,466.57 339.35,461.1" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="339.35,459.98 339.35,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="340.62,459.98 340.62,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="341.89,459.98 341.89,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="343.17,459.98 343.17,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="344.44,459.98 344.44,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="345.71,459.98 345.71,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="330.6,453.07 330.6,460.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="331.37,452.75 331.37,460.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.34,452.94 360.34,467.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="361.11,453.26 361.11,468.51" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.58,452.75 338.58,454.35" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="338.77,452.75 338.77,454.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="338.39,452.75 338.39,454.55" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="332.29,452.75 332.29,466.82" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="341.12,462.67 341.7,463.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="341.7,463.83 341.12,465" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="340.83,462.67 341.41,463.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="341.41,463.83 340.83,465" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="340.83,462.67 341.12,462.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="340.83,465 341.12,465" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M340.83 462.67L341.12 462.67 341.7 463.83 341.41 463.83 340.83 462.67Z" fill-rule="evenodd" fill="blue"/>
+<path d="M340.83 465L341.12 465 341.7 463.83 341.41 463.83 340.83 465Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="337.52,463.83 341.72,463.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="347.88,451.99 347.88,449.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="342.41,449.19 347.88,449.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="347.63,451.99 347.63,450.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="342.66,449.19 342.66,450.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="342.41,450.77 347.63,450.77" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="342.66,450.52 347.63,450.52" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="347.63,450.52 347.63,449.19" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="358.49,136.3 363.29,136.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M362.4 135.14L362.69 135.14 363.27 136.3 362.98 136.3 362.4 135.14Z" fill-rule="evenodd" fill="blue"/>
+<path d="M362.4 137.46L362.69 137.46 363.27 136.3 362.98 136.3 362.4 137.46Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="362.4,137.46 362.69,137.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.4,137.46 362.98,136.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="363.27,136.3 362.69,135.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.69,137.46 363.27,136.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="352.41,132.32 353.18,132.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.19,132.23 352.44,132.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.44,132.23 352.44,131.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.44,131.47 352.19,131.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.19,131.47 352.19,132.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="357.91,132.23 358.17,132.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.17,132.23 358.17,131.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.17,131.47 357.91,131.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="357.91,131.47 357.91,132.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.44,131.93 357.91,131.93" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.44,131.76 357.91,131.76" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.17,131.47 352.19,131.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.17,132.23 352.19,132.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.19,132.23 352.19,131.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.17,132.23 358.17,131.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.19,131.47 351.43,131.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.19,132.23 351.43,132.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.19,138.21 352.19,137.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.19,137.95 351.43,137.95" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="351.43,137.95 351.43,138.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="351.43,138.21 352.19,138.21" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.19,132.48 352.19,132.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.19,132.23 351.43,132.23" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="351.43,132.23 351.43,132.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="351.43,132.48 352.19,132.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="351.89,137.95 351.89,132.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="351.72,137.95 351.72,132.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="352.19,132.23 352.19,138.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.43,132.23 351.43,138.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.43,138.21 352.19,138.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.43,132.23 352.19,132.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.19,132.23 352.19,131.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.43,132.23 351.43,131.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="367.13,134.77 367.13,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="367.77,133.22 358.8,133.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.03,139.15 359.49,139.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="373.76,133.22 369.31,133.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="380.19,146.48 380.19,133.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.19,133.21 353.21,133.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="367.13,135.83 367.13,135.42" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="367.13,135.99 367.13,135.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="367.13,136.87 367.13,136.43" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="367.13,138.96 367.13,137.79" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.86,135.99 365.86,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.49,139.15 359.49,139.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.13,138.96 359.3,138.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.86,137.43 365.86,136.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.26,133.41 359.26,133.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="364.58,138.96 364.58,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="363.31,138.96 363.31,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="367.86,133.22 359.26,133.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="367.77,133.41 359.26,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.06,138.96 362.06,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="360.81,138.96 360.81,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="373.45,145.65 373.45,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="373.45,138.96 373.45,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.67,146.48 380.19,146.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.05,132.32 381.05,133.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.29,132.32 380.29,133.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.05,132.32 380.29,132.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.05,133.08 380.29,133.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.37,145.87 360.37,146.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.76,145.87 359.76,146.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.37,145.87 359.76,145.87" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.37,146.48 359.76,146.48" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="373.74,140.14 373.74,138.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.3,140.14 373.74,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="366.58,138.96 373.74,138.96" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="366.49,139.15 373.57,139.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.2,145.65 372.2,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.49,139.94 373.57,139.94" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="372.2,138.96 372.2,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="373.57,139.94 373.57,139.15" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369.22,133.41 373.76,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369.31,133.22 373.76,133.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.33,145.65 373.67,145.65" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.52,145.84 373.67,145.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.52,145.65 359.52,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.3,138.96 359.3,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.95,145.65 370.95,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369.68,145.65 369.68,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.41,145.65 368.41,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="367.13,145.65 367.13,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="365.86,145.65 365.86,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="364.59,145.65 364.59,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="363.32,145.65 363.32,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="362.05,145.65 362.05,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="360.78,145.65 360.78,140.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.95,138.96 370.95,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369.68,138.96 369.68,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="368.41,138.96 368.41,136.4" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="373.67,145.65 373.67,145.84" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="373.76,133.41 373.76,133.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="381.17,132.23 358.17,132.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.93,131.47 358.17,131.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="376.46,136.3 376.46,142.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="376.46,142.77 358.33,142.77" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.48,137.46 369.9,136.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="369.9,136.3 370.48,135.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.77,137.46 370.19,136.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="370.77,137.46 370.48,137.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<path d="M370.77 137.46L370.48 137.46 369.9 136.3 370.19 136.3 370.77 137.46Z" fill-rule="evenodd" fill="blue"/>
+<path d="M370.77 135.14L370.48 135.14 369.9 136.3 370.19 136.3 370.77 135.14Z" fill-rule="evenodd" fill="blue"/>
+<polyline points="376.46,136.3 369.88,136.3" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="355.86,140.84 355.86,141.57 355.92,141.79 356.03,141.86 356.19,141.86 356.3,141.79 356.46,141.57" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="356.46,140.84 356.46,141.86" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="356.9,140.84 356.9,142.37" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="356.9,141.06 357.01,140.92 357.12,140.84 357.28,140.84 357.39,140.92 357.5,141.06 357.55,141.28 357.55,141.43 357.5,141.64 357.39,141.79 357.28,141.86 357.12,141.86 357.01,141.79 356.9,141.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="353.18,133.08 352.41,133.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.41,132.32 352.41,133.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.18,132.32 353.18,133.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.08,145.73 353.08,146.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.32,145.73 352.32,146.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.08,145.73 352.32,145.73" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.08,146.49 352.32,146.49" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.17,146.56 380.4,146.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.17,145.8 380.4,145.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="380.4,145.8 380.4,146.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.17,145.8 381.17,146.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="352.19,147.36 352.19,138.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.43,146.85 351.43,138.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.21,147.36 353.21,133.21" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.33,145.65 359.33,147.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.52,145.84 359.52,147.36" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="359.67,146.48 359.67,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.17,147.36 381.17,132.23" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.93,146.85 381.93,131.47" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.84,148.13 353.84,143.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.42,148.13 358.26,146.92 357.78,145.8 357.03,144.84 356.05,144.12 354.92,143.68 353.7,143.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.98,148.13 353.98,143.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.98,148.13 353.98,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.84,148.13 353.98,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.42,149.02 358.67,149.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.67,149.02 358.67,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.67,148.13 358.42,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="358.42,148.13 358.42,149.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.59,149.02 353.84,149.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.84,149.02 353.84,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.84,148.13 353.59,148.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.59,148.13 353.59,149.02" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="353.59,147.36 351.93,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.59,148.13 351.93,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.59,147.36 353.59,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.67,149.02 358.67,148.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="359.56,138.96 359.56,133.41" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="360.6,147.36 358.67,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="358.67,148.13 358.67,147.36" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="353.59,149.02 342.41,149.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="335.41,457.12 335.41,457.85 335.46,458.06 335.57,458.14 335.73,458.14 335.84,458.06 336.01,457.85" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="336.01,457.12 336.01,458.14" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="336.44,457.12 336.44,458.64" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="336.44,457.34 336.55,457.19 336.66,457.12 336.82,457.12 336.93,457.19 337.04,457.34 337.1,457.55 337.1,457.7 337.04,457.92 336.93,458.06 336.82,458.14 336.66,458.14 336.55,458.06 336.44,457.92" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="335.94,462.93 335.94,464.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="335.94,463.66 335.83,463.52 335.72,463.44 335.55,463.44 335.45,463.52 335.34,463.66 335.28,463.88 335.28,464.02 335.34,464.24 335.45,464.39 335.55,464.46 335.72,464.46 335.83,464.39 335.94,464.24" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="336.32,464.46 336.32,463.44" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="336.32,463.73 336.48,463.52 336.59,463.44 336.75,463.44 336.86,463.52 336.92,463.73 336.92,464.46" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="337.41,464.31 337.35,464.39 337.41,464.46 337.46,464.39" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="356.09,135.3 356.09,136.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="356.09,136.03 355.99,135.89 355.88,135.81 355.71,135.81 355.6,135.89 355.5,136.03 355.44,136.25 355.44,136.39 355.5,136.61 355.6,136.76 355.71,136.83 355.88,136.83 355.99,136.76 356.09,136.61" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="356.48,136.83 356.48,135.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="356.48,136.1 356.64,135.89 356.75,135.81 356.91,135.81 357.02,135.89 357.08,136.1 357.08,136.83" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="357.57,136.69 357.51,136.76 357.57,136.83 357.62,136.76" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="382.16,250.36 382.16,251.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="382.16,251.09 382.05,250.94 381.95,250.87 381.78,250.87 381.67,250.94 381.56,251.09 381.51,251.3 381.51,251.45 381.56,251.67 381.67,251.81 381.78,251.89 381.95,251.89 382.05,251.81 382.16,251.67" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="382.55,251.89 382.55,250.87" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="382.55,251.16 382.71,250.94 382.82,250.87 382.98,250.87 383.09,250.94 383.14,251.16 383.14,251.89" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="383.64,251.74 383.58,251.81 383.64,251.89 383.69,251.81" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="507.95,244.1 501.31,244.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="515.68,244.1 509.03,244.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.7,244.1 516.06,244.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.43,244.1 523.78,244.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,244.64 530.97,251.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,252.37 530.97,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,259.4 530.97,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,267.12 530.97,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,274.15 530.97,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,281.87 530.97,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,288.9 530.97,295.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,296.63 530.97,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,303.65 530.97,310.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,311.38 530.97,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,318.4 530.97,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,326.13 530.97,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,333.15 530.97,339.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,340.88 530.97,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,347.91 530.97,354.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,355.63 530.97,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,362.66 530.97,369.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,370.38 530.97,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,377.41 530.97,384.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,385.13 530.97,391.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,392.16 530.97,398.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,399.88 530.97,406.53" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,406.91 530.97,413.56" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,414.64 530.97,421.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,421.66 530.97,428.31" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,429.39 530.97,436.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,436.41 530.97,443.06" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.97,444.14 530.97,450.78" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.78,444.04 530.78,444.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="522.7,451.32 516.06,451.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="530.43,451.32 523.78,451.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="515.68,451.32 509.03,451.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="507.95,451.32 501.31,451.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="499.08,451.32 500.93,451.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.44,452.94 487.78,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.95,453.26 496.44,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="496.95,452.69 498.92,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="498.92,453.26 499.43,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.1,452.94 469.44,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.27,452.94 478.61,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="478.1,453.26 478.61,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="487.27,453.26 487.78,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.28,452.94 448.61,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.93,452.94 460.26,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="468.93,453.26 469.44,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.93,452.94 430.27,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.1,452.94 439.44,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="438.93,453.26 439.44,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="448.1,453.26 448.61,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.76,452.94 421.1,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.11,452.94 409.45,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.62,453.26 418.11,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="420.59,453.26 421.1,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="429.76,453.26 430.27,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="418.62,452.75 420.59,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.78,453.33 457.28,453.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.78,452.75 459.76,452.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="459.76,453.33 460.26,453.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.77,453.26 400.27,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.94,453.26 409.45,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="408.94,452.94 400.27,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="399.77,452.94 391.1,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.59,453.26 391.1,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="381.42,453.26 381.93,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.45,453.26 378.94,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="378.94,452.94 370.28,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="379.45,452.69 381.42,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="390.59,452.94 381.93,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.43,453.26 351.93,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.6,452.94 351.93,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="360.6,453.26 361.11,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="369.77,452.94 361.11,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="339.77,453.26 340.28,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="340.28,452.69 342.25,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="342.25,453.26 342.76,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="351.43,452.94 342.76,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.43,452.94 312.77,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="321.43,453.26 321.94,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,452.94 321.94,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="330.6,453.26 331.11,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.26,453.26 312.77,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="303.09,453.26 303.6,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.12,452.69 303.09,452.69" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="301.12,453.26 300.61,453.26" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.26,452.94 303.6,452.94" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.09,451.32 298.73,451.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.36,451.32 291.01,451.32" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.82,450.78 283.82,444.14" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.82,428.31 283.82,421.66" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.82,436.03 283.82,429.39" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.82,443.06 283.82,436.41" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.83,413.56 283.83,406.91" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.83,421.28 283.83,414.64" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.82,406.53 283.82,399.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="283.82,398.9 283.82,392.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.4,392.35 283.82,392.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="276.26,392.35 269.61,392.35" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,391.78 269.07,385.13" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,377.41 269.07,384.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,370.38 269.07,377.03" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,347.91 269.07,354.55" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,355.63 269.07,362.28" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,362.66 269.07,369.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,326.13 269.07,332.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,333.15 269.07,339.8" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,340.88 269.07,347.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,311.38 269.07,318.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,318.4 269.07,325.05" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,296.63 269.07,303.27" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,303.65 269.07,310.3" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,281.87 269.07,288.52" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,288.9 269.07,295.54" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,267.12 269.07,273.77" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,274.15 269.07,280.79" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,252.37 269.07,259.02" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,259.4 269.07,266.04" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.36,244.11 291.01,244.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="277.34,244.11 283.98,244.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.61,244.11 276.26,244.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="269.07,244.65 269.07,251.29" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="292.09,244.11 298.73,244.11" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="488.03,452.5 493.14,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.03,452.25 493.14,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.39,452.25 496.19,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.39,452.5 496.19,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.14,451.99 493.39,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.39,451.99 493.39,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.39,452.75 493.14,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="493.14,452.75 493.14,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.19,451.99 496.44,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.44,451.99 496.44,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.44,452.75 496.19,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="496.19,452.75 496.19,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="487.78,451.99 488.03,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.03,451.99 488.03,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="488.03,452.75 487.78,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="487.78,452.75 487.78,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.93,451.99 468.67,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.67,451.99 468.67,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.67,452.75 468.93,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.93,452.75 468.93,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.52,451.99 460.26,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.26,451.99 460.26,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.26,452.75 460.52,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="460.52,452.75 460.52,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.57,451.99 463.32,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.32,451.99 463.32,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.32,452.75 463.57,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.57,452.75 463.57,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.32,452.5 460.52,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="463.32,452.25 460.52,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.67,452.25 463.57,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="468.67,452.5 463.57,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.87,452.5 453.97,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.87,452.25 453.97,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="454.22,452.25 457.02,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="454.22,452.5 457.02,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="453.97,451.99 454.22,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="454.22,451.99 454.22,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="454.22,452.75 453.97,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="453.97,452.75 453.97,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.02,451.99 457.28,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.28,451.99 457.28,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.28,452.75 457.02,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="457.02,452.75 457.02,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.61,451.99 448.87,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.87,451.99 448.87,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.87,452.75 448.61,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="448.61,452.75 448.61,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.76,451.99 429.51,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.51,451.99 429.51,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.51,452.75 429.76,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.76,452.75 429.76,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.35,451.99 421.1,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.1,451.99 421.1,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.1,452.75 421.35,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="421.35,452.75 421.35,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.4,451.99 424.15,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.15,451.99 424.15,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.15,452.75 424.4,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.4,452.75 424.4,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.15,452.5 421.35,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="424.15,452.25 421.35,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.51,452.25 424.4,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="429.51,452.5 424.4,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.7,452.5 414.8,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.7,452.25 414.8,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.06,452.25 417.85,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.06,452.5 417.85,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.8,451.99 415.06,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.06,451.99 415.06,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="415.06,452.75 414.8,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="414.8,452.75 414.8,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.85,451.99 418.11,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="418.11,451.99 418.11,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="418.11,452.75 417.85,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="417.85,452.75 417.85,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.45,451.99 409.7,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.7,451.99 409.7,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.7,452.75 409.45,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="409.45,452.75 409.45,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.59,451.99 390.34,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.34,451.99 390.34,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.34,452.75 390.59,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.59,452.75 390.59,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.18,451.99 381.93,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="381.93,451.99 381.93,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="381.93,452.75 382.18,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="382.18,452.75 382.18,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.24,451.99 384.98,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="384.98,451.99 384.98,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="384.98,452.75 385.24,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="385.24,452.75 385.24,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="384.98,452.5 382.18,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="384.98,452.25 382.18,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.34,452.25 385.24,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="390.34,452.5 385.24,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.53,452.5 375.64,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.53,452.25 375.64,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.89,452.25 378.69,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.89,452.5 378.69,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.64,451.99 375.89,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.89,451.99 375.89,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.89,452.75 375.64,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="375.64,452.75 375.64,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="378.69,451.99 378.94,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="378.94,451.99 378.94,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="378.94,452.75 378.69,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="378.69,452.75 378.69,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.28,451.99 370.53,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.53,451.99 370.53,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.53,452.75 370.28,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="370.28,452.75 370.28,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.26,451.99 312,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312,451.99 312,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312,452.75 312.26,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312.26,452.75 312.26,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.85,451.99 303.6,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.6,451.99 303.6,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.6,452.75 303.85,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="303.85,452.75 303.85,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="306.9,451.99 306.65,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="306.65,451.99 306.65,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="306.65,452.75 306.9,452.75" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="306.9,452.75 306.9,451.99" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="306.65,452.5 303.85,452.5" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="306.65,452.25 303.85,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="312,452.25 306.9,452.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.46,264.65 273.54,263.22" style="fill:none;stroke:blue;stroke-width:0.5"/>
+<polyline points="450.4,241.25 448.58,242.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="455.33,240.8 457.75,242.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.44,240.91 349.15,242.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="343.71,241.19 342.29,242.61" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="343.36,219.94 342.35,221.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="346.67,220.01 347.63,221.1" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="284.31,303.73 284.31,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.06,303.16 284.06,303.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.06,303.32 284,303.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284,303.32 284,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284,303.42 284.06,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.06,303.53 284.06,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.06,303.73 284.31,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284,303.47 284,303.53 284.06,303.53 284.06,303.47 284,303.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.06,303.47 284.06,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.56,303.73 276.56,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.56,303.16 276.81,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.81,303.16 276.81,303.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.81,303.32 276.88,303.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.88,303.32 276.88,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.88,303.42 276.81,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.81,303.53 276.81,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.81,303.73 276.56,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.88,303.47 276.88,303.53 276.81,303.53 276.81,303.47 276.88,303.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="276.81,303.47 276.81,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.06,303.44 276.81,303.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.82,303.73 291.82,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.82,303.16 291.56,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.56,303.16 291.56,303.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.56,303.32 291.5,303.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.5,303.32 291.5,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.5,303.42 291.56,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.56,303.53 291.56,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.56,303.73 291.82,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.5,303.47 291.5,303.53 291.56,303.53 291.56,303.47 291.5,303.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.56,303.47 291.56,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.06,303.73 284.06,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.06,303.16 284.31,303.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.31,303.16 284.31,303.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.31,303.32 284.38,303.32" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.38,303.32 284.38,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.38,303.42 284.31,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.31,303.53 284.31,303.73" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.38,303.47 284.38,303.53 284.31,303.53 284.31,303.47 284.38,303.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="284.31,303.47 284.31,303.42" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="291.56,303.44 284.31,303.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="301.02,332.56 273.74,332.56" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="301.02,333.16 273.74,333.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.58,324.96 337.76,324.8 338.87,324.35 339.82,323.62 340.54,322.67 341,321.57 341.16,320.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="341.16,320.6 336.51,320.6" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.51,320.6 336.51,320.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.58,320.38 341.16,320.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.91,320.13 335.91,320.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.91,320.38 336.09,320.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.09,320.38 336.09,320.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.09,320.44 336.34,320.44" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.34,320.44 336.34,320.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.34,320.38 336.58,320.38" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.51,320.38 336.51,320.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.91,320.13 336.51,320.13" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="335.91,329.79 336.51,329.79" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="341.08,329.54 340.93,328.35 340.47,327.25 339.74,326.3 338.79,325.57 337.69,325.11 336.51,324.96" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="341.08,329.31 336.51,329.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.51,329.54 341.08,329.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.91,329.79 335.91,329.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.91,329.54 336.09,329.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.09,329.54 336.09,329.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.09,329.47 336.34,329.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.34,329.47 336.34,329.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.34,329.54 336.58,329.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.23,318.27 335.23,318.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.23,318.25 334.98,318.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.98,318.25 334.98,318.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.98,318.43 334.92,318.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.92,318.43 334.92,318.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.92,318.54 334.98,318.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.98,318.62 334.98,318.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.98,318.85 335.23,318.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.23,318.85 335.23,318.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.92,318.56 334.92,318.62 334.98,318.62 334.98,318.56 334.92,318.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.98,318.58 334.98,318.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.13,318.25 329.38,318.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.38,318.25 329.38,318.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.38,318.43 329.45,318.43" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.45,318.43 329.45,318.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.45,318.54 329.38,318.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.38,318.65 329.38,318.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.38,318.85 329.13,318.85" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.13,318.82 329.13,318.82" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.45,318.58 329.45,318.65 329.38,318.65 329.38,318.58 329.45,318.58" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.38,318.58 329.38,318.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="334.98,318.56 329.38,318.56" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.23,318.85 335.23,318.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="329.13,318.85 329.13,318.25" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.24,312.64 326.05,312.8 324.95,313.25 324,313.98 323.27,314.93 322.82,316.03 322.66,317.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="322.66,317 327.24,317" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.24,317 327.24,317.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.24,317.22 322.66,317.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.24,317.47 327.84,317.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,317.47 327.84,317.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,317.22 327.67,317.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.67,317.22 327.67,317.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.67,317.16 327.41,317.16" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.41,317.16 327.41,317.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.41,317.22 327.24,317.22" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.24,317.22 327.24,317.47" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.24,312.39 327.84,312.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,312.39 327.84,312.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,312.64 327.67,312.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.67,312.64 327.67,312.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.67,312.7 327.41,312.7" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.41,312.7 327.41,312.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.41,312.64 327.24,312.64" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.24,312.64 327.24,312.39" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="320.27,273.48 320.4,274.66 320.82,275.76 321.53,276.71 322.46,277.45 323.55,277.9 324.73,278.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.51,278.06 324.51,273.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.51,273.48 324.73,273.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.73,273.48 324.73,278.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="335.91,390.87 335.91,364.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="324.98,272.88 324.73,272.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.73,272.88 324.73,273.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.73,273.06 324.67,273.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.67,273.06 324.67,273.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.67,273.31 324.73,273.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.73,273.31 324.73,273.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.73,273.48 324.98,273.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.8,278.06 316.98,277.91 318.08,277.46 319.02,276.73 319.73,275.77 320.16,274.66 320.27,273.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.02,278.06 316.02,273.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="316.02,273.48 315.8,273.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.8,273.48 315.8,278.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.54,272.88 315.8,272.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.8,272.88 315.8,273.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.8,273.06 315.86,273.06" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.86,273.06 315.86,273.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.86,273.31 315.8,273.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.8,273.31 315.8,273.55" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.8,273.48 315.54,273.48" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="324.98,273.48 324.98,272.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="315.54,273.48 315.54,272.88" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="286.27,391.47 285.47,391.47" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="288.44,391.47 301.02,391.47" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.51,391.47 336.51,364.44" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="285.47,390.87 335.91,390.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.51,360.5 336.51,334.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="335.91,364.44 335.91,334.93" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="335.91,334.93 335.91,330.99" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="303.18,391.47 336.51,391.47" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.51,329.79 336.51,329.54" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.51,329.54 336.51,329.31" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="336.51,330.99 336.51,329.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.51,329.79 335.91,329.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="335.91,330.99 335.91,329.79" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.51,320.13 336.51,318.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="335.91,320.13 335.91,318.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="302.07,318.87 335.91,318.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="319.62,318.22 327.24,318.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="336.51,320.13 335.91,320.13" style="fill:none;stroke:cyan;stroke-width:0.5"/>
+<polyline points="327.84,317.47 327.24,317.47" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.24,317.47 327.24,318.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,317.47 327.84,318.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.24,312.39 327.24,292.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,312.39 327.84,291.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="319.62,292.48 327.24,292.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.24,291.89 327.24,273.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,291.88 327.84,272.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,312.39 327.24,312.39" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,318.22 336.51,318.22" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="319.62,291.89 327.24,291.89" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="329.13,318.22 329.13,318.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="335.23,318.22 335.23,318.87" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="313.99,273.48 315.54,273.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.24,273.48 324.98,273.48" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="327.84,272.88 324.98,272.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="305.75,272.88 305.75,272.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="305.75,272.38 306.7,272.38" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="306.7,272.38 306.7,272.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="305.75,263.59 305.75,264.1" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="305.75,264.1 306.7,264.1" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="306.7,264.1 306.7,263.59" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="324.98,273.48 324.98,272.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="315.54,273.48 315.54,272.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="315.54,272.88 313.99,272.88" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="271.52,332.56 270.02,332.56" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="271.52,333.16 270.02,333.16" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="276.56,303.16 276.56,303.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="291.82,303.16 291.82,303.73" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="497.3,350.19 497.3,342.06 496.98,342.06 496.98,340.02 498,340.02 498,334.04 496.86,334.04 496.86,332.96 484.59,332.96 484.59,350.19 497.3,350.19" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="457.75,235.75 448.58,235.75 448.58,242.61 457.75,242.61 457.75,235.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="347.63,215.08 342.35,215.08 342.35,221.1 347.63,221.1 347.63,215.08" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="349.15,235.75 342.29,235.75 342.29,242.61 349.15,242.61 349.15,235.75" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="312.78,303.33 303.18,303.33 303.18,317.45 312.78,317.45 312.78,303.33" style="fill:none;stroke:red;stroke-width:0.5"/>
+<polyline points="302.88,243.25 302.88,215.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="302.88,212.92 302.88,185.58" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="302.88,183.42 302.88,156.08" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="302.79,153.91 302.79,150.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="302.79,150.02 352.08,150.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="352.08,149.02 352.08,150.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="378.57,149.02 378.57,157.1" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="378.57,157.1 381.95,157.1" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="381.95,157.1 381.95,149.02" style="fill:none;stroke:yellow;stroke-width:0.5"/>
+<polyline points="381.95,150.02 468.93,150.02" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.05,165.17 498.05,183.42" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.05,185.58 498.05,212.92" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.05,215.08 498.05,243.25" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="498.99,246.76 526.36,246.76" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="528.31,248.72 528.31,272.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="528.31,275.04 528.31,302.38" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="528.31,304.54 528.31,331.88" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="528.31,334.04 528.31,361.39" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="528.32,393.05 528.32,446.71" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="528.32,448.88 528.32,449.67" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="301.08,448.66 288.43,448.66" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="286.48,446.71 286.48,422.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="286.48,420.39 286.48,393.05" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="286.52,390.87 286.52,389.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="286.52,389.87 270.72,389.87" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.72,389.87 271.72,389.87" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="271.72,387.71 271.72,363.55" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.72,361.39 271.72,334.04" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="271.72,331.88 271.72,304.54" style="fill:none;stroke:lime;stroke-width:0.5"/>
+<polyline points="353.84,149.26 354.37,148.73 354.3,149.82 354.44,149.68 354.57,149.68 354.64,149.74 354.77,149.99 354.82,150.2 354.86,150.55 354.82,150.84 354.7,151.09 354.55,151.23 354.38,151.28 354.31,151.22 354.21,151.07" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="355.56,148.18 355.46,148.02 355.31,147.92 355.19,147.91 354.99,148.1 354.93,148.3 354.88,148.6 354.89,148.85 354.92,149.2 355.06,149.7 355.19,149.96 355.29,150.11 355.44,150.22 355.56,150.22 355.76,150.03 355.82,149.84 355.87,149.54 355.86,149.29" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="355.82,147.79 355.89,147.59 355.96,147.14 356.52,149.26" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="356.58,146.52 357.11,145.99 357.04,147.09 357.18,146.94 357.3,146.95 357.38,147 357.51,147.25 357.56,147.46 357.6,147.81 357.55,148.11 357.44,148.35 357.29,148.5 357.12,148.54 357.05,148.49 356.94,148.33" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="305.77,267.07 306.48,266.84 305.92,267.78 306.12,267.72 306.22,267.78 306.27,267.86 306.27,268.15 306.22,268.35 306.09,268.68 305.92,268.92 305.7,269.09 305.51,269.15 305.34,269.11 305.3,269.03 305.27,268.85" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="306.68,267.92 307.84,267.54" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="308.57,266.63 308.59,266.53 308.7,266.31 308.79,266.18 308.94,266.04 309.2,265.95 309.31,266.01 309.35,266.1 309.37,266.28 309.33,266.48 309.22,266.71 309.02,267.06 308.16,268.29 309.06,268" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="310.3,265.6 310.08,265.76 309.89,266.11 309.71,266.64 309.65,266.95 309.6,267.44 309.67,267.71 309.84,267.75 309.97,267.7 310.19,267.54 310.38,267.19 310.55,266.66 310.62,266.35 310.66,265.86 310.6,265.59 310.43,265.56 310.3,265.6" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="310.94,266.53 312.1,266.15" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="312.43,266.91 312.88,264.76 313.33,266.61 313.79,264.46" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="314.3,264.3 314.17,266.34 314.95,264.09 314.82,266.13 315.6,263.88" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="315.77,264.2 315.92,264.06 316.18,263.69 315.72,265.84" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="499.47,392.52 500,391.99 499.93,393.09 500.07,392.94 500.19,392.95 500.27,393 500.4,393.25 500.45,393.46 500.49,393.81 500.44,394.11 500.33,394.35 500.18,394.49 500.01,394.54 499.94,394.49 499.83,394.33" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="501.19,391.44 501.09,391.28 500.94,391.18 500.82,391.17 500.62,391.36 500.55,391.56 500.51,391.86 500.52,392.11 500.55,392.46 500.69,392.97 500.82,393.22 500.92,393.38 501.07,393.48 501.19,393.49 501.38,393.29 501.45,393.1 501.49,392.8 501.49,392.55" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="501.53,391.1 501.5,391 501.49,390.75 501.51,390.6 501.58,390.4 501.78,390.21 501.9,390.22 501.97,390.27 502.08,390.42 502.13,390.63 502.14,390.88 502.12,391.27 501.91,392.77 502.58,392.09" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="502.88,389.11 502.4,389.59 502.6,390.54 502.62,390.39 502.73,390.15 502.88,390.01 503.05,389.96 503.2,390.07 503.33,390.32 503.38,390.53 503.42,390.88 503.37,391.17 503.26,391.42 503.11,391.56 502.94,391.61 502.87,391.55 502.76,391.4" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="305.54,269.95 306.25,269.72 305.69,270.66 305.88,270.6 305.99,270.66 306.03,270.74 306.03,271.02 305.99,271.23 305.86,271.56 305.69,271.8 305.47,271.97 305.28,272.03 305.11,271.99 305.06,271.91 305.04,271.73" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="306.44,270.8 307.61,270.42" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="308.34,269.51 308.36,269.41 308.47,269.18 308.56,269.06 308.71,268.92 308.97,268.83 309.07,268.89 309.12,268.97 309.14,269.16 309.09,269.36 308.98,269.59 308.79,269.94 307.93,271.17 308.83,270.88" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="310.06,268.48 309.85,268.64 309.65,268.99 309.48,269.52 309.41,269.83 309.37,270.32 309.43,270.59 309.61,270.63 309.74,270.58 309.95,270.42 310.15,270.07 310.32,269.54 310.38,269.23 310.43,268.74 310.36,268.47 310.19,268.43 310.06,268.48" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="310.71,269.41 311.87,269.03" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="312.19,269.79 312.65,267.64 313.1,269.49 313.55,267.34" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="314.07,267.17 313.94,269.22 314.72,266.96 314.58,269.01 315.36,266.75" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="315.58,267.16 315.6,267.06 315.71,266.83 315.79,266.71 315.94,266.57 316.2,266.48 316.31,266.54 316.35,266.62 316.37,266.81 316.33,267.01 316.22,267.24 316.03,267.59 315.16,268.82 316.07,268.53" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="375.62,267.1 376.15,266.57 376.08,267.67 376.22,267.52 376.35,267.53 376.42,267.58 376.55,267.84 376.61,268.04 376.64,268.39 376.6,268.69 376.48,268.93 376.34,269.08 376.16,269.12 376.09,269.07 375.99,268.91" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="377.34,266.02 377.24,265.87 377.09,265.76 376.97,265.76 376.78,265.95 376.71,266.14 376.67,266.44 376.67,266.69 376.7,267.04 376.84,267.55 376.97,267.8 377.07,267.96 377.22,268.06 377.34,268.07 377.54,267.88 377.61,267.68 377.65,267.38 377.64,267.13" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="377.61,265.63 377.67,265.43 377.74,264.99 378.31,267.11" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="378.55,264.17 378.44,264.42 378.42,264.81 378.51,265.37 378.59,265.67 378.77,266.13 378.95,266.34 379.12,266.29 379.22,266.2 379.34,265.95 379.35,265.55 379.26,265 379.18,264.7 379,264.24 378.82,264.03 378.65,264.07 378.55,264.17" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="380.5,266.96 381.03,266.43 380.96,267.52 381.1,267.38 381.22,267.39 381.3,267.44 381.43,267.69 381.48,267.9 381.52,268.25 381.47,268.54 381.36,268.79 381.21,268.93 381.04,268.98 380.97,268.92 380.86,268.77" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="382.22,265.88 382.12,265.72 381.97,265.62 381.85,265.61 381.65,265.8 381.58,266 381.54,266.3 381.55,266.55 381.58,266.9 381.72,267.4 381.85,267.66 381.95,267.81 382.1,267.92 382.22,267.92 382.41,267.73 382.48,267.54 382.53,267.24 382.52,266.99" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="382.48,265.49 382.55,265.29 382.61,264.84 383.18,266.96" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="383.25,264.72 383.32,264.52 383.38,264.07 383.95,266.2" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="466.56,160.32 467.09,159.8 467.02,160.89 467.17,160.75 467.29,160.75 467.36,160.81 467.49,161.06 467.55,161.26 467.58,161.62 467.54,161.91 467.42,162.16 467.28,162.3 467.11,162.35 467.03,162.29 466.93,162.14" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="468.29,159.24 468.18,159.09 468.03,158.98 467.91,158.98 467.72,159.17 467.65,159.37 467.61,159.67 467.61,159.92 467.65,160.27 467.78,160.77 467.91,161.03 468.01,161.18 468.16,161.29 468.29,161.29 468.48,161.1 468.55,160.9 468.59,160.61 468.58,160.36" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="468.55,158.86 468.62,158.66 468.68,158.21 469.25,160.33" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="469.78,157.11 469.3,157.59 469.5,158.54 469.52,158.39 469.64,158.15 469.78,158.01 469.95,157.96 470.1,158.07 470.23,158.32 470.29,158.53 470.32,158.88 470.28,159.17 470.16,159.42 470.02,159.56 469.84,159.61 469.77,159.55 469.67,159.4" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="333.1,453.02 333.63,452.49 333.56,453.59 333.7,453.44 333.82,453.45 333.9,453.5 334.03,453.75 334.08,453.96 334.12,454.31 334.07,454.61 333.96,454.85 333.81,454.99 333.64,455.04 333.57,454.98 333.46,454.83" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="334.82,451.94 334.72,451.78 334.57,451.68 334.45,451.67 334.25,451.86 334.18,452.06 334.14,452.36 334.15,452.61 334.18,452.96 334.32,453.47 334.45,453.72 334.55,453.87 334.7,453.98 334.82,453.99 335.01,453.79 335.08,453.6 335.13,453.3 335.12,453.05" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="335.16,451.6 335.13,451.5 335.12,451.25 335.15,451.1 335.21,450.9 335.41,450.71 335.53,450.72 335.61,450.77 335.71,450.92 335.76,451.12 335.77,451.38 335.75,451.77 335.54,453.27 336.22,452.59" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="335.94,450.18 336.61,449.51 336.7,452.11" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="499.55,362.69 500.08,362.16 500.01,363.25 500.15,363.11 500.27,363.11 500.35,363.17 500.48,363.42 500.53,363.62 500.56,363.98 500.52,364.27 500.41,364.52 500.26,364.66 500.09,364.71 500.01,364.65 499.91,364.5" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="501.27,361.6 501.17,361.45 501.02,361.34 500.89,361.34 500.7,361.53 500.63,361.73 500.59,362.03 500.6,362.28 500.63,362.63 500.77,363.13 500.89,363.39 501,363.54 501.15,363.65 501.27,363.65 501.46,363.46 501.53,363.26 501.57,362.97 501.57,362.72" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="501.61,361.27 501.58,361.17 501.57,360.92 501.59,360.77 501.66,360.57 501.85,360.38 501.98,360.38 502.05,360.44 502.16,360.59 502.21,360.79 502.22,361.04 502.2,361.44 501.99,362.93 502.66,362.26" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="502.49,360.25 502.56,360.06 502.62,359.61 503.19,361.73" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="473.32,371.55 473.85,371.02 473.78,372.11 473.92,371.97 474.05,371.97 474.12,372.03 474.25,372.28 474.31,372.48 474.34,372.84 474.3,373.13 474.18,373.38 474.04,373.52 473.86,373.57 473.79,373.51 473.69,373.36" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="475.04,370.47 474.94,370.31 474.79,370.21 474.67,370.2 474.48,370.39 474.41,370.59 474.37,370.89 474.37,371.14 474.4,371.49 474.54,371.99 474.67,372.25 474.77,372.4 474.92,372.51 475.04,372.51 475.24,372.32 475.31,372.13 475.35,371.83 475.34,371.58" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="475.38,370.13 475.35,370.03 475.35,369.78 475.37,369.63 475.44,369.43 475.63,369.24 475.75,369.24 475.83,369.3 475.93,369.45 475.98,369.65 475.99,369.9 475.98,370.3 475.77,371.79 476.44,371.12" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="476.34,369.17 476.31,369.07 476.31,368.82 476.33,368.67 476.4,368.47 476.59,368.28 476.71,368.28 476.79,368.34 476.89,368.49 476.94,368.69 476.95,368.94 476.94,369.34 476.73,370.83 477.4,370.16" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="473.32,375.73 473.85,375.2 473.78,376.3 473.92,376.16 474.05,376.16 474.12,376.21 474.25,376.47 474.31,376.67 474.34,377.02 474.3,377.32 474.18,377.57 474.04,377.71 473.86,377.75 473.79,377.7 473.69,377.55" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="475.04,374.65 474.94,374.5 474.79,374.39 474.67,374.39 474.48,374.58 474.41,374.78 474.37,375.07 474.37,375.32 474.4,375.68 474.54,376.18 474.67,376.44 474.77,376.59 474.92,376.7 475.04,376.7 475.24,376.51 475.31,376.31 475.35,376.01 475.34,375.76" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="475.38,374.32 475.35,374.21 475.35,373.96 475.37,373.82 475.44,373.62 475.63,373.43 475.75,373.43 475.83,373.48 475.93,373.64 475.98,373.84 475.99,374.09 475.98,374.49 475.77,375.98 476.44,375.31" style="fill:none;stroke:black;stroke-width:0.5"/>
+<polyline points="476.25,372.8 476.78,372.27 476.71,373.37 476.85,373.23 476.98,373.23 477.05,373.28 477.18,373.54 477.24,373.74 477.27,374.09 477.23,374.39 477.11,374.63 476.97,374.78 476.8,374.82 476.72,374.77 476.62,374.62" style="fill:none;stroke:black;stroke-width:0.5"/>
+</svg>

BIN
src/components/Map/MainMapComponent/images/basement.png


BIN
src/components/Map/MainMapComponent/images/fifthfloor.png


BIN
src/components/Map/MainMapComponent/images/firstfloor.png


BIN
src/components/Map/MainMapComponent/images/fourthfloor.png


BIN
src/components/Map/MainMapComponent/images/secondfloor.png


BIN
src/components/Map/MainMapComponent/images/thirdfloor.png


BIN
src/components/Map/MainMapComponent/landmark_images/information.png


BIN
src/components/Map/MainMapComponent/landmark_images/power.png


BIN
src/components/Map/MainMapComponent/landmark_images/stairs.png


+ 25 - 0
src/components/Map/MainMapComponent/modal.tsx

@@ -0,0 +1,25 @@
+import React, { useState, useEffect } from 'react';
+import { View, Text, StatusBar, StyleSheet, Dimensions, Button, ActivityIndicator, Alert, Modal } from 'react-native';
+
+function CustomModal() {
+
+    const [showModal, setShowModal] = useState(true)
+
+    return (
+            <Modal transparent={true} visible={showModal}>
+                <View style={{ backgroundColor: "#000000aa", flex: 1 }}>
+                    <View style={{ backgroundColor: "#ffffff", margin: 50, padding: 20, borderRadius: 10,  }}>
+                    <Text style={{fontSize:20 , paddingBottom:10}}>Welcome to Cameron Library!</Text>
+                        <Text style={{fontSize:16}}>To add a landmark, hold down on the screen.</Text>
+                        <Text style={{fontSize:16 , paddingBottom:10}}>To remove a landmark, simply tap on it.</Text>
+                        <Text style={{fontSize:16 , paddingBottom:10}}>Feel free to look through the various levels in the Cameron library.
+                        When you're ready to access landmark information, simply press the "Load Coordinates" button near the bottom of the screen.</Text>
+                        <Button color={"red"} title='OK' onPress={() => setShowModal(false)}></Button>
+                    </View>
+                </View>
+            </Modal>
+    )
+}
+
+
+export default CustomModal

+ 19 - 3
tsconfig.json

@@ -1,6 +1,22 @@
 {
-  "compilerOptions": {},
+  "compilerOptions": {
+    "allowJs": true,
+    "allowSyntheticDefaultImports": true,
+    "esModuleInterop": true,
+    "isolatedModules": true,
+    "jsx": "react",
+    "lib": ["es6"],
+    "moduleResolution": "node",
+    "noEmit": true,
+    "strict": true,
+    "target": "esnext"
+  },
   "extends": "expo/tsconfig.base",
-  "include": ["src/**/*", "./App.tsx"],
-  "exclude": ["node_modules"]
+  "include": ["src/**/*", "./App.tsx" , "./declarations.d.ts"],
+  "exclude": [
+    "node_modules",
+    "babel.config.js",
+    "metro.config.js",
+    "jest.config.js"
+  ]
 }

+ 145 - 37
yarn.lock

@@ -28,7 +28,7 @@
   "resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz"
   "version" "7.15.0"
 
-"@babel/core@*", "@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.1.6", "@babel/core@^7.12.0", "@babel/core@^7.12.9", "@babel/core@^7.13.0", "@babel/core@^7.4.0-0":
+"@babel/core@*", "@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.1.6", "@babel/core@^7.12.0", "@babel/core@^7.12.9", "@babel/core@^7.13.0", "@babel/core@^7.15.5", "@babel/core@^7.4.0-0":
   "integrity" "sha512-3UG9dsxvYBMYwRv+gS41WKHno4K60/9GPy1CJaH6xy3Elq8CTtvtjT5R5jmNhXfCYLX2mTw+7/aq5ak/gOE0og=="
   "resolved" "https://registry.npmjs.org/@babel/core/-/core-7.15.8.tgz"
   "version" "7.15.8"
@@ -1060,10 +1060,10 @@
     "@babel/helper-validator-identifier" "^7.14.9"
     "to-fast-properties" "^2.0.0"
 
-"@callstack/react-theme-provider@^3.0.6":
-  "integrity" "sha512-wwKMXfmklfogpalNZT0W+jh76BIquiYUiQHOaPmt/PCyCEP/E6rP+e7Uie6mBZrfkea9WJYJ+mus6r+45JAEhg=="
-  "resolved" "https://registry.npmjs.org/@callstack/react-theme-provider/-/react-theme-provider-3.0.6.tgz"
-  "version" "3.0.6"
+"@callstack/react-theme-provider@^3.0.7":
+  "integrity" "sha512-Ab6rbD2w4u9W3yf7LQQ8evx9m8fZNsoWxt+MFm3AyZnyKQNCJf4K7ip9tHHZgSs+HTdoj38lEqPehvFOVQKvAg=="
+  "resolved" "https://registry.npmjs.org/@callstack/react-theme-provider/-/react-theme-provider-3.0.7.tgz"
+  "version" "3.0.7"
   dependencies:
     "deepmerge" "^3.2.0"
     "hoist-non-react-statics" "^3.3.0"
@@ -1622,6 +1622,13 @@
     "node-gyp" "^7.1.0"
     "read-package-json-fast" "^2.0.1"
 
+"@openspacelabs/react-native-zoomable-view@^2.0.0":
+  "integrity" "sha512-Crkjn4gEJtBTEaLLVah4QiUZj4VEN80hoaFLYlW5o+pH837cVuKVyR71rTIZ4+DYqNtSQ6xNudKpNJoroNsYgA=="
+  "resolved" "https://registry.npmjs.org/@openspacelabs/react-native-zoomable-view/-/react-native-zoomable-view-2.0.0.tgz"
+  "version" "2.0.0"
+  dependencies:
+    "prop-types" "^15.7.2"
+
 "@parcel/babel-ast-utils@2.0.0-rc.0":
   "integrity" "sha512-cEWoinV9RW4T4iaRGL1TeI9hexRD/xAMGUpjTSiswRP1SJXr4uftOw3V+ptRuny7+mvMXGoID+c8nXFE5kgEIw=="
   "resolved" "https://registry.npmjs.org/@parcel/babel-ast-utils/-/babel-ast-utils-2.0.0-rc.0.tgz"
@@ -2350,6 +2357,11 @@
   dependencies:
     "flow-bin" "0.113.0"
 
+"@react-native-picker/picker@2.1.0":
+  "integrity" "sha512-iJ/QaDrBMBaW6cFuQyR3DXzcn2h7c5O7mGgmNLCBQHTTtLNBZR+Sxogy6YleFPeToNdysG5mTTkXqBmlWHMQqg=="
+  "resolved" "https://registry.npmjs.org/@react-native-picker/picker/-/picker-2.1.0.tgz"
+  "version" "2.1.0"
+
 "@react-native-windows/cli@0.64.2":
   "integrity" "sha512-cjDMnfhb1QArUBgzeXuvxi7aYhn80KM/aVG9xIgvAxYMg/lSP0kInhZjalf6VE38R1iZvUJ84OZT7JprSC42WQ=="
   "resolved" "https://registry.npmjs.org/@react-native-windows/cli/-/cli-0.64.2.tgz"
@@ -2494,6 +2506,96 @@
   "resolved" "https://registry.npmjs.org/@sindresorhus/is/-/is-4.2.0.tgz"
   "version" "4.2.0"
 
+"@svgr/babel-plugin-add-jsx-attribute@^6.0.0":
+  "integrity" "sha512-MdPdhdWLtQsjd29Wa4pABdhWbaRMACdM1h31BY+c6FghTZqNGT7pEYdBoaGeKtdTOBC/XNFQaKVj+r/Ei2ryWA=="
+  "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.0.0.tgz"
+  "version" "6.0.0"
+
+"@svgr/babel-plugin-remove-jsx-attribute@^6.0.0":
+  "integrity" "sha512-aVdtfx9jlaaxc3unA6l+M9YRnKIZjOhQPthLKqmTXC8UVkBLDRGwPKo+r8n3VZN8B34+yVajzPTZ+ptTSuZZCw=="
+  "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-6.0.0.tgz"
+  "version" "6.0.0"
+
+"@svgr/babel-plugin-remove-jsx-empty-expression@^6.0.0":
+  "integrity" "sha512-Ccj42ApsePD451AZJJf1QzTD1B/BOU392URJTeXFxSK709i0KUsGtbwyiqsKu7vsYxpTM0IA5clAKDyf9RCZyA=="
+  "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-6.0.0.tgz"
+  "version" "6.0.0"
+
+"@svgr/babel-plugin-replace-jsx-attribute-value@^6.0.0":
+  "integrity" "sha512-88V26WGyt1Sfd1emBYmBJRWMmgarrExpKNVmI9vVozha4kqs6FzQJ/Kp5+EYli1apgX44518/0+t9+NU36lThQ=="
+  "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.0.0.tgz"
+  "version" "6.0.0"
+
+"@svgr/babel-plugin-svg-dynamic-title@^6.0.0":
+  "integrity" "sha512-F7YXNLfGze+xv0KMQxrl2vkNbI9kzT9oDK55/kUuymh1ACyXkMV+VZWX1zEhSTfEKh7VkHVZGmVtHg8eTZ6PRg=="
+  "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.0.0.tgz"
+  "version" "6.0.0"
+
+"@svgr/babel-plugin-svg-em-dimensions@^6.0.0":
+  "integrity" "sha512-+rghFXxdIqJNLQK08kwPBD3Z22/0b2tEZ9lKiL/yTfuyj1wW8HUXu4bo/XkogATIYuXSghVQOOCwURXzHGKyZA=="
+  "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.0.0.tgz"
+  "version" "6.0.0"
+
+"@svgr/babel-plugin-transform-react-native-svg@^6.0.0":
+  "integrity" "sha512-VaphyHZ+xIKv5v0K0HCzyfAaLhPGJXSk2HkpYfXIOKb7DjLBv0soHDxNv6X0vr2titsxE7klb++u7iOf7TSrFQ=="
+  "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.0.0.tgz"
+  "version" "6.0.0"
+
+"@svgr/babel-plugin-transform-svg-component@^6.2.0":
+  "integrity" "sha512-bhYIpsORb++wpsp91fymbFkf09Z/YEKR0DnFjxvN+8JHeCUD2unnh18jIMKnDJTWtvpTaGYPXELVe4OOzFI0xg=="
+  "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.2.0.tgz"
+  "version" "6.2.0"
+
+"@svgr/babel-preset@^6.2.0":
+  "integrity" "sha512-4WQNY0J71JIaL03DRn0vLiz87JXx0b9dYm2aA8XHlQJQoixMl4r/soYHm8dsaJZ3jWtkCiOYy48dp9izvXhDkQ=="
+  "resolved" "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-6.2.0.tgz"
+  "version" "6.2.0"
+  dependencies:
+    "@svgr/babel-plugin-add-jsx-attribute" "^6.0.0"
+    "@svgr/babel-plugin-remove-jsx-attribute" "^6.0.0"
+    "@svgr/babel-plugin-remove-jsx-empty-expression" "^6.0.0"
+    "@svgr/babel-plugin-replace-jsx-attribute-value" "^6.0.0"
+    "@svgr/babel-plugin-svg-dynamic-title" "^6.0.0"
+    "@svgr/babel-plugin-svg-em-dimensions" "^6.0.0"
+    "@svgr/babel-plugin-transform-react-native-svg" "^6.0.0"
+    "@svgr/babel-plugin-transform-svg-component" "^6.2.0"
+
+"@svgr/core@^6.0.0", "@svgr/core@^6.1.2":
+  "integrity" "sha512-NWufjGI2WUyrg46mKuySfviEJ6IxHUOm/8a3Ph38VCWSp+83HBraCQrpEM3F3dB6LBs5x8OElS8h3C0oOJaJAA=="
+  "resolved" "https://registry.npmjs.org/@svgr/core/-/core-6.2.1.tgz"
+  "version" "6.2.1"
+  dependencies:
+    "@svgr/plugin-jsx" "^6.2.1"
+    "camelcase" "^6.2.0"
+    "cosmiconfig" "^7.0.1"
+
+"@svgr/hast-util-to-babel-ast@^6.2.1":
+  "integrity" "sha512-pt7MMkQFDlWJVy9ULJ1h+hZBDGFfSCwlBNW1HkLnVi7jUhyEXUaGYWi1x6bM2IXuAR9l265khBT4Av4lPmaNLQ=="
+  "resolved" "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.2.1.tgz"
+  "version" "6.2.1"
+  dependencies:
+    "@babel/types" "^7.15.6"
+    "entities" "^3.0.1"
+
+"@svgr/plugin-jsx@^6.2.1":
+  "integrity" "sha512-u+MpjTsLaKo6r3pHeeSVsh9hmGRag2L7VzApWIaS8imNguqoUwDq/u6U/NDmYs/KAsrmtBjOEaAAPbwNGXXp1g=="
+  "resolved" "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-6.2.1.tgz"
+  "version" "6.2.1"
+  dependencies:
+    "@babel/core" "^7.15.5"
+    "@svgr/babel-preset" "^6.2.0"
+    "@svgr/hast-util-to-babel-ast" "^6.2.1"
+    "svg-parser" "^2.0.2"
+
+"@svgr/plugin-svgo@^6.1.2":
+  "integrity" "sha512-oDdMQONKOJEbuKwuy4Np6VdV6qoaLLvoY86hjvQEgU82Vx1MSWRyYms6Sl0f+NtqxLI/rDVufATbP/ev996k3Q=="
+  "resolved" "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-6.2.0.tgz"
+  "version" "6.2.0"
+  dependencies:
+    "cosmiconfig" "^7.0.1"
+    "deepmerge" "^4.2.2"
+    "svgo" "^2.5.0"
+
 "@swc/helpers@^0.2.11":
   "integrity" "sha512-HxfZHtTgDlME7fH+KIwBrm1B1+2iB3UpbcSbPCZzDAHxZ3z+qfjflHverm33sXrdyQYx4s3J7r6ot76433mwEg=="
   "resolved" "https://registry.npmjs.org/@swc/helpers/-/helpers-0.2.13.tgz"
@@ -4759,13 +4861,6 @@
   "resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"
   "version" "2.2.0"
 
-"bindings@^1.5.0":
-  "integrity" "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ=="
-  "resolved" "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz"
-  "version" "1.5.0"
-  dependencies:
-    "file-uri-to-path" "1.0.0"
-
 "bl@^4.0.3", "bl@^4.1.0":
   "integrity" "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w=="
   "resolved" "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz"
@@ -6526,6 +6621,11 @@
   "resolved" "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz"
   "version" "4.2.2"
 
+"deepmerge@^4.2.2":
+  "integrity" "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="
+  "resolved" "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz"
+  "version" "4.2.2"
+
 "default-gateway@^4.2.0":
   "integrity" "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA=="
   "resolved" "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz"
@@ -8211,19 +8311,6 @@
   "resolved" "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
   "version" "1.0.0"
 
-"fsevents@^1.2.7":
-  "integrity" "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw=="
-  "resolved" "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz"
-  "version" "1.2.13"
-  dependencies:
-    "bindings" "^1.5.0"
-    "nan" "^2.12.1"
-
-"fsevents@^2.1.2", "fsevents@~2.3.2":
-  "integrity" "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="
-  "resolved" "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"
-  "version" "2.3.2"
-
 "function-bind@^1.1.1":
   "integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
   "resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"
@@ -11415,7 +11502,7 @@
     "object-assign" "^4.0.1"
     "thenify-all" "^1.0.0"
 
-"nan@^2.12.1", "nan@^2.14.2":
+"nan@^2.14.2":
   "integrity" "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ=="
   "resolved" "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz"
   "version" "2.15.0"
@@ -12391,7 +12478,7 @@
   "resolved" "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz"
   "version" "0.0.1"
 
-"path-dirname@^1.0.0":
+"path-dirname@^1.0.0", "path-dirname@^1.0.2":
   "integrity" "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA="
   "resolved" "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz"
   "version" "1.0.2"
@@ -13400,7 +13487,7 @@
     "kleur" "^3.0.3"
     "sisteransi" "^1.0.5"
 
-"prop-types@^15.6.0", "prop-types@^15.6.2", "prop-types@^15.7.2", "prop-types@15.7.2":
+"prop-types@^15.5.8", "prop-types@^15.6.0", "prop-types@^15.6.2", "prop-types@^15.7.2", "prop-types@15.7.2":
   "integrity" "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ=="
   "resolved" "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz"
   "version" "15.7.2"
@@ -13845,12 +13932,12 @@
   dependencies:
     "prop-types" "^15.7.2"
 
-"react-native-paper@^4.9.2":
-  "integrity" "sha512-J7FRsd0YblQawtuj9I46F//apZHadsCKk6jWpc6njFTYdgUeCdkR8KgEto7cp2WxbcGNELx7KGwPQ4zAgX746A=="
-  "resolved" "https://registry.npmjs.org/react-native-paper/-/react-native-paper-4.9.2.tgz"
-  "version" "4.9.2"
+"react-native-paper@^4.11.2":
+  "integrity" "sha512-r+M5unY9Avez4we/RijVh4iy8gqxK93R4840aZmbakOJLIuxjfNh3B6SuoxBEbR6diuPRbKVeWHKju4mhltxWw=="
+  "resolved" "https://registry.npmjs.org/react-native-paper/-/react-native-paper-4.11.2.tgz"
+  "version" "4.11.2"
   dependencies:
-    "@callstack/react-theme-provider" "^3.0.6"
+    "@callstack/react-theme-provider" "^3.0.7"
     "color" "^3.1.2"
     "react-native-iphone-x-helper" "^1.3.1"
 
@@ -13905,12 +13992,28 @@
   dependencies:
     "prop-types" "15.7.2"
 
+"react-native-spinkit@^1.5.1":
+  "integrity" "sha512-XkTgP4e+/MZpbI1GdZTIEQ+6WeMWQT4duWnSiXaaVW7py0rtaBLswtAEA6uXQGUhnxMnPWZhbLz7QponpH3ciQ=="
+  "resolved" "https://registry.npmjs.org/react-native-spinkit/-/react-native-spinkit-1.5.1.tgz"
+  "version" "1.5.1"
+  dependencies:
+    "prop-types" "^15.5.8"
+
 "react-native-spokestack@^6.1.4":
   "integrity" "sha512-DS2oLh9hu6HufmJfzgVjRtMdEIfD5lxh5cI4CX5DtDvgLur1r6Ni+Ews/KF+nWNavnfJVprOubMAzIwQJLMbaA=="
   "resolved" "https://registry.npmjs.org/react-native-spokestack/-/react-native-spokestack-6.1.4.tgz"
   "version" "6.1.4"
 
-"react-native-svg@^12.1.0":
+"react-native-svg-transformer@^1.0.0":
+  "integrity" "sha512-ALHU5VvLLyKM/BvyEG7VYJmqglvaXtU7mGRCxrEwwpJO/GBf1ZMUzc4AeJAjSodj7yYtlDYRxNSt9ySWpaa6JQ=="
+  "resolved" "https://registry.npmjs.org/react-native-svg-transformer/-/react-native-svg-transformer-1.0.0.tgz"
+  "version" "1.0.0"
+  dependencies:
+    "@svgr/core" "^6.1.2"
+    "@svgr/plugin-svgo" "^6.1.2"
+    "path-dirname" "^1.0.2"
+
+"react-native-svg@^12.1.0", "react-native-svg@>=12.0.0", "react-native-svg@12.1.1":
   "integrity" "sha512-NIAJ8jCnXGCqGWXkkJ1GTzO4a3Md5at5sagYV8Vh4MXYnL4z5Rh428Wahjhh+LIjx40EE5xM5YtwyJBqOIba2Q=="
   "resolved" "https://registry.npmjs.org/react-native-svg/-/react-native-svg-12.1.1.tgz"
   "version" "12.1.1"
@@ -13987,7 +14090,7 @@
     "whatwg-fetch" "^3.0.0"
     "ws" "^6.1.4"
 
-"react-native@*", "react-native@^0.64.0", "react-native@>= 0.51", "react-native@>= 0.62", "react-native@>=0.42.0", "react-native@>=0.50.0", "react-native@>=0.56", "react-native@>=0.60.0", "react-native@>=0.63.3", "react-native@>=0.64.0-rc.0 || 0.0.0-*", "react-native@>0.57.0", "react-native@0.64.3":
+"react-native@*", "react-native@^0.64.0", "react-native@>= 0.51", "react-native@>= 0.62", "react-native@>=0.42.0", "react-native@>=0.50.0", "react-native@>=0.54.0", "react-native@>=0.56", "react-native@>=0.57", "react-native@>=0.59.0", "react-native@>=0.60.0", "react-native@>=0.63.3", "react-native@>=0.64.0-rc.0 || 0.0.0-*", "react-native@>0.57.0", "react-native@0.64.3":
   "integrity" "sha512-2OEU74U0Ek1/WeBzPbg6XDsCfjF/9fhrNX/5TFgEiBKd5mNc9LOZ/OlMmkb7iues/ZZ/oc51SbEfLRQdcW0fVw=="
   "resolved" "https://registry.npmjs.org/react-native/-/react-native-0.64.3.tgz"
   "version" "0.64.3"
@@ -14049,7 +14152,7 @@
   "resolved" "https://registry.npmjs.org/react-timer-mixin/-/react-timer-mixin-0.13.4.tgz"
   "version" "0.13.4"
 
-"react@*", "react@^16.3.0", "react@^16.8.0 || ^17", "react@^16.8.0 || ^17.0.0", "react@>= 16.0 || < 18.0", "react@>=16.13.1", "react@>=16.5.1", "react@>=16.8.0", "react@>16.6.0", "react@17.0.1":
+"react@*", "react@^16.8.0 || ^17", "react@^16.8.0 || ^17.0.0", "react@>= 16.0 || < 18.0", "react@>=16.13.1", "react@>=16.3.0", "react@>=16.5.1", "react@>=16.8.0", "react@>16.6.0", "react@16 || 17", "react@17.0.1":
   "integrity" "sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w=="
   "resolved" "https://registry.npmjs.org/react/-/react-17.0.1.tgz"
   "version" "17.0.1"
@@ -15757,6 +15860,11 @@
     "has-flag" "^4.0.0"
     "supports-color" "^7.0.0"
 
+"svg-parser@^2.0.2":
+  "integrity" "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ=="
+  "resolved" "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz"
+  "version" "2.0.4"
+
 "svgo@^1.0.0":
   "integrity" "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw=="
   "resolved" "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz"
@@ -15776,7 +15884,7 @@
     "unquote" "~1.1.1"
     "util.promisify" "~1.0.0"
 
-"svgo@^2.3.0", "svgo@^2.4.0":
+"svgo@^2.3.0", "svgo@^2.4.0", "svgo@^2.5.0":
   "integrity" "sha512-ATpRmynNSjP/5hSM4Ij4Pg3L+BCN6IBES7wRLh1ZtVxJB7Xn8omiGttLW6v6ZbqrV5pCVB3XfdbUoY8IpgIwvw=="
   "resolved" "https://registry.npmjs.org/svgo/-/svgo-2.6.0.tgz"
   "version" "2.6.0"

この差分においてかなりの量のファイルが変更されているため、一部のファイルを表示していません