├── sample.jpg ├── public ├── robots.txt ├── favicon.ico └── index.html ├── src ├── index.js ├── App.js ├── components │ └── Wafermap.js └── waferdata.json ├── README.md ├── .eslintrc.json ├── package.json ├── LICENSE └── .gitignore /sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfordham/react-d3-wafermap/HEAD/sample.jpg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdfordham/react-d3-wafermap/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import ReactDOM from 'react-dom' 3 | import App from './App' 4 | 5 | ReactDOM.render( 6 | 7 | 8 | , 9 | document.getElementById('root') 10 | ) 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 | # react-d3-wafermap 4 | 5 | React component that uses [D3.js](https://d3js.org/) to generate a wafer map from a json of die data for yield analysis. It will automatically generate a proper border if the wafer is reasonably symmetric. The json should have $(x,y)$ data for each die, as well as color and mouseover text. 6 | 7 | The D3 code can be forked on Observable [here](https://observablehq.com/@sdfordham/simple-wafermap). The component follows the ''lifecycle methods wrapping'' structure due to [Nicolas Hery](https://nicolashery.com/integrating-d3js-visualizations-in-a-react-app/) via Marco Iglesias' great book [Pro D3.js](https://www.apress.com/gp/book/9781484252024). This repo was created with [create-react-app](https://github.com/facebook/create-react-app). 8 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import React, { useState } from 'react' 2 | import { Box, VStack, Center, Button } from '@chakra-ui/react' 3 | import data from './waferdata.json' 4 | import Wafermap from './components/Wafermap.js' 5 | 6 | function App() { 7 | const [waferIdx, setWaferIdx] = useState(0) 8 | var dimensions = {'width': 400, 'height': 400} 9 | 10 | function nextWafer() { 11 | waferIdx === (data.length - 1) ? 12 | setWaferIdx(0) : setWaferIdx(waferIdx + 1) 13 | } 14 | 15 | return ( 16 | 17 |
18 | 19 | 23 | 24 | 25 |
26 |
27 | ) 28 | } 29 | 30 | export default App 31 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "browser": true, 4 | "es2021": true 5 | }, 6 | "extends": [ 7 | "eslint:recommended", 8 | "plugin:react/recommended" 9 | ], 10 | "parserOptions": { 11 | "ecmaFeatures": { 12 | "jsx": true 13 | }, 14 | "ecmaVersion": 12, 15 | "sourceType": "module" 16 | }, 17 | "plugins": [ 18 | "react" 19 | ], 20 | "rules": { 21 | "indent": [ 22 | "error", 23 | 2 24 | ], 25 | "linebreak-style": [ 26 | "error", 27 | "windows" 28 | ], 29 | "quotes": [ 30 | "error", 31 | "single" 32 | ], 33 | "semi": [ 34 | "error", 35 | "never" 36 | ] 37 | }, 38 | "settings": { 39 | "react": { 40 | "version": "detect" 41 | } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-d3-wafermap", 3 | "version": "0.1.0", 4 | "private": true, 5 | "dependencies": { 6 | "@chakra-ui/react": "^1.7.3", 7 | "d3": "^7.2.1", 8 | "react": "^17.0.2", 9 | "react-dom": "^17.0.2", 10 | "react-scripts": "^5.0.0" 11 | }, 12 | "scripts": { 13 | "start": "react-scripts start", 14 | "lint": "eslint ." 15 | }, 16 | "eslintConfig": { 17 | "extends": [ 18 | "react-app", 19 | "react-app/jest" 20 | ] 21 | }, 22 | "browserslist": { 23 | "production": [ 24 | ">0.2%", 25 | "not dead", 26 | "not op_mini all" 27 | ], 28 | "development": [ 29 | "last 1 chrome version", 30 | "last 1 firefox version", 31 | "last 1 safari version" 32 | ] 33 | }, 34 | "devDependencies": { 35 | "eslint": "^7.32.0", 36 | "eslint-plugin-react": "^7.27.1" 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Stiofán Fordham 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 12 | 13 | 17 | 18 | 27 | React App 28 | 29 | 30 | 31 |
32 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /src/components/Wafermap.js: -------------------------------------------------------------------------------- 1 | import React, { useRef, useEffect } from 'react' 2 | import PropTypes from 'prop-types' 3 | import * as d3 from 'd3' 4 | 5 | const Wafermap = ({ points, configuration }) => { 6 | const svgRef = useRef(null) 7 | 8 | useEffect(() => { 9 | const max_x = d3.max(points, p => p.x) 10 | const max_y = d3.max(points, p => p.y) 11 | const min_x = d3.min(points, p => p.x) 12 | const min_y = d3.min(points, p => p.y) 13 | 14 | const radius = max_x + 2 15 | const vWidth = 4 * max_x + 1 16 | const vHeight = 4 * max_y + 1 17 | const svg = d3.select(svgRef.current) 18 | 19 | svg.append('circle') 20 | .style('fill', 'gray') 21 | .style('stroke', 'black') 22 | .style('stroke-width', 0.025) 23 | .attr('id', 'd3-outer-circ') 24 | .attr('cx', 0.5) 25 | .attr('cy', 0.5) 26 | 27 | svg.append('circle') 28 | .style('fill', 'gray') 29 | .style('stroke', 'black') 30 | .style('stroke-width', 0.025) 31 | .attr('id', 'd3-inner-circ') 32 | .attr('cx', 0.5) 33 | .attr('cy', 0.5) 34 | 35 | svg.append('g').attr('id', 'd3-die') 36 | 37 | svg.attr('viewBox', [2 * min_x, 2 * min_y, vWidth, vHeight]) 38 | 39 | const outer_c = svg.select('#d3-outer-circ') 40 | .attr('r', radius + 0.2) 41 | 42 | const inner_c = svg.select('#d3-inner-circ') 43 | .attr('r', radius) 44 | 45 | function mouseover(d, i) { 46 | svg.select('#d3-die') 47 | .append('text') 48 | .attr('id', 'd3-tooltip') 49 | .attr('x', radius) 50 | .attr('y', radius) 51 | .attr('font-size', '2px') 52 | .text(i.mouseover) 53 | } 54 | 55 | var mouseout = function(d, i) { // eslint-disable-line no-unused-vars 56 | svg.select('#d3-tooltip') 57 | .remove() 58 | } 59 | 60 | const g = svg.select('#d3-die') 61 | .selectAll('rect') 62 | .data(points) 63 | .join('rect') 64 | .attr('x', p => p.x) 65 | .attr('y', p => p.y) 66 | .attr('width', 0.975) 67 | .attr('height', 0.975) 68 | .attr('fill', p => p.color) 69 | .attr('stroke', 'black') 70 | .attr('stroke-width', 0.025) 71 | .on('mouseover', mouseover) 72 | .on('mouseout', mouseout) 73 | 74 | svg.call(d3.zoom() 75 | .extent([[0, 0], [vWidth, vHeight]]) 76 | .scaleExtent([1, 8]) 77 | .on('zoom', zoomed)) 78 | 79 | function zoomed({transform}) { 80 | g.attr('transform', transform) 81 | outer_c.attr('transform', transform) 82 | inner_c.attr('transform', transform) 83 | } 84 | }, [points]) 85 | 86 | return 89 | } 90 | 91 | Wafermap.propTypes = { 92 | points: PropTypes.array.isRequired, 93 | configuration: PropTypes.object.isRequired 94 | } 95 | 96 | export default Wafermap 97 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Created by https://www.toptal.com/developers/gitignore/api/vscode,react,node 3 | # Edit at https://www.toptal.com/developers/gitignore?templates=vscode,react,node 4 | 5 | ### Node ### 6 | # Logs 7 | logs 8 | *.log 9 | npm-debug.log* 10 | yarn-debug.log* 11 | yarn-error.log* 12 | lerna-debug.log* 13 | 14 | # Diagnostic reports (https://nodejs.org/api/report.html) 15 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 16 | 17 | # Runtime data 18 | pids 19 | *.pid 20 | *.seed 21 | *.pid.lock 22 | 23 | # Directory for instrumented libs generated by jscoverage/JSCover 24 | lib-cov 25 | 26 | # Coverage directory used by tools like istanbul 27 | coverage 28 | *.lcov 29 | 30 | # nyc test coverage 31 | .nyc_output 32 | 33 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 34 | .grunt 35 | 36 | # Bower dependency directory (https://bower.io/) 37 | bower_components 38 | 39 | # node-waf configuration 40 | .lock-wscript 41 | 42 | # Compiled binary addons (https://nodejs.org/api/addons.html) 43 | build/Release 44 | 45 | # Dependency directories 46 | node_modules/ 47 | jspm_packages/ 48 | 49 | # TypeScript v1 declaration files 50 | typings/ 51 | 52 | # TypeScript cache 53 | *.tsbuildinfo 54 | 55 | # Optional npm cache directory 56 | .npm 57 | 58 | # Optional eslint cache 59 | .eslintcache 60 | 61 | # Optional stylelint cache 62 | .stylelintcache 63 | 64 | # Microbundle cache 65 | .rpt2_cache/ 66 | .rts2_cache_cjs/ 67 | .rts2_cache_es/ 68 | .rts2_cache_umd/ 69 | 70 | # Optional REPL history 71 | .node_repl_history 72 | 73 | # Output of 'npm pack' 74 | *.tgz 75 | 76 | # Yarn Integrity file 77 | .yarn-integrity 78 | 79 | # dotenv environment variables file 80 | .env 81 | .env.test 82 | .env*.local 83 | 84 | # parcel-bundler cache (https://parceljs.org/) 85 | .cache 86 | .parcel-cache 87 | 88 | # Next.js build output 89 | .next 90 | 91 | # Nuxt.js build / generate output 92 | .nuxt 93 | dist 94 | 95 | # Storybook build outputs 96 | .out 97 | .storybook-out 98 | storybook-static 99 | 100 | # rollup.js default build output 101 | dist/ 102 | 103 | # Gatsby files 104 | .cache/ 105 | # Comment in the public line in if your project uses Gatsby and not Next.js 106 | # https://nextjs.org/blog/next-9-1#public-directory-support 107 | # public 108 | 109 | # vuepress build output 110 | .vuepress/dist 111 | 112 | # Serverless directories 113 | .serverless/ 114 | 115 | # FuseBox cache 116 | .fusebox/ 117 | 118 | # DynamoDB Local files 119 | .dynamodb/ 120 | 121 | # TernJS port file 122 | .tern-port 123 | 124 | # Stores VSCode versions used for testing VSCode extensions 125 | .vscode-test 126 | 127 | # Temporary folders 128 | tmp/ 129 | temp/ 130 | 131 | ### react ### 132 | .DS_* 133 | **/*.backup.* 134 | **/*.back.* 135 | 136 | node_modules 137 | 138 | *.sublime* 139 | 140 | psd 141 | thumb 142 | sketch 143 | 144 | ### vscode ### 145 | .vscode/* 146 | !.vscode/settings.json 147 | !.vscode/tasks.json 148 | !.vscode/launch.json 149 | !.vscode/extensions.json 150 | *.code-workspace 151 | 152 | # End of https://www.toptal.com/developers/gitignore/api/vscode,react,node 153 | -------------------------------------------------------------------------------- /src/waferdata.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "points":[ 4 | { 5 | "id":"000", 6 | "x":-9, 7 | "y":-4, 8 | "color":"green", 9 | "mouseover":"X" 10 | }, 11 | { 12 | "id":"001", 13 | "x":-9, 14 | "y":-3, 15 | "color":"green", 16 | "mouseover":"Z" 17 | }, 18 | { 19 | "id":"002", 20 | "x":-9, 21 | "y":-2, 22 | "color":"orange", 23 | "mouseover":"Z" 24 | }, 25 | { 26 | "id":"003", 27 | "x":-9, 28 | "y":-1, 29 | "color":"green", 30 | "mouseover":"Z" 31 | }, 32 | { 33 | "id":"004", 34 | "x":-9, 35 | "y":0, 36 | "color":"green", 37 | "mouseover":"Y" 38 | }, 39 | { 40 | "id":"005", 41 | "x":-9, 42 | "y":1, 43 | "color":"green", 44 | "mouseover":"Z" 45 | }, 46 | { 47 | "id":"006", 48 | "x":-9, 49 | "y":2, 50 | "color":"green", 51 | "mouseover":"X" 52 | }, 53 | { 54 | "id":"007", 55 | "x":-9, 56 | "y":3, 57 | "color":"green", 58 | "mouseover":"Z" 59 | }, 60 | { 61 | "id":"008", 62 | "x":-9, 63 | "y":4, 64 | "color":"green", 65 | "mouseover":"Z" 66 | }, 67 | { 68 | "id":"009", 69 | "x":-8, 70 | "y":-5, 71 | "color":"green", 72 | "mouseover":"X" 73 | }, 74 | { 75 | "id":"010", 76 | "x":-8, 77 | "y":-4, 78 | "color":"green", 79 | "mouseover":"Z" 80 | }, 81 | { 82 | "id":"011", 83 | "x":-8, 84 | "y":-3, 85 | "color":"green", 86 | "mouseover":"Y" 87 | }, 88 | { 89 | "id":"012", 90 | "x":-8, 91 | "y":-2, 92 | "color":"green", 93 | "mouseover":"Z" 94 | }, 95 | { 96 | "id":"013", 97 | "x":-8, 98 | "y":-1, 99 | "color":"green", 100 | "mouseover":"X" 101 | }, 102 | { 103 | "id":"014", 104 | "x":-8, 105 | "y":0, 106 | "color":"green", 107 | "mouseover":"Z" 108 | }, 109 | { 110 | "id":"015", 111 | "x":-8, 112 | "y":1, 113 | "color":"green", 114 | "mouseover":"Y" 115 | }, 116 | { 117 | "id":"016", 118 | "x":-8, 119 | "y":2, 120 | "color":"green", 121 | "mouseover":"Z" 122 | }, 123 | { 124 | "id":"017", 125 | "x":-8, 126 | "y":3, 127 | "color":"green", 128 | "mouseover":"Z" 129 | }, 130 | { 131 | "id":"018", 132 | "x":-8, 133 | "y":4, 134 | "color":"green", 135 | "mouseover":"Y" 136 | }, 137 | { 138 | "id":"019", 139 | "x":-8, 140 | "y":5, 141 | "color":"green", 142 | "mouseover":"Y" 143 | }, 144 | { 145 | "id":"020", 146 | "x":-7, 147 | "y":-7, 148 | "color":"green", 149 | "mouseover":"Y" 150 | }, 151 | { 152 | "id":"021", 153 | "x":-7, 154 | "y":-6, 155 | "color":"green", 156 | "mouseover":"Y" 157 | }, 158 | { 159 | "id":"022", 160 | "x":-7, 161 | "y":-5, 162 | "color":"orange", 163 | "mouseover":"Z" 164 | }, 165 | { 166 | "id":"023", 167 | "x":-7, 168 | "y":-4, 169 | "color":"green", 170 | "mouseover":"Y" 171 | }, 172 | { 173 | "id":"024", 174 | "x":-7, 175 | "y":-3, 176 | "color":"green", 177 | "mouseover":"X" 178 | }, 179 | { 180 | "id":"025", 181 | "x":-7, 182 | "y":-2, 183 | "color":"green", 184 | "mouseover":"Z" 185 | }, 186 | { 187 | "id":"026", 188 | "x":-7, 189 | "y":-1, 190 | "color":"green", 191 | "mouseover":"Y" 192 | }, 193 | { 194 | "id":"027", 195 | "x":-7, 196 | "y":0, 197 | "color":"green", 198 | "mouseover":"Y" 199 | }, 200 | { 201 | "id":"028", 202 | "x":-7, 203 | "y":1, 204 | "color":"red", 205 | "mouseover":"Z" 206 | }, 207 | { 208 | "id":"029", 209 | "x":-7, 210 | "y":2, 211 | "color":"green", 212 | "mouseover":"Y" 213 | }, 214 | { 215 | "id":"030", 216 | "x":-7, 217 | "y":3, 218 | "color":"green", 219 | "mouseover":"Y" 220 | }, 221 | { 222 | "id":"031", 223 | "x":-7, 224 | "y":4, 225 | "color":"green", 226 | "mouseover":"Y" 227 | }, 228 | { 229 | "id":"032", 230 | "x":-7, 231 | "y":5, 232 | "color":"green", 233 | "mouseover":"Z" 234 | }, 235 | { 236 | "id":"033", 237 | "x":-7, 238 | "y":6, 239 | "color":"green", 240 | "mouseover":"Y" 241 | }, 242 | { 243 | "id":"034", 244 | "x":-7, 245 | "y":7, 246 | "color":"red", 247 | "mouseover":"Z" 248 | }, 249 | { 250 | "id":"035", 251 | "x":-6, 252 | "y":-7, 253 | "color":"green", 254 | "mouseover":"X" 255 | }, 256 | { 257 | "id":"036", 258 | "x":-6, 259 | "y":-6, 260 | "color":"green", 261 | "mouseover":"Z" 262 | }, 263 | { 264 | "id":"037", 265 | "x":-6, 266 | "y":-5, 267 | "color":"green", 268 | "mouseover":"Z" 269 | }, 270 | { 271 | "id":"038", 272 | "x":-6, 273 | "y":-4, 274 | "color":"green", 275 | "mouseover":"X" 276 | }, 277 | { 278 | "id":"039", 279 | "x":-6, 280 | "y":-3, 281 | "color":"green", 282 | "mouseover":"X" 283 | }, 284 | { 285 | "id":"040", 286 | "x":-6, 287 | "y":-2, 288 | "color":"red", 289 | "mouseover":"X" 290 | }, 291 | { 292 | "id":"041", 293 | "x":-6, 294 | "y":-1, 295 | "color":"red", 296 | "mouseover":"Z" 297 | }, 298 | { 299 | "id":"042", 300 | "x":-6, 301 | "y":0, 302 | "color":"green", 303 | "mouseover":"X" 304 | }, 305 | { 306 | "id":"043", 307 | "x":-6, 308 | "y":1, 309 | "color":"orange", 310 | "mouseover":"Z" 311 | }, 312 | { 313 | "id":"044", 314 | "x":-6, 315 | "y":2, 316 | "color":"red", 317 | "mouseover":"Y" 318 | }, 319 | { 320 | "id":"045", 321 | "x":-6, 322 | "y":3, 323 | "color":"green", 324 | "mouseover":"Y" 325 | }, 326 | { 327 | "id":"046", 328 | "x":-6, 329 | "y":4, 330 | "color":"green", 331 | "mouseover":"Y" 332 | }, 333 | { 334 | "id":"047", 335 | "x":-6, 336 | "y":5, 337 | "color":"green", 338 | "mouseover":"Z" 339 | }, 340 | { 341 | "id":"048", 342 | "x":-6, 343 | "y":6, 344 | "color":"orange", 345 | "mouseover":"X" 346 | }, 347 | { 348 | "id":"049", 349 | "x":-6, 350 | "y":7, 351 | "color":"green", 352 | "mouseover":"Z" 353 | }, 354 | { 355 | "id":"050", 356 | "x":-5, 357 | "y":-8, 358 | "color":"green", 359 | "mouseover":"Y" 360 | }, 361 | { 362 | "id":"051", 363 | "x":-5, 364 | "y":-7, 365 | "color":"red", 366 | "mouseover":"X" 367 | }, 368 | { 369 | "id":"052", 370 | "x":-5, 371 | "y":-6, 372 | "color":"green", 373 | "mouseover":"Y" 374 | }, 375 | { 376 | "id":"053", 377 | "x":-5, 378 | "y":-5, 379 | "color":"green", 380 | "mouseover":"Y" 381 | }, 382 | { 383 | "id":"054", 384 | "x":-5, 385 | "y":-4, 386 | "color":"red", 387 | "mouseover":"X" 388 | }, 389 | { 390 | "id":"055", 391 | "x":-5, 392 | "y":-3, 393 | "color":"red", 394 | "mouseover":"X" 395 | }, 396 | { 397 | "id":"056", 398 | "x":-5, 399 | "y":-2, 400 | "color":"green", 401 | "mouseover":"Z" 402 | }, 403 | { 404 | "id":"057", 405 | "x":-5, 406 | "y":-1, 407 | "color":"green", 408 | "mouseover":"Z" 409 | }, 410 | { 411 | "id":"058", 412 | "x":-5, 413 | "y":0, 414 | "color":"orange", 415 | "mouseover":"X" 416 | }, 417 | { 418 | "id":"059", 419 | "x":-5, 420 | "y":1, 421 | "color":"green", 422 | "mouseover":"Z" 423 | }, 424 | { 425 | "id":"060", 426 | "x":-5, 427 | "y":2, 428 | "color":"green", 429 | "mouseover":"Z" 430 | }, 431 | { 432 | "id":"061", 433 | "x":-5, 434 | "y":3, 435 | "color":"green", 436 | "mouseover":"Z" 437 | }, 438 | { 439 | "id":"062", 440 | "x":-5, 441 | "y":4, 442 | "color":"orange", 443 | "mouseover":"Y" 444 | }, 445 | { 446 | "id":"063", 447 | "x":-5, 448 | "y":5, 449 | "color":"green", 450 | "mouseover":"X" 451 | }, 452 | { 453 | "id":"064", 454 | "x":-5, 455 | "y":6, 456 | "color":"green", 457 | "mouseover":"Z" 458 | }, 459 | { 460 | "id":"065", 461 | "x":-5, 462 | "y":7, 463 | "color":"green", 464 | "mouseover":"Y" 465 | }, 466 | { 467 | "id":"066", 468 | "x":-5, 469 | "y":8, 470 | "color":"green", 471 | "mouseover":"X" 472 | }, 473 | { 474 | "id":"067", 475 | "x":-4, 476 | "y":-9, 477 | "color":"red", 478 | "mouseover":"Z" 479 | }, 480 | { 481 | "id":"068", 482 | "x":-4, 483 | "y":-8, 484 | "color":"green", 485 | "mouseover":"Z" 486 | }, 487 | { 488 | "id":"069", 489 | "x":-4, 490 | "y":-7, 491 | "color":"green", 492 | "mouseover":"Z" 493 | }, 494 | { 495 | "id":"070", 496 | "x":-4, 497 | "y":-6, 498 | "color":"red", 499 | "mouseover":"Y" 500 | }, 501 | { 502 | "id":"071", 503 | "x":-4, 504 | "y":-5, 505 | "color":"orange", 506 | "mouseover":"Y" 507 | }, 508 | { 509 | "id":"072", 510 | "x":-4, 511 | "y":-4, 512 | "color":"orange", 513 | "mouseover":"Z" 514 | }, 515 | { 516 | "id":"073", 517 | "x":-4, 518 | "y":-3, 519 | "color":"green", 520 | "mouseover":"Z" 521 | }, 522 | { 523 | "id":"074", 524 | "x":-4, 525 | "y":-2, 526 | "color":"green", 527 | "mouseover":"X" 528 | }, 529 | { 530 | "id":"075", 531 | "x":-4, 532 | "y":-1, 533 | "color":"green", 534 | "mouseover":"X" 535 | }, 536 | { 537 | "id":"076", 538 | "x":-4, 539 | "y":0, 540 | "color":"green", 541 | "mouseover":"Y" 542 | }, 543 | { 544 | "id":"077", 545 | "x":-4, 546 | "y":1, 547 | "color":"green", 548 | "mouseover":"Z" 549 | }, 550 | { 551 | "id":"078", 552 | "x":-4, 553 | "y":2, 554 | "color":"green", 555 | "mouseover":"Z" 556 | }, 557 | { 558 | "id":"079", 559 | "x":-4, 560 | "y":3, 561 | "color":"green", 562 | "mouseover":"X" 563 | }, 564 | { 565 | "id":"080", 566 | "x":-4, 567 | "y":4, 568 | "color":"green", 569 | "mouseover":"Z" 570 | }, 571 | { 572 | "id":"081", 573 | "x":-4, 574 | "y":5, 575 | "color":"orange", 576 | "mouseover":"Y" 577 | }, 578 | { 579 | "id":"082", 580 | "x":-4, 581 | "y":6, 582 | "color":"orange", 583 | "mouseover":"X" 584 | }, 585 | { 586 | "id":"083", 587 | "x":-4, 588 | "y":7, 589 | "color":"green", 590 | "mouseover":"Y" 591 | }, 592 | { 593 | "id":"084", 594 | "x":-4, 595 | "y":8, 596 | "color":"green", 597 | "mouseover":"Y" 598 | }, 599 | { 600 | "id":"085", 601 | "x":-4, 602 | "y":9, 603 | "color":"green", 604 | "mouseover":"X" 605 | }, 606 | { 607 | "id":"086", 608 | "x":-3, 609 | "y":-9, 610 | "color":"green", 611 | "mouseover":"X" 612 | }, 613 | { 614 | "id":"087", 615 | "x":-3, 616 | "y":-8, 617 | "color":"green", 618 | "mouseover":"Y" 619 | }, 620 | { 621 | "id":"088", 622 | "x":-3, 623 | "y":-7, 624 | "color":"orange", 625 | "mouseover":"Y" 626 | }, 627 | { 628 | "id":"089", 629 | "x":-3, 630 | "y":-6, 631 | "color":"green", 632 | "mouseover":"Y" 633 | }, 634 | { 635 | "id":"090", 636 | "x":-3, 637 | "y":-5, 638 | "color":"green", 639 | "mouseover":"Y" 640 | }, 641 | { 642 | "id":"091", 643 | "x":-3, 644 | "y":-4, 645 | "color":"green", 646 | "mouseover":"Z" 647 | }, 648 | { 649 | "id":"092", 650 | "x":-3, 651 | "y":-3, 652 | "color":"orange", 653 | "mouseover":"Y" 654 | }, 655 | { 656 | "id":"093", 657 | "x":-3, 658 | "y":-2, 659 | "color":"green", 660 | "mouseover":"Z" 661 | }, 662 | { 663 | "id":"094", 664 | "x":-3, 665 | "y":-1, 666 | "color":"green", 667 | "mouseover":"Y" 668 | }, 669 | { 670 | "id":"095", 671 | "x":-3, 672 | "y":0, 673 | "color":"green", 674 | "mouseover":"X" 675 | }, 676 | { 677 | "id":"096", 678 | "x":-3, 679 | "y":1, 680 | "color":"green", 681 | "mouseover":"X" 682 | }, 683 | { 684 | "id":"097", 685 | "x":-3, 686 | "y":2, 687 | "color":"green", 688 | "mouseover":"Z" 689 | }, 690 | { 691 | "id":"098", 692 | "x":-3, 693 | "y":3, 694 | "color":"green", 695 | "mouseover":"X" 696 | }, 697 | { 698 | "id":"099", 699 | "x":-3, 700 | "y":4, 701 | "color":"green", 702 | "mouseover":"Y" 703 | }, 704 | { 705 | "id":"100", 706 | "x":-3, 707 | "y":5, 708 | "color":"green", 709 | "mouseover":"X" 710 | }, 711 | { 712 | "id":"101", 713 | "x":-3, 714 | "y":6, 715 | "color":"green", 716 | "mouseover":"Z" 717 | }, 718 | { 719 | "id":"102", 720 | "x":-3, 721 | "y":7, 722 | "color":"green", 723 | "mouseover":"Z" 724 | }, 725 | { 726 | "id":"103", 727 | "x":-3, 728 | "y":8, 729 | "color":"green", 730 | "mouseover":"Y" 731 | }, 732 | { 733 | "id":"104", 734 | "x":-3, 735 | "y":9, 736 | "color":"red", 737 | "mouseover":"X" 738 | }, 739 | { 740 | "id":"105", 741 | "x":-2, 742 | "y":-9, 743 | "color":"green", 744 | "mouseover":"X" 745 | }, 746 | { 747 | "id":"106", 748 | "x":-2, 749 | "y":-8, 750 | "color":"green", 751 | "mouseover":"Y" 752 | }, 753 | { 754 | "id":"107", 755 | "x":-2, 756 | "y":-7, 757 | "color":"red", 758 | "mouseover":"Y" 759 | }, 760 | { 761 | "id":"108", 762 | "x":-2, 763 | "y":-6, 764 | "color":"green", 765 | "mouseover":"X" 766 | }, 767 | { 768 | "id":"109", 769 | "x":-2, 770 | "y":-5, 771 | "color":"green", 772 | "mouseover":"Z" 773 | }, 774 | { 775 | "id":"110", 776 | "x":-2, 777 | "y":-4, 778 | "color":"green", 779 | "mouseover":"X" 780 | }, 781 | { 782 | "id":"111", 783 | "x":-2, 784 | "y":-3, 785 | "color":"orange", 786 | "mouseover":"Y" 787 | }, 788 | { 789 | "id":"112", 790 | "x":-2, 791 | "y":-2, 792 | "color":"orange", 793 | "mouseover":"Z" 794 | }, 795 | { 796 | "id":"113", 797 | "x":-2, 798 | "y":-1, 799 | "color":"red", 800 | "mouseover":"X" 801 | }, 802 | { 803 | "id":"114", 804 | "x":-2, 805 | "y":0, 806 | "color":"green", 807 | "mouseover":"Y" 808 | }, 809 | { 810 | "id":"115", 811 | "x":-2, 812 | "y":1, 813 | "color":"green", 814 | "mouseover":"Y" 815 | }, 816 | { 817 | "id":"116", 818 | "x":-2, 819 | "y":2, 820 | "color":"red", 821 | "mouseover":"Y" 822 | }, 823 | { 824 | "id":"117", 825 | "x":-2, 826 | "y":3, 827 | "color":"orange", 828 | "mouseover":"Z" 829 | }, 830 | { 831 | "id":"118", 832 | "x":-2, 833 | "y":4, 834 | "color":"red", 835 | "mouseover":"X" 836 | }, 837 | { 838 | "id":"119", 839 | "x":-2, 840 | "y":5, 841 | "color":"green", 842 | "mouseover":"Y" 843 | }, 844 | { 845 | "id":"120", 846 | "x":-2, 847 | "y":6, 848 | "color":"red", 849 | "mouseover":"Y" 850 | }, 851 | { 852 | "id":"121", 853 | "x":-2, 854 | "y":7, 855 | "color":"green", 856 | "mouseover":"Y" 857 | }, 858 | { 859 | "id":"122", 860 | "x":-2, 861 | "y":8, 862 | "color":"green", 863 | "mouseover":"Y" 864 | }, 865 | { 866 | "id":"123", 867 | "x":-2, 868 | "y":9, 869 | "color":"orange", 870 | "mouseover":"Z" 871 | }, 872 | { 873 | "id":"124", 874 | "x":-1, 875 | "y":-9, 876 | "color":"green", 877 | "mouseover":"X" 878 | }, 879 | { 880 | "id":"125", 881 | "x":-1, 882 | "y":-8, 883 | "color":"green", 884 | "mouseover":"X" 885 | }, 886 | { 887 | "id":"126", 888 | "x":-1, 889 | "y":-7, 890 | "color":"red", 891 | "mouseover":"X" 892 | }, 893 | { 894 | "id":"127", 895 | "x":-1, 896 | "y":-6, 897 | "color":"green", 898 | "mouseover":"Y" 899 | }, 900 | { 901 | "id":"128", 902 | "x":-1, 903 | "y":-5, 904 | "color":"orange", 905 | "mouseover":"X" 906 | }, 907 | { 908 | "id":"129", 909 | "x":-1, 910 | "y":-4, 911 | "color":"green", 912 | "mouseover":"X" 913 | }, 914 | { 915 | "id":"130", 916 | "x":-1, 917 | "y":-3, 918 | "color":"red", 919 | "mouseover":"Y" 920 | }, 921 | { 922 | "id":"131", 923 | "x":-1, 924 | "y":-2, 925 | "color":"red", 926 | "mouseover":"Z" 927 | }, 928 | { 929 | "id":"132", 930 | "x":-1, 931 | "y":-1, 932 | "color":"green", 933 | "mouseover":"Y" 934 | }, 935 | { 936 | "id":"133", 937 | "x":-1, 938 | "y":0, 939 | "color":"green", 940 | "mouseover":"Y" 941 | }, 942 | { 943 | "id":"134", 944 | "x":-1, 945 | "y":1, 946 | "color":"orange", 947 | "mouseover":"X" 948 | }, 949 | { 950 | "id":"135", 951 | "x":-1, 952 | "y":2, 953 | "color":"red", 954 | "mouseover":"X" 955 | }, 956 | { 957 | "id":"136", 958 | "x":-1, 959 | "y":3, 960 | "color":"orange", 961 | "mouseover":"Y" 962 | }, 963 | { 964 | "id":"137", 965 | "x":-1, 966 | "y":4, 967 | "color":"green", 968 | "mouseover":"X" 969 | }, 970 | { 971 | "id":"138", 972 | "x":-1, 973 | "y":5, 974 | "color":"orange", 975 | "mouseover":"X" 976 | }, 977 | { 978 | "id":"139", 979 | "x":-1, 980 | "y":6, 981 | "color":"green", 982 | "mouseover":"Y" 983 | }, 984 | { 985 | "id":"140", 986 | "x":-1, 987 | "y":7, 988 | "color":"orange", 989 | "mouseover":"Y" 990 | }, 991 | { 992 | "id":"141", 993 | "x":-1, 994 | "y":8, 995 | "color":"green", 996 | "mouseover":"Y" 997 | }, 998 | { 999 | "id":"142", 1000 | "x":-1, 1001 | "y":9, 1002 | "color":"green", 1003 | "mouseover":"Z" 1004 | }, 1005 | { 1006 | "id":"143", 1007 | "x":0, 1008 | "y":-9, 1009 | "color":"green", 1010 | "mouseover":"Y" 1011 | }, 1012 | { 1013 | "id":"144", 1014 | "x":0, 1015 | "y":-8, 1016 | "color":"green", 1017 | "mouseover":"X" 1018 | }, 1019 | { 1020 | "id":"145", 1021 | "x":0, 1022 | "y":-7, 1023 | "color":"green", 1024 | "mouseover":"Z" 1025 | }, 1026 | { 1027 | "id":"146", 1028 | "x":0, 1029 | "y":-6, 1030 | "color":"orange", 1031 | "mouseover":"Z" 1032 | }, 1033 | { 1034 | "id":"147", 1035 | "x":0, 1036 | "y":-5, 1037 | "color":"green", 1038 | "mouseover":"X" 1039 | }, 1040 | { 1041 | "id":"148", 1042 | "x":0, 1043 | "y":-4, 1044 | "color":"orange", 1045 | "mouseover":"X" 1046 | }, 1047 | { 1048 | "id":"149", 1049 | "x":0, 1050 | "y":-3, 1051 | "color":"red", 1052 | "mouseover":"X" 1053 | }, 1054 | { 1055 | "id":"150", 1056 | "x":0, 1057 | "y":-2, 1058 | "color":"green", 1059 | "mouseover":"Y" 1060 | }, 1061 | { 1062 | "id":"151", 1063 | "x":0, 1064 | "y":-1, 1065 | "color":"green", 1066 | "mouseover":"Y" 1067 | }, 1068 | { 1069 | "id":"152", 1070 | "x":0, 1071 | "y":0, 1072 | "color":"green", 1073 | "mouseover":"Y" 1074 | }, 1075 | { 1076 | "id":"153", 1077 | "x":0, 1078 | "y":1, 1079 | "color":"green", 1080 | "mouseover":"X" 1081 | }, 1082 | { 1083 | "id":"154", 1084 | "x":0, 1085 | "y":2, 1086 | "color":"red", 1087 | "mouseover":"Z" 1088 | }, 1089 | { 1090 | "id":"155", 1091 | "x":0, 1092 | "y":3, 1093 | "color":"green", 1094 | "mouseover":"Y" 1095 | }, 1096 | { 1097 | "id":"156", 1098 | "x":0, 1099 | "y":4, 1100 | "color":"orange", 1101 | "mouseover":"Y" 1102 | }, 1103 | { 1104 | "id":"157", 1105 | "x":0, 1106 | "y":5, 1107 | "color":"green", 1108 | "mouseover":"X" 1109 | }, 1110 | { 1111 | "id":"158", 1112 | "x":0, 1113 | "y":6, 1114 | "color":"green", 1115 | "mouseover":"X" 1116 | }, 1117 | { 1118 | "id":"159", 1119 | "x":0, 1120 | "y":7, 1121 | "color":"green", 1122 | "mouseover":"X" 1123 | }, 1124 | { 1125 | "id":"160", 1126 | "x":0, 1127 | "y":8, 1128 | "color":"green", 1129 | "mouseover":"X" 1130 | }, 1131 | { 1132 | "id":"161", 1133 | "x":0, 1134 | "y":9, 1135 | "color":"green", 1136 | "mouseover":"Y" 1137 | }, 1138 | { 1139 | "id":"162", 1140 | "x":1, 1141 | "y":-9, 1142 | "color":"red", 1143 | "mouseover":"Y" 1144 | }, 1145 | { 1146 | "id":"163", 1147 | "x":1, 1148 | "y":-8, 1149 | "color":"green", 1150 | "mouseover":"Y" 1151 | }, 1152 | { 1153 | "id":"164", 1154 | "x":1, 1155 | "y":-7, 1156 | "color":"orange", 1157 | "mouseover":"X" 1158 | }, 1159 | { 1160 | "id":"165", 1161 | "x":1, 1162 | "y":-6, 1163 | "color":"green", 1164 | "mouseover":"Z" 1165 | }, 1166 | { 1167 | "id":"166", 1168 | "x":1, 1169 | "y":-5, 1170 | "color":"green", 1171 | "mouseover":"X" 1172 | }, 1173 | { 1174 | "id":"167", 1175 | "x":1, 1176 | "y":-4, 1177 | "color":"green", 1178 | "mouseover":"X" 1179 | }, 1180 | { 1181 | "id":"168", 1182 | "x":1, 1183 | "y":-3, 1184 | "color":"green", 1185 | "mouseover":"X" 1186 | }, 1187 | { 1188 | "id":"169", 1189 | "x":1, 1190 | "y":-2, 1191 | "color":"green", 1192 | "mouseover":"Y" 1193 | }, 1194 | { 1195 | "id":"170", 1196 | "x":1, 1197 | "y":-1, 1198 | "color":"green", 1199 | "mouseover":"Z" 1200 | }, 1201 | { 1202 | "id":"171", 1203 | "x":1, 1204 | "y":0, 1205 | "color":"green", 1206 | "mouseover":"X" 1207 | }, 1208 | { 1209 | "id":"172", 1210 | "x":1, 1211 | "y":1, 1212 | "color":"green", 1213 | "mouseover":"X" 1214 | }, 1215 | { 1216 | "id":"173", 1217 | "x":1, 1218 | "y":2, 1219 | "color":"green", 1220 | "mouseover":"X" 1221 | }, 1222 | { 1223 | "id":"174", 1224 | "x":1, 1225 | "y":3, 1226 | "color":"green", 1227 | "mouseover":"X" 1228 | }, 1229 | { 1230 | "id":"175", 1231 | "x":1, 1232 | "y":4, 1233 | "color":"green", 1234 | "mouseover":"Z" 1235 | }, 1236 | { 1237 | "id":"176", 1238 | "x":1, 1239 | "y":5, 1240 | "color":"green", 1241 | "mouseover":"Z" 1242 | }, 1243 | { 1244 | "id":"177", 1245 | "x":1, 1246 | "y":6, 1247 | "color":"green", 1248 | "mouseover":"X" 1249 | }, 1250 | { 1251 | "id":"178", 1252 | "x":1, 1253 | "y":7, 1254 | "color":"green", 1255 | "mouseover":"Z" 1256 | }, 1257 | { 1258 | "id":"179", 1259 | "x":1, 1260 | "y":8, 1261 | "color":"green", 1262 | "mouseover":"Z" 1263 | }, 1264 | { 1265 | "id":"180", 1266 | "x":1, 1267 | "y":9, 1268 | "color":"green", 1269 | "mouseover":"Z" 1270 | }, 1271 | { 1272 | "id":"181", 1273 | "x":2, 1274 | "y":-9, 1275 | "color":"green", 1276 | "mouseover":"Z" 1277 | }, 1278 | { 1279 | "id":"182", 1280 | "x":2, 1281 | "y":-8, 1282 | "color":"green", 1283 | "mouseover":"X" 1284 | }, 1285 | { 1286 | "id":"183", 1287 | "x":2, 1288 | "y":-7, 1289 | "color":"green", 1290 | "mouseover":"X" 1291 | }, 1292 | { 1293 | "id":"184", 1294 | "x":2, 1295 | "y":-6, 1296 | "color":"orange", 1297 | "mouseover":"Y" 1298 | }, 1299 | { 1300 | "id":"185", 1301 | "x":2, 1302 | "y":-5, 1303 | "color":"orange", 1304 | "mouseover":"Z" 1305 | }, 1306 | { 1307 | "id":"186", 1308 | "x":2, 1309 | "y":-4, 1310 | "color":"green", 1311 | "mouseover":"Z" 1312 | }, 1313 | { 1314 | "id":"187", 1315 | "x":2, 1316 | "y":-3, 1317 | "color":"green", 1318 | "mouseover":"Z" 1319 | }, 1320 | { 1321 | "id":"188", 1322 | "x":2, 1323 | "y":-2, 1324 | "color":"green", 1325 | "mouseover":"Y" 1326 | }, 1327 | { 1328 | "id":"189", 1329 | "x":2, 1330 | "y":-1, 1331 | "color":"green", 1332 | "mouseover":"Z" 1333 | }, 1334 | { 1335 | "id":"190", 1336 | "x":2, 1337 | "y":0, 1338 | "color":"orange", 1339 | "mouseover":"X" 1340 | }, 1341 | { 1342 | "id":"191", 1343 | "x":2, 1344 | "y":1, 1345 | "color":"green", 1346 | "mouseover":"Y" 1347 | }, 1348 | { 1349 | "id":"192", 1350 | "x":2, 1351 | "y":2, 1352 | "color":"green", 1353 | "mouseover":"Z" 1354 | }, 1355 | { 1356 | "id":"193", 1357 | "x":2, 1358 | "y":3, 1359 | "color":"green", 1360 | "mouseover":"Y" 1361 | }, 1362 | { 1363 | "id":"194", 1364 | "x":2, 1365 | "y":4, 1366 | "color":"green", 1367 | "mouseover":"Y" 1368 | }, 1369 | { 1370 | "id":"195", 1371 | "x":2, 1372 | "y":5, 1373 | "color":"green", 1374 | "mouseover":"X" 1375 | }, 1376 | { 1377 | "id":"196", 1378 | "x":2, 1379 | "y":6, 1380 | "color":"green", 1381 | "mouseover":"X" 1382 | }, 1383 | { 1384 | "id":"197", 1385 | "x":2, 1386 | "y":7, 1387 | "color":"orange", 1388 | "mouseover":"X" 1389 | }, 1390 | { 1391 | "id":"198", 1392 | "x":2, 1393 | "y":8, 1394 | "color":"red", 1395 | "mouseover":"X" 1396 | }, 1397 | { 1398 | "id":"199", 1399 | "x":2, 1400 | "y":9, 1401 | "color":"orange", 1402 | "mouseover":"Z" 1403 | }, 1404 | { 1405 | "id":"200", 1406 | "x":3, 1407 | "y":-9, 1408 | "color":"red", 1409 | "mouseover":"Y" 1410 | }, 1411 | { 1412 | "id":"201", 1413 | "x":3, 1414 | "y":-8, 1415 | "color":"green", 1416 | "mouseover":"Y" 1417 | }, 1418 | { 1419 | "id":"202", 1420 | "x":3, 1421 | "y":-7, 1422 | "color":"green", 1423 | "mouseover":"X" 1424 | }, 1425 | { 1426 | "id":"203", 1427 | "x":3, 1428 | "y":-6, 1429 | "color":"orange", 1430 | "mouseover":"Z" 1431 | }, 1432 | { 1433 | "id":"204", 1434 | "x":3, 1435 | "y":-5, 1436 | "color":"green", 1437 | "mouseover":"X" 1438 | }, 1439 | { 1440 | "id":"205", 1441 | "x":3, 1442 | "y":-4, 1443 | "color":"red", 1444 | "mouseover":"Z" 1445 | }, 1446 | { 1447 | "id":"206", 1448 | "x":3, 1449 | "y":-3, 1450 | "color":"green", 1451 | "mouseover":"Z" 1452 | }, 1453 | { 1454 | "id":"207", 1455 | "x":3, 1456 | "y":-2, 1457 | "color":"green", 1458 | "mouseover":"Y" 1459 | }, 1460 | { 1461 | "id":"208", 1462 | "x":3, 1463 | "y":-1, 1464 | "color":"orange", 1465 | "mouseover":"Y" 1466 | }, 1467 | { 1468 | "id":"209", 1469 | "x":3, 1470 | "y":0, 1471 | "color":"green", 1472 | "mouseover":"Y" 1473 | }, 1474 | { 1475 | "id":"210", 1476 | "x":3, 1477 | "y":1, 1478 | "color":"green", 1479 | "mouseover":"X" 1480 | }, 1481 | { 1482 | "id":"211", 1483 | "x":3, 1484 | "y":2, 1485 | "color":"red", 1486 | "mouseover":"X" 1487 | }, 1488 | { 1489 | "id":"212", 1490 | "x":3, 1491 | "y":3, 1492 | "color":"orange", 1493 | "mouseover":"Z" 1494 | }, 1495 | { 1496 | "id":"213", 1497 | "x":3, 1498 | "y":4, 1499 | "color":"green", 1500 | "mouseover":"Z" 1501 | }, 1502 | { 1503 | "id":"214", 1504 | "x":3, 1505 | "y":5, 1506 | "color":"green", 1507 | "mouseover":"Z" 1508 | }, 1509 | { 1510 | "id":"215", 1511 | "x":3, 1512 | "y":6, 1513 | "color":"green", 1514 | "mouseover":"Z" 1515 | }, 1516 | { 1517 | "id":"216", 1518 | "x":3, 1519 | "y":7, 1520 | "color":"green", 1521 | "mouseover":"Y" 1522 | }, 1523 | { 1524 | "id":"217", 1525 | "x":3, 1526 | "y":8, 1527 | "color":"orange", 1528 | "mouseover":"Y" 1529 | }, 1530 | { 1531 | "id":"218", 1532 | "x":3, 1533 | "y":9, 1534 | "color":"green", 1535 | "mouseover":"X" 1536 | }, 1537 | { 1538 | "id":"219", 1539 | "x":4, 1540 | "y":-9, 1541 | "color":"green", 1542 | "mouseover":"Y" 1543 | }, 1544 | { 1545 | "id":"220", 1546 | "x":4, 1547 | "y":-8, 1548 | "color":"green", 1549 | "mouseover":"X" 1550 | }, 1551 | { 1552 | "id":"221", 1553 | "x":4, 1554 | "y":-7, 1555 | "color":"green", 1556 | "mouseover":"X" 1557 | }, 1558 | { 1559 | "id":"222", 1560 | "x":4, 1561 | "y":-6, 1562 | "color":"red", 1563 | "mouseover":"Z" 1564 | }, 1565 | { 1566 | "id":"223", 1567 | "x":4, 1568 | "y":-5, 1569 | "color":"green", 1570 | "mouseover":"X" 1571 | }, 1572 | { 1573 | "id":"224", 1574 | "x":4, 1575 | "y":-4, 1576 | "color":"green", 1577 | "mouseover":"X" 1578 | }, 1579 | { 1580 | "id":"225", 1581 | "x":4, 1582 | "y":-3, 1583 | "color":"green", 1584 | "mouseover":"Z" 1585 | }, 1586 | { 1587 | "id":"226", 1588 | "x":4, 1589 | "y":-2, 1590 | "color":"green", 1591 | "mouseover":"Y" 1592 | }, 1593 | { 1594 | "id":"227", 1595 | "x":4, 1596 | "y":-1, 1597 | "color":"green", 1598 | "mouseover":"X" 1599 | }, 1600 | { 1601 | "id":"228", 1602 | "x":4, 1603 | "y":0, 1604 | "color":"orange", 1605 | "mouseover":"Y" 1606 | }, 1607 | { 1608 | "id":"229", 1609 | "x":4, 1610 | "y":1, 1611 | "color":"green", 1612 | "mouseover":"Z" 1613 | }, 1614 | { 1615 | "id":"230", 1616 | "x":4, 1617 | "y":2, 1618 | "color":"green", 1619 | "mouseover":"Y" 1620 | }, 1621 | { 1622 | "id":"231", 1623 | "x":4, 1624 | "y":3, 1625 | "color":"green", 1626 | "mouseover":"Z" 1627 | }, 1628 | { 1629 | "id":"232", 1630 | "x":4, 1631 | "y":4, 1632 | "color":"green", 1633 | "mouseover":"X" 1634 | }, 1635 | { 1636 | "id":"233", 1637 | "x":4, 1638 | "y":5, 1639 | "color":"green", 1640 | "mouseover":"X" 1641 | }, 1642 | { 1643 | "id":"234", 1644 | "x":4, 1645 | "y":6, 1646 | "color":"green", 1647 | "mouseover":"X" 1648 | }, 1649 | { 1650 | "id":"235", 1651 | "x":4, 1652 | "y":7, 1653 | "color":"green", 1654 | "mouseover":"Y" 1655 | }, 1656 | { 1657 | "id":"236", 1658 | "x":4, 1659 | "y":8, 1660 | "color":"orange", 1661 | "mouseover":"Y" 1662 | }, 1663 | { 1664 | "id":"237", 1665 | "x":4, 1666 | "y":9, 1667 | "color":"green", 1668 | "mouseover":"Y" 1669 | }, 1670 | { 1671 | "id":"238", 1672 | "x":5, 1673 | "y":-8, 1674 | "color":"green", 1675 | "mouseover":"Y" 1676 | }, 1677 | { 1678 | "id":"239", 1679 | "x":5, 1680 | "y":-7, 1681 | "color":"green", 1682 | "mouseover":"X" 1683 | }, 1684 | { 1685 | "id":"240", 1686 | "x":5, 1687 | "y":-6, 1688 | "color":"green", 1689 | "mouseover":"Y" 1690 | }, 1691 | { 1692 | "id":"241", 1693 | "x":5, 1694 | "y":-5, 1695 | "color":"green", 1696 | "mouseover":"Z" 1697 | }, 1698 | { 1699 | "id":"242", 1700 | "x":5, 1701 | "y":-4, 1702 | "color":"green", 1703 | "mouseover":"Z" 1704 | }, 1705 | { 1706 | "id":"243", 1707 | "x":5, 1708 | "y":-3, 1709 | "color":"green", 1710 | "mouseover":"Y" 1711 | }, 1712 | { 1713 | "id":"244", 1714 | "x":5, 1715 | "y":-2, 1716 | "color":"green", 1717 | "mouseover":"X" 1718 | }, 1719 | { 1720 | "id":"245", 1721 | "x":5, 1722 | "y":-1, 1723 | "color":"green", 1724 | "mouseover":"Y" 1725 | }, 1726 | { 1727 | "id":"246", 1728 | "x":5, 1729 | "y":0, 1730 | "color":"green", 1731 | "mouseover":"Y" 1732 | }, 1733 | { 1734 | "id":"247", 1735 | "x":5, 1736 | "y":1, 1737 | "color":"green", 1738 | "mouseover":"Y" 1739 | }, 1740 | { 1741 | "id":"248", 1742 | "x":5, 1743 | "y":2, 1744 | "color":"green", 1745 | "mouseover":"X" 1746 | }, 1747 | { 1748 | "id":"249", 1749 | "x":5, 1750 | "y":3, 1751 | "color":"green", 1752 | "mouseover":"Y" 1753 | }, 1754 | { 1755 | "id":"250", 1756 | "x":5, 1757 | "y":4, 1758 | "color":"green", 1759 | "mouseover":"X" 1760 | }, 1761 | { 1762 | "id":"251", 1763 | "x":5, 1764 | "y":5, 1765 | "color":"green", 1766 | "mouseover":"Y" 1767 | }, 1768 | { 1769 | "id":"252", 1770 | "x":5, 1771 | "y":6, 1772 | "color":"green", 1773 | "mouseover":"Z" 1774 | }, 1775 | { 1776 | "id":"253", 1777 | "x":5, 1778 | "y":7, 1779 | "color":"green", 1780 | "mouseover":"Z" 1781 | }, 1782 | { 1783 | "id":"254", 1784 | "x":5, 1785 | "y":8, 1786 | "color":"green", 1787 | "mouseover":"Z" 1788 | }, 1789 | { 1790 | "id":"255", 1791 | "x":6, 1792 | "y":-7, 1793 | "color":"green", 1794 | "mouseover":"Y" 1795 | }, 1796 | { 1797 | "id":"256", 1798 | "x":6, 1799 | "y":-6, 1800 | "color":"green", 1801 | "mouseover":"X" 1802 | }, 1803 | { 1804 | "id":"257", 1805 | "x":6, 1806 | "y":-5, 1807 | "color":"orange", 1808 | "mouseover":"Y" 1809 | }, 1810 | { 1811 | "id":"258", 1812 | "x":6, 1813 | "y":-4, 1814 | "color":"green", 1815 | "mouseover":"X" 1816 | }, 1817 | { 1818 | "id":"259", 1819 | "x":6, 1820 | "y":-3, 1821 | "color":"green", 1822 | "mouseover":"X" 1823 | }, 1824 | { 1825 | "id":"260", 1826 | "x":6, 1827 | "y":-2, 1828 | "color":"green", 1829 | "mouseover":"X" 1830 | }, 1831 | { 1832 | "id":"261", 1833 | "x":6, 1834 | "y":-1, 1835 | "color":"green", 1836 | "mouseover":"Y" 1837 | }, 1838 | { 1839 | "id":"262", 1840 | "x":6, 1841 | "y":0, 1842 | "color":"red", 1843 | "mouseover":"X" 1844 | }, 1845 | { 1846 | "id":"263", 1847 | "x":6, 1848 | "y":1, 1849 | "color":"green", 1850 | "mouseover":"Z" 1851 | }, 1852 | { 1853 | "id":"264", 1854 | "x":6, 1855 | "y":2, 1856 | "color":"green", 1857 | "mouseover":"Z" 1858 | }, 1859 | { 1860 | "id":"265", 1861 | "x":6, 1862 | "y":3, 1863 | "color":"green", 1864 | "mouseover":"X" 1865 | }, 1866 | { 1867 | "id":"266", 1868 | "x":6, 1869 | "y":4, 1870 | "color":"green", 1871 | "mouseover":"X" 1872 | }, 1873 | { 1874 | "id":"267", 1875 | "x":6, 1876 | "y":5, 1877 | "color":"green", 1878 | "mouseover":"X" 1879 | }, 1880 | { 1881 | "id":"268", 1882 | "x":6, 1883 | "y":6, 1884 | "color":"green", 1885 | "mouseover":"Z" 1886 | }, 1887 | { 1888 | "id":"269", 1889 | "x":6, 1890 | "y":7, 1891 | "color":"green", 1892 | "mouseover":"X" 1893 | }, 1894 | { 1895 | "id":"270", 1896 | "x":7, 1897 | "y":-7, 1898 | "color":"red", 1899 | "mouseover":"X" 1900 | }, 1901 | { 1902 | "id":"271", 1903 | "x":7, 1904 | "y":-6, 1905 | "color":"green", 1906 | "mouseover":"X" 1907 | }, 1908 | { 1909 | "id":"272", 1910 | "x":7, 1911 | "y":-5, 1912 | "color":"green", 1913 | "mouseover":"Y" 1914 | }, 1915 | { 1916 | "id":"273", 1917 | "x":7, 1918 | "y":-4, 1919 | "color":"orange", 1920 | "mouseover":"Z" 1921 | }, 1922 | { 1923 | "id":"274", 1924 | "x":7, 1925 | "y":-3, 1926 | "color":"green", 1927 | "mouseover":"Y" 1928 | }, 1929 | { 1930 | "id":"275", 1931 | "x":7, 1932 | "y":-2, 1933 | "color":"green", 1934 | "mouseover":"X" 1935 | }, 1936 | { 1937 | "id":"276", 1938 | "x":7, 1939 | "y":-1, 1940 | "color":"orange", 1941 | "mouseover":"Y" 1942 | }, 1943 | { 1944 | "id":"277", 1945 | "x":7, 1946 | "y":0, 1947 | "color":"green", 1948 | "mouseover":"Z" 1949 | }, 1950 | { 1951 | "id":"278", 1952 | "x":7, 1953 | "y":1, 1954 | "color":"green", 1955 | "mouseover":"Z" 1956 | }, 1957 | { 1958 | "id":"279", 1959 | "x":7, 1960 | "y":2, 1961 | "color":"green", 1962 | "mouseover":"Z" 1963 | }, 1964 | { 1965 | "id":"280", 1966 | "x":7, 1967 | "y":3, 1968 | "color":"green", 1969 | "mouseover":"X" 1970 | }, 1971 | { 1972 | "id":"281", 1973 | "x":7, 1974 | "y":4, 1975 | "color":"green", 1976 | "mouseover":"Y" 1977 | }, 1978 | { 1979 | "id":"282", 1980 | "x":7, 1981 | "y":5, 1982 | "color":"green", 1983 | "mouseover":"Y" 1984 | }, 1985 | { 1986 | "id":"283", 1987 | "x":7, 1988 | "y":6, 1989 | "color":"green", 1990 | "mouseover":"Y" 1991 | }, 1992 | { 1993 | "id":"284", 1994 | "x":7, 1995 | "y":7, 1996 | "color":"orange", 1997 | "mouseover":"X" 1998 | }, 1999 | { 2000 | "id":"285", 2001 | "x":8, 2002 | "y":-5, 2003 | "color":"green", 2004 | "mouseover":"Y" 2005 | }, 2006 | { 2007 | "id":"286", 2008 | "x":8, 2009 | "y":-4, 2010 | "color":"green", 2011 | "mouseover":"X" 2012 | }, 2013 | { 2014 | "id":"287", 2015 | "x":8, 2016 | "y":-3, 2017 | "color":"orange", 2018 | "mouseover":"X" 2019 | }, 2020 | { 2021 | "id":"288", 2022 | "x":8, 2023 | "y":-2, 2024 | "color":"green", 2025 | "mouseover":"X" 2026 | }, 2027 | { 2028 | "id":"289", 2029 | "x":8, 2030 | "y":-1, 2031 | "color":"green", 2032 | "mouseover":"X" 2033 | }, 2034 | { 2035 | "id":"290", 2036 | "x":8, 2037 | "y":0, 2038 | "color":"green", 2039 | "mouseover":"Y" 2040 | }, 2041 | { 2042 | "id":"291", 2043 | "x":8, 2044 | "y":1, 2045 | "color":"green", 2046 | "mouseover":"Y" 2047 | }, 2048 | { 2049 | "id":"292", 2050 | "x":8, 2051 | "y":2, 2052 | "color":"green", 2053 | "mouseover":"Y" 2054 | }, 2055 | { 2056 | "id":"293", 2057 | "x":8, 2058 | "y":3, 2059 | "color":"orange", 2060 | "mouseover":"Y" 2061 | }, 2062 | { 2063 | "id":"294", 2064 | "x":8, 2065 | "y":4, 2066 | "color":"green", 2067 | "mouseover":"Y" 2068 | }, 2069 | { 2070 | "id":"295", 2071 | "x":8, 2072 | "y":5, 2073 | "color":"green", 2074 | "mouseover":"X" 2075 | }, 2076 | { 2077 | "id":"296", 2078 | "x":9, 2079 | "y":-4, 2080 | "color":"green", 2081 | "mouseover":"Y" 2082 | }, 2083 | { 2084 | "id":"297", 2085 | "x":9, 2086 | "y":-3, 2087 | "color":"orange", 2088 | "mouseover":"Z" 2089 | }, 2090 | { 2091 | "id":"298", 2092 | "x":9, 2093 | "y":-2, 2094 | "color":"orange", 2095 | "mouseover":"X" 2096 | }, 2097 | { 2098 | "id":"299", 2099 | "x":9, 2100 | "y":-1, 2101 | "color":"green", 2102 | "mouseover":"Y" 2103 | }, 2104 | { 2105 | "id":"300", 2106 | "x":9, 2107 | "y":0, 2108 | "color":"green", 2109 | "mouseover":"Y" 2110 | }, 2111 | { 2112 | "id":"301", 2113 | "x":9, 2114 | "y":1, 2115 | "color":"green", 2116 | "mouseover":"X" 2117 | }, 2118 | { 2119 | "id":"302", 2120 | "x":9, 2121 | "y":2, 2122 | "color":"green", 2123 | "mouseover":"Z" 2124 | }, 2125 | { 2126 | "id":"303", 2127 | "x":9, 2128 | "y":3, 2129 | "color":"green", 2130 | "mouseover":"X" 2131 | }, 2132 | { 2133 | "id":"304", 2134 | "x":9, 2135 | "y":4, 2136 | "color":"orange", 2137 | "mouseover":"Y" 2138 | } 2139 | ] 2140 | }, 2141 | { 2142 | "points":[ 2143 | { 2144 | "id":"000", 2145 | "x":-9, 2146 | "y":-4, 2147 | "color":"green", 2148 | "mouseover":"X" 2149 | }, 2150 | { 2151 | "id":"001", 2152 | "x":-9, 2153 | "y":-3, 2154 | "color":"orange", 2155 | "mouseover":"X" 2156 | }, 2157 | { 2158 | "id":"002", 2159 | "x":-9, 2160 | "y":-2, 2161 | "color":"green", 2162 | "mouseover":"Z" 2163 | }, 2164 | { 2165 | "id":"003", 2166 | "x":-9, 2167 | "y":-1, 2168 | "color":"green", 2169 | "mouseover":"X" 2170 | }, 2171 | { 2172 | "id":"004", 2173 | "x":-9, 2174 | "y":0, 2175 | "color":"green", 2176 | "mouseover":"Y" 2177 | }, 2178 | { 2179 | "id":"005", 2180 | "x":-9, 2181 | "y":1, 2182 | "color":"green", 2183 | "mouseover":"Z" 2184 | }, 2185 | { 2186 | "id":"006", 2187 | "x":-9, 2188 | "y":2, 2189 | "color":"orange", 2190 | "mouseover":"X" 2191 | }, 2192 | { 2193 | "id":"007", 2194 | "x":-9, 2195 | "y":3, 2196 | "color":"green", 2197 | "mouseover":"Z" 2198 | }, 2199 | { 2200 | "id":"008", 2201 | "x":-9, 2202 | "y":4, 2203 | "color":"red", 2204 | "mouseover":"X" 2205 | }, 2206 | { 2207 | "id":"009", 2208 | "x":-8, 2209 | "y":-5, 2210 | "color":"green", 2211 | "mouseover":"Y" 2212 | }, 2213 | { 2214 | "id":"010", 2215 | "x":-8, 2216 | "y":-4, 2217 | "color":"green", 2218 | "mouseover":"X" 2219 | }, 2220 | { 2221 | "id":"011", 2222 | "x":-8, 2223 | "y":-3, 2224 | "color":"orange", 2225 | "mouseover":"X" 2226 | }, 2227 | { 2228 | "id":"012", 2229 | "x":-8, 2230 | "y":-2, 2231 | "color":"green", 2232 | "mouseover":"Y" 2233 | }, 2234 | { 2235 | "id":"013", 2236 | "x":-8, 2237 | "y":-1, 2238 | "color":"green", 2239 | "mouseover":"Z" 2240 | }, 2241 | { 2242 | "id":"014", 2243 | "x":-8, 2244 | "y":0, 2245 | "color":"green", 2246 | "mouseover":"Y" 2247 | }, 2248 | { 2249 | "id":"015", 2250 | "x":-8, 2251 | "y":1, 2252 | "color":"orange", 2253 | "mouseover":"Z" 2254 | }, 2255 | { 2256 | "id":"016", 2257 | "x":-8, 2258 | "y":2, 2259 | "color":"green", 2260 | "mouseover":"Z" 2261 | }, 2262 | { 2263 | "id":"017", 2264 | "x":-8, 2265 | "y":3, 2266 | "color":"orange", 2267 | "mouseover":"Z" 2268 | }, 2269 | { 2270 | "id":"018", 2271 | "x":-8, 2272 | "y":4, 2273 | "color":"green", 2274 | "mouseover":"Z" 2275 | }, 2276 | { 2277 | "id":"019", 2278 | "x":-8, 2279 | "y":5, 2280 | "color":"green", 2281 | "mouseover":"Z" 2282 | }, 2283 | { 2284 | "id":"020", 2285 | "x":-7, 2286 | "y":-7, 2287 | "color":"green", 2288 | "mouseover":"X" 2289 | }, 2290 | { 2291 | "id":"021", 2292 | "x":-7, 2293 | "y":-6, 2294 | "color":"green", 2295 | "mouseover":"X" 2296 | }, 2297 | { 2298 | "id":"022", 2299 | "x":-7, 2300 | "y":-5, 2301 | "color":"green", 2302 | "mouseover":"Z" 2303 | }, 2304 | { 2305 | "id":"023", 2306 | "x":-7, 2307 | "y":-4, 2308 | "color":"orange", 2309 | "mouseover":"Y" 2310 | }, 2311 | { 2312 | "id":"024", 2313 | "x":-7, 2314 | "y":-3, 2315 | "color":"orange", 2316 | "mouseover":"X" 2317 | }, 2318 | { 2319 | "id":"025", 2320 | "x":-7, 2321 | "y":-2, 2322 | "color":"green", 2323 | "mouseover":"Z" 2324 | }, 2325 | { 2326 | "id":"026", 2327 | "x":-7, 2328 | "y":-1, 2329 | "color":"green", 2330 | "mouseover":"Z" 2331 | }, 2332 | { 2333 | "id":"027", 2334 | "x":-7, 2335 | "y":0, 2336 | "color":"green", 2337 | "mouseover":"Y" 2338 | }, 2339 | { 2340 | "id":"028", 2341 | "x":-7, 2342 | "y":1, 2343 | "color":"orange", 2344 | "mouseover":"Y" 2345 | }, 2346 | { 2347 | "id":"029", 2348 | "x":-7, 2349 | "y":2, 2350 | "color":"green", 2351 | "mouseover":"Z" 2352 | }, 2353 | { 2354 | "id":"030", 2355 | "x":-7, 2356 | "y":3, 2357 | "color":"red", 2358 | "mouseover":"Y" 2359 | }, 2360 | { 2361 | "id":"031", 2362 | "x":-7, 2363 | "y":4, 2364 | "color":"green", 2365 | "mouseover":"X" 2366 | }, 2367 | { 2368 | "id":"032", 2369 | "x":-7, 2370 | "y":5, 2371 | "color":"green", 2372 | "mouseover":"X" 2373 | }, 2374 | { 2375 | "id":"033", 2376 | "x":-7, 2377 | "y":6, 2378 | "color":"green", 2379 | "mouseover":"Z" 2380 | }, 2381 | { 2382 | "id":"034", 2383 | "x":-7, 2384 | "y":7, 2385 | "color":"green", 2386 | "mouseover":"Z" 2387 | }, 2388 | { 2389 | "id":"035", 2390 | "x":-6, 2391 | "y":-7, 2392 | "color":"orange", 2393 | "mouseover":"Y" 2394 | }, 2395 | { 2396 | "id":"036", 2397 | "x":-6, 2398 | "y":-6, 2399 | "color":"red", 2400 | "mouseover":"Z" 2401 | }, 2402 | { 2403 | "id":"037", 2404 | "x":-6, 2405 | "y":-5, 2406 | "color":"green", 2407 | "mouseover":"Y" 2408 | }, 2409 | { 2410 | "id":"038", 2411 | "x":-6, 2412 | "y":-4, 2413 | "color":"red", 2414 | "mouseover":"Y" 2415 | }, 2416 | { 2417 | "id":"039", 2418 | "x":-6, 2419 | "y":-3, 2420 | "color":"green", 2421 | "mouseover":"Y" 2422 | }, 2423 | { 2424 | "id":"040", 2425 | "x":-6, 2426 | "y":-2, 2427 | "color":"red", 2428 | "mouseover":"X" 2429 | }, 2430 | { 2431 | "id":"041", 2432 | "x":-6, 2433 | "y":-1, 2434 | "color":"green", 2435 | "mouseover":"Y" 2436 | }, 2437 | { 2438 | "id":"042", 2439 | "x":-6, 2440 | "y":0, 2441 | "color":"green", 2442 | "mouseover":"Y" 2443 | }, 2444 | { 2445 | "id":"043", 2446 | "x":-6, 2447 | "y":1, 2448 | "color":"green", 2449 | "mouseover":"Y" 2450 | }, 2451 | { 2452 | "id":"044", 2453 | "x":-6, 2454 | "y":2, 2455 | "color":"red", 2456 | "mouseover":"Z" 2457 | }, 2458 | { 2459 | "id":"045", 2460 | "x":-6, 2461 | "y":3, 2462 | "color":"green", 2463 | "mouseover":"Z" 2464 | }, 2465 | { 2466 | "id":"046", 2467 | "x":-6, 2468 | "y":4, 2469 | "color":"red", 2470 | "mouseover":"Y" 2471 | }, 2472 | { 2473 | "id":"047", 2474 | "x":-6, 2475 | "y":5, 2476 | "color":"green", 2477 | "mouseover":"Y" 2478 | }, 2479 | { 2480 | "id":"048", 2481 | "x":-6, 2482 | "y":6, 2483 | "color":"green", 2484 | "mouseover":"X" 2485 | }, 2486 | { 2487 | "id":"049", 2488 | "x":-6, 2489 | "y":7, 2490 | "color":"green", 2491 | "mouseover":"Z" 2492 | }, 2493 | { 2494 | "id":"050", 2495 | "x":-5, 2496 | "y":-8, 2497 | "color":"orange", 2498 | "mouseover":"Z" 2499 | }, 2500 | { 2501 | "id":"051", 2502 | "x":-5, 2503 | "y":-7, 2504 | "color":"green", 2505 | "mouseover":"Z" 2506 | }, 2507 | { 2508 | "id":"052", 2509 | "x":-5, 2510 | "y":-6, 2511 | "color":"green", 2512 | "mouseover":"Y" 2513 | }, 2514 | { 2515 | "id":"053", 2516 | "x":-5, 2517 | "y":-5, 2518 | "color":"green", 2519 | "mouseover":"X" 2520 | }, 2521 | { 2522 | "id":"054", 2523 | "x":-5, 2524 | "y":-4, 2525 | "color":"green", 2526 | "mouseover":"X" 2527 | }, 2528 | { 2529 | "id":"055", 2530 | "x":-5, 2531 | "y":-3, 2532 | "color":"green", 2533 | "mouseover":"Z" 2534 | }, 2535 | { 2536 | "id":"056", 2537 | "x":-5, 2538 | "y":-2, 2539 | "color":"green", 2540 | "mouseover":"X" 2541 | }, 2542 | { 2543 | "id":"057", 2544 | "x":-5, 2545 | "y":-1, 2546 | "color":"green", 2547 | "mouseover":"Y" 2548 | }, 2549 | { 2550 | "id":"058", 2551 | "x":-5, 2552 | "y":0, 2553 | "color":"green", 2554 | "mouseover":"Y" 2555 | }, 2556 | { 2557 | "id":"059", 2558 | "x":-5, 2559 | "y":1, 2560 | "color":"green", 2561 | "mouseover":"Y" 2562 | }, 2563 | { 2564 | "id":"060", 2565 | "x":-5, 2566 | "y":2, 2567 | "color":"orange", 2568 | "mouseover":"Z" 2569 | }, 2570 | { 2571 | "id":"061", 2572 | "x":-5, 2573 | "y":3, 2574 | "color":"green", 2575 | "mouseover":"Y" 2576 | }, 2577 | { 2578 | "id":"062", 2579 | "x":-5, 2580 | "y":4, 2581 | "color":"red", 2582 | "mouseover":"Z" 2583 | }, 2584 | { 2585 | "id":"063", 2586 | "x":-5, 2587 | "y":5, 2588 | "color":"orange", 2589 | "mouseover":"X" 2590 | }, 2591 | { 2592 | "id":"064", 2593 | "x":-5, 2594 | "y":6, 2595 | "color":"red", 2596 | "mouseover":"X" 2597 | }, 2598 | { 2599 | "id":"065", 2600 | "x":-5, 2601 | "y":7, 2602 | "color":"red", 2603 | "mouseover":"Y" 2604 | }, 2605 | { 2606 | "id":"066", 2607 | "x":-5, 2608 | "y":8, 2609 | "color":"green", 2610 | "mouseover":"Y" 2611 | }, 2612 | { 2613 | "id":"067", 2614 | "x":-4, 2615 | "y":-9, 2616 | "color":"red", 2617 | "mouseover":"Y" 2618 | }, 2619 | { 2620 | "id":"068", 2621 | "x":-4, 2622 | "y":-8, 2623 | "color":"green", 2624 | "mouseover":"Z" 2625 | }, 2626 | { 2627 | "id":"069", 2628 | "x":-4, 2629 | "y":-7, 2630 | "color":"orange", 2631 | "mouseover":"Z" 2632 | }, 2633 | { 2634 | "id":"070", 2635 | "x":-4, 2636 | "y":-6, 2637 | "color":"green", 2638 | "mouseover":"X" 2639 | }, 2640 | { 2641 | "id":"071", 2642 | "x":-4, 2643 | "y":-5, 2644 | "color":"orange", 2645 | "mouseover":"X" 2646 | }, 2647 | { 2648 | "id":"072", 2649 | "x":-4, 2650 | "y":-4, 2651 | "color":"green", 2652 | "mouseover":"Y" 2653 | }, 2654 | { 2655 | "id":"073", 2656 | "x":-4, 2657 | "y":-3, 2658 | "color":"orange", 2659 | "mouseover":"Z" 2660 | }, 2661 | { 2662 | "id":"074", 2663 | "x":-4, 2664 | "y":-2, 2665 | "color":"green", 2666 | "mouseover":"X" 2667 | }, 2668 | { 2669 | "id":"075", 2670 | "x":-4, 2671 | "y":-1, 2672 | "color":"green", 2673 | "mouseover":"X" 2674 | }, 2675 | { 2676 | "id":"076", 2677 | "x":-4, 2678 | "y":0, 2679 | "color":"orange", 2680 | "mouseover":"X" 2681 | }, 2682 | { 2683 | "id":"077", 2684 | "x":-4, 2685 | "y":1, 2686 | "color":"red", 2687 | "mouseover":"Z" 2688 | }, 2689 | { 2690 | "id":"078", 2691 | "x":-4, 2692 | "y":2, 2693 | "color":"green", 2694 | "mouseover":"X" 2695 | }, 2696 | { 2697 | "id":"079", 2698 | "x":-4, 2699 | "y":3, 2700 | "color":"green", 2701 | "mouseover":"X" 2702 | }, 2703 | { 2704 | "id":"080", 2705 | "x":-4, 2706 | "y":4, 2707 | "color":"red", 2708 | "mouseover":"Y" 2709 | }, 2710 | { 2711 | "id":"081", 2712 | "x":-4, 2713 | "y":5, 2714 | "color":"green", 2715 | "mouseover":"X" 2716 | }, 2717 | { 2718 | "id":"082", 2719 | "x":-4, 2720 | "y":6, 2721 | "color":"green", 2722 | "mouseover":"Y" 2723 | }, 2724 | { 2725 | "id":"083", 2726 | "x":-4, 2727 | "y":7, 2728 | "color":"green", 2729 | "mouseover":"X" 2730 | }, 2731 | { 2732 | "id":"084", 2733 | "x":-4, 2734 | "y":8, 2735 | "color":"green", 2736 | "mouseover":"X" 2737 | }, 2738 | { 2739 | "id":"085", 2740 | "x":-4, 2741 | "y":9, 2742 | "color":"green", 2743 | "mouseover":"X" 2744 | }, 2745 | { 2746 | "id":"086", 2747 | "x":-3, 2748 | "y":-9, 2749 | "color":"green", 2750 | "mouseover":"Z" 2751 | }, 2752 | { 2753 | "id":"087", 2754 | "x":-3, 2755 | "y":-8, 2756 | "color":"green", 2757 | "mouseover":"Z" 2758 | }, 2759 | { 2760 | "id":"088", 2761 | "x":-3, 2762 | "y":-7, 2763 | "color":"orange", 2764 | "mouseover":"Y" 2765 | }, 2766 | { 2767 | "id":"089", 2768 | "x":-3, 2769 | "y":-6, 2770 | "color":"green", 2771 | "mouseover":"X" 2772 | }, 2773 | { 2774 | "id":"090", 2775 | "x":-3, 2776 | "y":-5, 2777 | "color":"green", 2778 | "mouseover":"Z" 2779 | }, 2780 | { 2781 | "id":"091", 2782 | "x":-3, 2783 | "y":-4, 2784 | "color":"green", 2785 | "mouseover":"X" 2786 | }, 2787 | { 2788 | "id":"092", 2789 | "x":-3, 2790 | "y":-3, 2791 | "color":"red", 2792 | "mouseover":"Y" 2793 | }, 2794 | { 2795 | "id":"093", 2796 | "x":-3, 2797 | "y":-2, 2798 | "color":"green", 2799 | "mouseover":"Y" 2800 | }, 2801 | { 2802 | "id":"094", 2803 | "x":-3, 2804 | "y":-1, 2805 | "color":"green", 2806 | "mouseover":"Y" 2807 | }, 2808 | { 2809 | "id":"095", 2810 | "x":-3, 2811 | "y":0, 2812 | "color":"orange", 2813 | "mouseover":"X" 2814 | }, 2815 | { 2816 | "id":"096", 2817 | "x":-3, 2818 | "y":1, 2819 | "color":"green", 2820 | "mouseover":"X" 2821 | }, 2822 | { 2823 | "id":"097", 2824 | "x":-3, 2825 | "y":2, 2826 | "color":"green", 2827 | "mouseover":"X" 2828 | }, 2829 | { 2830 | "id":"098", 2831 | "x":-3, 2832 | "y":3, 2833 | "color":"green", 2834 | "mouseover":"Y" 2835 | }, 2836 | { 2837 | "id":"099", 2838 | "x":-3, 2839 | "y":4, 2840 | "color":"green", 2841 | "mouseover":"X" 2842 | }, 2843 | { 2844 | "id":"100", 2845 | "x":-3, 2846 | "y":5, 2847 | "color":"green", 2848 | "mouseover":"Z" 2849 | }, 2850 | { 2851 | "id":"101", 2852 | "x":-3, 2853 | "y":6, 2854 | "color":"green", 2855 | "mouseover":"X" 2856 | }, 2857 | { 2858 | "id":"102", 2859 | "x":-3, 2860 | "y":7, 2861 | "color":"green", 2862 | "mouseover":"Y" 2863 | }, 2864 | { 2865 | "id":"103", 2866 | "x":-3, 2867 | "y":8, 2868 | "color":"green", 2869 | "mouseover":"Y" 2870 | }, 2871 | { 2872 | "id":"104", 2873 | "x":-3, 2874 | "y":9, 2875 | "color":"green", 2876 | "mouseover":"Z" 2877 | }, 2878 | { 2879 | "id":"105", 2880 | "x":-2, 2881 | "y":-9, 2882 | "color":"green", 2883 | "mouseover":"Y" 2884 | }, 2885 | { 2886 | "id":"106", 2887 | "x":-2, 2888 | "y":-8, 2889 | "color":"orange", 2890 | "mouseover":"Z" 2891 | }, 2892 | { 2893 | "id":"107", 2894 | "x":-2, 2895 | "y":-7, 2896 | "color":"green", 2897 | "mouseover":"X" 2898 | }, 2899 | { 2900 | "id":"108", 2901 | "x":-2, 2902 | "y":-6, 2903 | "color":"red", 2904 | "mouseover":"Z" 2905 | }, 2906 | { 2907 | "id":"109", 2908 | "x":-2, 2909 | "y":-5, 2910 | "color":"red", 2911 | "mouseover":"Z" 2912 | }, 2913 | { 2914 | "id":"110", 2915 | "x":-2, 2916 | "y":-4, 2917 | "color":"green", 2918 | "mouseover":"Z" 2919 | }, 2920 | { 2921 | "id":"111", 2922 | "x":-2, 2923 | "y":-3, 2924 | "color":"green", 2925 | "mouseover":"Z" 2926 | }, 2927 | { 2928 | "id":"112", 2929 | "x":-2, 2930 | "y":-2, 2931 | "color":"orange", 2932 | "mouseover":"Z" 2933 | }, 2934 | { 2935 | "id":"113", 2936 | "x":-2, 2937 | "y":-1, 2938 | "color":"green", 2939 | "mouseover":"Z" 2940 | }, 2941 | { 2942 | "id":"114", 2943 | "x":-2, 2944 | "y":0, 2945 | "color":"green", 2946 | "mouseover":"Z" 2947 | }, 2948 | { 2949 | "id":"115", 2950 | "x":-2, 2951 | "y":1, 2952 | "color":"green", 2953 | "mouseover":"Z" 2954 | }, 2955 | { 2956 | "id":"116", 2957 | "x":-2, 2958 | "y":2, 2959 | "color":"green", 2960 | "mouseover":"Y" 2961 | }, 2962 | { 2963 | "id":"117", 2964 | "x":-2, 2965 | "y":3, 2966 | "color":"green", 2967 | "mouseover":"X" 2968 | }, 2969 | { 2970 | "id":"118", 2971 | "x":-2, 2972 | "y":4, 2973 | "color":"orange", 2974 | "mouseover":"Y" 2975 | }, 2976 | { 2977 | "id":"119", 2978 | "x":-2, 2979 | "y":5, 2980 | "color":"green", 2981 | "mouseover":"Y" 2982 | }, 2983 | { 2984 | "id":"120", 2985 | "x":-2, 2986 | "y":6, 2987 | "color":"red", 2988 | "mouseover":"Y" 2989 | }, 2990 | { 2991 | "id":"121", 2992 | "x":-2, 2993 | "y":7, 2994 | "color":"green", 2995 | "mouseover":"Y" 2996 | }, 2997 | { 2998 | "id":"122", 2999 | "x":-2, 3000 | "y":8, 3001 | "color":"green", 3002 | "mouseover":"Z" 3003 | }, 3004 | { 3005 | "id":"123", 3006 | "x":-2, 3007 | "y":9, 3008 | "color":"orange", 3009 | "mouseover":"Z" 3010 | }, 3011 | { 3012 | "id":"124", 3013 | "x":-1, 3014 | "y":-9, 3015 | "color":"green", 3016 | "mouseover":"Z" 3017 | }, 3018 | { 3019 | "id":"125", 3020 | "x":-1, 3021 | "y":-8, 3022 | "color":"green", 3023 | "mouseover":"Y" 3024 | }, 3025 | { 3026 | "id":"126", 3027 | "x":-1, 3028 | "y":-7, 3029 | "color":"green", 3030 | "mouseover":"Z" 3031 | }, 3032 | { 3033 | "id":"127", 3034 | "x":-1, 3035 | "y":-6, 3036 | "color":"orange", 3037 | "mouseover":"Y" 3038 | }, 3039 | { 3040 | "id":"128", 3041 | "x":-1, 3042 | "y":-5, 3043 | "color":"green", 3044 | "mouseover":"Y" 3045 | }, 3046 | { 3047 | "id":"129", 3048 | "x":-1, 3049 | "y":-4, 3050 | "color":"green", 3051 | "mouseover":"X" 3052 | }, 3053 | { 3054 | "id":"130", 3055 | "x":-1, 3056 | "y":-3, 3057 | "color":"green", 3058 | "mouseover":"Y" 3059 | }, 3060 | { 3061 | "id":"131", 3062 | "x":-1, 3063 | "y":-2, 3064 | "color":"green", 3065 | "mouseover":"X" 3066 | }, 3067 | { 3068 | "id":"132", 3069 | "x":-1, 3070 | "y":-1, 3071 | "color":"green", 3072 | "mouseover":"Z" 3073 | }, 3074 | { 3075 | "id":"133", 3076 | "x":-1, 3077 | "y":0, 3078 | "color":"orange", 3079 | "mouseover":"Y" 3080 | }, 3081 | { 3082 | "id":"134", 3083 | "x":-1, 3084 | "y":1, 3085 | "color":"orange", 3086 | "mouseover":"Y" 3087 | }, 3088 | { 3089 | "id":"135", 3090 | "x":-1, 3091 | "y":2, 3092 | "color":"green", 3093 | "mouseover":"Z" 3094 | }, 3095 | { 3096 | "id":"136", 3097 | "x":-1, 3098 | "y":3, 3099 | "color":"green", 3100 | "mouseover":"Z" 3101 | }, 3102 | { 3103 | "id":"137", 3104 | "x":-1, 3105 | "y":4, 3106 | "color":"green", 3107 | "mouseover":"Z" 3108 | }, 3109 | { 3110 | "id":"138", 3111 | "x":-1, 3112 | "y":5, 3113 | "color":"green", 3114 | "mouseover":"Y" 3115 | }, 3116 | { 3117 | "id":"139", 3118 | "x":-1, 3119 | "y":6, 3120 | "color":"orange", 3121 | "mouseover":"Z" 3122 | }, 3123 | { 3124 | "id":"140", 3125 | "x":-1, 3126 | "y":7, 3127 | "color":"orange", 3128 | "mouseover":"Y" 3129 | }, 3130 | { 3131 | "id":"141", 3132 | "x":-1, 3133 | "y":8, 3134 | "color":"green", 3135 | "mouseover":"X" 3136 | }, 3137 | { 3138 | "id":"142", 3139 | "x":-1, 3140 | "y":9, 3141 | "color":"green", 3142 | "mouseover":"X" 3143 | }, 3144 | { 3145 | "id":"143", 3146 | "x":0, 3147 | "y":-9, 3148 | "color":"green", 3149 | "mouseover":"Z" 3150 | }, 3151 | { 3152 | "id":"144", 3153 | "x":0, 3154 | "y":-8, 3155 | "color":"green", 3156 | "mouseover":"X" 3157 | }, 3158 | { 3159 | "id":"145", 3160 | "x":0, 3161 | "y":-7, 3162 | "color":"orange", 3163 | "mouseover":"Z" 3164 | }, 3165 | { 3166 | "id":"146", 3167 | "x":0, 3168 | "y":-6, 3169 | "color":"green", 3170 | "mouseover":"X" 3171 | }, 3172 | { 3173 | "id":"147", 3174 | "x":0, 3175 | "y":-5, 3176 | "color":"orange", 3177 | "mouseover":"Z" 3178 | }, 3179 | { 3180 | "id":"148", 3181 | "x":0, 3182 | "y":-4, 3183 | "color":"orange", 3184 | "mouseover":"X" 3185 | }, 3186 | { 3187 | "id":"149", 3188 | "x":0, 3189 | "y":-3, 3190 | "color":"green", 3191 | "mouseover":"Z" 3192 | }, 3193 | { 3194 | "id":"150", 3195 | "x":0, 3196 | "y":-2, 3197 | "color":"green", 3198 | "mouseover":"X" 3199 | }, 3200 | { 3201 | "id":"151", 3202 | "x":0, 3203 | "y":-1, 3204 | "color":"green", 3205 | "mouseover":"Z" 3206 | }, 3207 | { 3208 | "id":"152", 3209 | "x":0, 3210 | "y":0, 3211 | "color":"orange", 3212 | "mouseover":"Z" 3213 | }, 3214 | { 3215 | "id":"153", 3216 | "x":0, 3217 | "y":1, 3218 | "color":"green", 3219 | "mouseover":"Y" 3220 | }, 3221 | { 3222 | "id":"154", 3223 | "x":0, 3224 | "y":2, 3225 | "color":"orange", 3226 | "mouseover":"X" 3227 | }, 3228 | { 3229 | "id":"155", 3230 | "x":0, 3231 | "y":3, 3232 | "color":"green", 3233 | "mouseover":"Y" 3234 | }, 3235 | { 3236 | "id":"156", 3237 | "x":0, 3238 | "y":4, 3239 | "color":"green", 3240 | "mouseover":"Z" 3241 | }, 3242 | { 3243 | "id":"157", 3244 | "x":0, 3245 | "y":5, 3246 | "color":"green", 3247 | "mouseover":"Z" 3248 | }, 3249 | { 3250 | "id":"158", 3251 | "x":0, 3252 | "y":6, 3253 | "color":"orange", 3254 | "mouseover":"Y" 3255 | }, 3256 | { 3257 | "id":"159", 3258 | "x":0, 3259 | "y":7, 3260 | "color":"red", 3261 | "mouseover":"X" 3262 | }, 3263 | { 3264 | "id":"160", 3265 | "x":0, 3266 | "y":8, 3267 | "color":"green", 3268 | "mouseover":"Z" 3269 | }, 3270 | { 3271 | "id":"161", 3272 | "x":0, 3273 | "y":9, 3274 | "color":"green", 3275 | "mouseover":"Y" 3276 | }, 3277 | { 3278 | "id":"162", 3279 | "x":1, 3280 | "y":-9, 3281 | "color":"green", 3282 | "mouseover":"Z" 3283 | }, 3284 | { 3285 | "id":"163", 3286 | "x":1, 3287 | "y":-8, 3288 | "color":"green", 3289 | "mouseover":"Y" 3290 | }, 3291 | { 3292 | "id":"164", 3293 | "x":1, 3294 | "y":-7, 3295 | "color":"red", 3296 | "mouseover":"Y" 3297 | }, 3298 | { 3299 | "id":"165", 3300 | "x":1, 3301 | "y":-6, 3302 | "color":"green", 3303 | "mouseover":"Y" 3304 | }, 3305 | { 3306 | "id":"166", 3307 | "x":1, 3308 | "y":-5, 3309 | "color":"green", 3310 | "mouseover":"Z" 3311 | }, 3312 | { 3313 | "id":"167", 3314 | "x":1, 3315 | "y":-4, 3316 | "color":"green", 3317 | "mouseover":"Y" 3318 | }, 3319 | { 3320 | "id":"168", 3321 | "x":1, 3322 | "y":-3, 3323 | "color":"green", 3324 | "mouseover":"Z" 3325 | }, 3326 | { 3327 | "id":"169", 3328 | "x":1, 3329 | "y":-2, 3330 | "color":"green", 3331 | "mouseover":"X" 3332 | }, 3333 | { 3334 | "id":"170", 3335 | "x":1, 3336 | "y":-1, 3337 | "color":"red", 3338 | "mouseover":"X" 3339 | }, 3340 | { 3341 | "id":"171", 3342 | "x":1, 3343 | "y":0, 3344 | "color":"green", 3345 | "mouseover":"Z" 3346 | }, 3347 | { 3348 | "id":"172", 3349 | "x":1, 3350 | "y":1, 3351 | "color":"orange", 3352 | "mouseover":"X" 3353 | }, 3354 | { 3355 | "id":"173", 3356 | "x":1, 3357 | "y":2, 3358 | "color":"orange", 3359 | "mouseover":"X" 3360 | }, 3361 | { 3362 | "id":"174", 3363 | "x":1, 3364 | "y":3, 3365 | "color":"green", 3366 | "mouseover":"X" 3367 | }, 3368 | { 3369 | "id":"175", 3370 | "x":1, 3371 | "y":4, 3372 | "color":"green", 3373 | "mouseover":"Z" 3374 | }, 3375 | { 3376 | "id":"176", 3377 | "x":1, 3378 | "y":5, 3379 | "color":"green", 3380 | "mouseover":"Y" 3381 | }, 3382 | { 3383 | "id":"177", 3384 | "x":1, 3385 | "y":6, 3386 | "color":"green", 3387 | "mouseover":"X" 3388 | }, 3389 | { 3390 | "id":"178", 3391 | "x":1, 3392 | "y":7, 3393 | "color":"orange", 3394 | "mouseover":"Y" 3395 | }, 3396 | { 3397 | "id":"179", 3398 | "x":1, 3399 | "y":8, 3400 | "color":"green", 3401 | "mouseover":"X" 3402 | }, 3403 | { 3404 | "id":"180", 3405 | "x":1, 3406 | "y":9, 3407 | "color":"green", 3408 | "mouseover":"Z" 3409 | }, 3410 | { 3411 | "id":"181", 3412 | "x":2, 3413 | "y":-9, 3414 | "color":"green", 3415 | "mouseover":"Y" 3416 | }, 3417 | { 3418 | "id":"182", 3419 | "x":2, 3420 | "y":-8, 3421 | "color":"green", 3422 | "mouseover":"Z" 3423 | }, 3424 | { 3425 | "id":"183", 3426 | "x":2, 3427 | "y":-7, 3428 | "color":"green", 3429 | "mouseover":"Y" 3430 | }, 3431 | { 3432 | "id":"184", 3433 | "x":2, 3434 | "y":-6, 3435 | "color":"green", 3436 | "mouseover":"X" 3437 | }, 3438 | { 3439 | "id":"185", 3440 | "x":2, 3441 | "y":-5, 3442 | "color":"green", 3443 | "mouseover":"Z" 3444 | }, 3445 | { 3446 | "id":"186", 3447 | "x":2, 3448 | "y":-4, 3449 | "color":"green", 3450 | "mouseover":"Z" 3451 | }, 3452 | { 3453 | "id":"187", 3454 | "x":2, 3455 | "y":-3, 3456 | "color":"green", 3457 | "mouseover":"Z" 3458 | }, 3459 | { 3460 | "id":"188", 3461 | "x":2, 3462 | "y":-2, 3463 | "color":"green", 3464 | "mouseover":"Y" 3465 | }, 3466 | { 3467 | "id":"189", 3468 | "x":2, 3469 | "y":-1, 3470 | "color":"green", 3471 | "mouseover":"X" 3472 | }, 3473 | { 3474 | "id":"190", 3475 | "x":2, 3476 | "y":0, 3477 | "color":"green", 3478 | "mouseover":"Z" 3479 | }, 3480 | { 3481 | "id":"191", 3482 | "x":2, 3483 | "y":1, 3484 | "color":"green", 3485 | "mouseover":"Y" 3486 | }, 3487 | { 3488 | "id":"192", 3489 | "x":2, 3490 | "y":2, 3491 | "color":"green", 3492 | "mouseover":"Y" 3493 | }, 3494 | { 3495 | "id":"193", 3496 | "x":2, 3497 | "y":3, 3498 | "color":"orange", 3499 | "mouseover":"X" 3500 | }, 3501 | { 3502 | "id":"194", 3503 | "x":2, 3504 | "y":4, 3505 | "color":"orange", 3506 | "mouseover":"Y" 3507 | }, 3508 | { 3509 | "id":"195", 3510 | "x":2, 3511 | "y":5, 3512 | "color":"orange", 3513 | "mouseover":"Y" 3514 | }, 3515 | { 3516 | "id":"196", 3517 | "x":2, 3518 | "y":6, 3519 | "color":"green", 3520 | "mouseover":"Z" 3521 | }, 3522 | { 3523 | "id":"197", 3524 | "x":2, 3525 | "y":7, 3526 | "color":"green", 3527 | "mouseover":"Y" 3528 | }, 3529 | { 3530 | "id":"198", 3531 | "x":2, 3532 | "y":8, 3533 | "color":"green", 3534 | "mouseover":"Y" 3535 | }, 3536 | { 3537 | "id":"199", 3538 | "x":2, 3539 | "y":9, 3540 | "color":"red", 3541 | "mouseover":"Z" 3542 | }, 3543 | { 3544 | "id":"200", 3545 | "x":3, 3546 | "y":-9, 3547 | "color":"orange", 3548 | "mouseover":"Y" 3549 | }, 3550 | { 3551 | "id":"201", 3552 | "x":3, 3553 | "y":-8, 3554 | "color":"green", 3555 | "mouseover":"X" 3556 | }, 3557 | { 3558 | "id":"202", 3559 | "x":3, 3560 | "y":-7, 3561 | "color":"green", 3562 | "mouseover":"Z" 3563 | }, 3564 | { 3565 | "id":"203", 3566 | "x":3, 3567 | "y":-6, 3568 | "color":"green", 3569 | "mouseover":"Y" 3570 | }, 3571 | { 3572 | "id":"204", 3573 | "x":3, 3574 | "y":-5, 3575 | "color":"orange", 3576 | "mouseover":"Y" 3577 | }, 3578 | { 3579 | "id":"205", 3580 | "x":3, 3581 | "y":-4, 3582 | "color":"green", 3583 | "mouseover":"X" 3584 | }, 3585 | { 3586 | "id":"206", 3587 | "x":3, 3588 | "y":-3, 3589 | "color":"green", 3590 | "mouseover":"X" 3591 | }, 3592 | { 3593 | "id":"207", 3594 | "x":3, 3595 | "y":-2, 3596 | "color":"green", 3597 | "mouseover":"Z" 3598 | }, 3599 | { 3600 | "id":"208", 3601 | "x":3, 3602 | "y":-1, 3603 | "color":"green", 3604 | "mouseover":"X" 3605 | }, 3606 | { 3607 | "id":"209", 3608 | "x":3, 3609 | "y":0, 3610 | "color":"green", 3611 | "mouseover":"Z" 3612 | }, 3613 | { 3614 | "id":"210", 3615 | "x":3, 3616 | "y":1, 3617 | "color":"green", 3618 | "mouseover":"Z" 3619 | }, 3620 | { 3621 | "id":"211", 3622 | "x":3, 3623 | "y":2, 3624 | "color":"red", 3625 | "mouseover":"X" 3626 | }, 3627 | { 3628 | "id":"212", 3629 | "x":3, 3630 | "y":3, 3631 | "color":"green", 3632 | "mouseover":"X" 3633 | }, 3634 | { 3635 | "id":"213", 3636 | "x":3, 3637 | "y":4, 3638 | "color":"green", 3639 | "mouseover":"Y" 3640 | }, 3641 | { 3642 | "id":"214", 3643 | "x":3, 3644 | "y":5, 3645 | "color":"orange", 3646 | "mouseover":"X" 3647 | }, 3648 | { 3649 | "id":"215", 3650 | "x":3, 3651 | "y":6, 3652 | "color":"green", 3653 | "mouseover":"Y" 3654 | }, 3655 | { 3656 | "id":"216", 3657 | "x":3, 3658 | "y":7, 3659 | "color":"orange", 3660 | "mouseover":"Y" 3661 | }, 3662 | { 3663 | "id":"217", 3664 | "x":3, 3665 | "y":8, 3666 | "color":"orange", 3667 | "mouseover":"Z" 3668 | }, 3669 | { 3670 | "id":"218", 3671 | "x":3, 3672 | "y":9, 3673 | "color":"orange", 3674 | "mouseover":"X" 3675 | }, 3676 | { 3677 | "id":"219", 3678 | "x":4, 3679 | "y":-9, 3680 | "color":"green", 3681 | "mouseover":"X" 3682 | }, 3683 | { 3684 | "id":"220", 3685 | "x":4, 3686 | "y":-8, 3687 | "color":"green", 3688 | "mouseover":"Z" 3689 | }, 3690 | { 3691 | "id":"221", 3692 | "x":4, 3693 | "y":-7, 3694 | "color":"green", 3695 | "mouseover":"X" 3696 | }, 3697 | { 3698 | "id":"222", 3699 | "x":4, 3700 | "y":-6, 3701 | "color":"green", 3702 | "mouseover":"Z" 3703 | }, 3704 | { 3705 | "id":"223", 3706 | "x":4, 3707 | "y":-5, 3708 | "color":"green", 3709 | "mouseover":"X" 3710 | }, 3711 | { 3712 | "id":"224", 3713 | "x":4, 3714 | "y":-4, 3715 | "color":"green", 3716 | "mouseover":"Z" 3717 | }, 3718 | { 3719 | "id":"225", 3720 | "x":4, 3721 | "y":-3, 3722 | "color":"green", 3723 | "mouseover":"Y" 3724 | }, 3725 | { 3726 | "id":"226", 3727 | "x":4, 3728 | "y":-2, 3729 | "color":"orange", 3730 | "mouseover":"Y" 3731 | }, 3732 | { 3733 | "id":"227", 3734 | "x":4, 3735 | "y":-1, 3736 | "color":"green", 3737 | "mouseover":"Y" 3738 | }, 3739 | { 3740 | "id":"228", 3741 | "x":4, 3742 | "y":0, 3743 | "color":"green", 3744 | "mouseover":"Y" 3745 | }, 3746 | { 3747 | "id":"229", 3748 | "x":4, 3749 | "y":1, 3750 | "color":"green", 3751 | "mouseover":"Y" 3752 | }, 3753 | { 3754 | "id":"230", 3755 | "x":4, 3756 | "y":2, 3757 | "color":"green", 3758 | "mouseover":"Z" 3759 | }, 3760 | { 3761 | "id":"231", 3762 | "x":4, 3763 | "y":3, 3764 | "color":"red", 3765 | "mouseover":"Y" 3766 | }, 3767 | { 3768 | "id":"232", 3769 | "x":4, 3770 | "y":4, 3771 | "color":"green", 3772 | "mouseover":"Y" 3773 | }, 3774 | { 3775 | "id":"233", 3776 | "x":4, 3777 | "y":5, 3778 | "color":"green", 3779 | "mouseover":"Z" 3780 | }, 3781 | { 3782 | "id":"234", 3783 | "x":4, 3784 | "y":6, 3785 | "color":"green", 3786 | "mouseover":"Z" 3787 | }, 3788 | { 3789 | "id":"235", 3790 | "x":4, 3791 | "y":7, 3792 | "color":"green", 3793 | "mouseover":"Y" 3794 | }, 3795 | { 3796 | "id":"236", 3797 | "x":4, 3798 | "y":8, 3799 | "color":"green", 3800 | "mouseover":"Z" 3801 | }, 3802 | { 3803 | "id":"237", 3804 | "x":4, 3805 | "y":9, 3806 | "color":"orange", 3807 | "mouseover":"X" 3808 | }, 3809 | { 3810 | "id":"238", 3811 | "x":5, 3812 | "y":-8, 3813 | "color":"green", 3814 | "mouseover":"Y" 3815 | }, 3816 | { 3817 | "id":"239", 3818 | "x":5, 3819 | "y":-7, 3820 | "color":"green", 3821 | "mouseover":"X" 3822 | }, 3823 | { 3824 | "id":"240", 3825 | "x":5, 3826 | "y":-6, 3827 | "color":"red", 3828 | "mouseover":"Y" 3829 | }, 3830 | { 3831 | "id":"241", 3832 | "x":5, 3833 | "y":-5, 3834 | "color":"green", 3835 | "mouseover":"Y" 3836 | }, 3837 | { 3838 | "id":"242", 3839 | "x":5, 3840 | "y":-4, 3841 | "color":"green", 3842 | "mouseover":"X" 3843 | }, 3844 | { 3845 | "id":"243", 3846 | "x":5, 3847 | "y":-3, 3848 | "color":"green", 3849 | "mouseover":"Y" 3850 | }, 3851 | { 3852 | "id":"244", 3853 | "x":5, 3854 | "y":-2, 3855 | "color":"green", 3856 | "mouseover":"X" 3857 | }, 3858 | { 3859 | "id":"245", 3860 | "x":5, 3861 | "y":-1, 3862 | "color":"green", 3863 | "mouseover":"Y" 3864 | }, 3865 | { 3866 | "id":"246", 3867 | "x":5, 3868 | "y":0, 3869 | "color":"green", 3870 | "mouseover":"Y" 3871 | }, 3872 | { 3873 | "id":"247", 3874 | "x":5, 3875 | "y":1, 3876 | "color":"red", 3877 | "mouseover":"Z" 3878 | }, 3879 | { 3880 | "id":"248", 3881 | "x":5, 3882 | "y":2, 3883 | "color":"green", 3884 | "mouseover":"Z" 3885 | }, 3886 | { 3887 | "id":"249", 3888 | "x":5, 3889 | "y":3, 3890 | "color":"green", 3891 | "mouseover":"Z" 3892 | }, 3893 | { 3894 | "id":"250", 3895 | "x":5, 3896 | "y":4, 3897 | "color":"orange", 3898 | "mouseover":"Z" 3899 | }, 3900 | { 3901 | "id":"251", 3902 | "x":5, 3903 | "y":5, 3904 | "color":"green", 3905 | "mouseover":"Z" 3906 | }, 3907 | { 3908 | "id":"252", 3909 | "x":5, 3910 | "y":6, 3911 | "color":"orange", 3912 | "mouseover":"X" 3913 | }, 3914 | { 3915 | "id":"253", 3916 | "x":5, 3917 | "y":7, 3918 | "color":"red", 3919 | "mouseover":"Y" 3920 | }, 3921 | { 3922 | "id":"254", 3923 | "x":5, 3924 | "y":8, 3925 | "color":"green", 3926 | "mouseover":"Z" 3927 | }, 3928 | { 3929 | "id":"255", 3930 | "x":6, 3931 | "y":-7, 3932 | "color":"green", 3933 | "mouseover":"Y" 3934 | }, 3935 | { 3936 | "id":"256", 3937 | "x":6, 3938 | "y":-6, 3939 | "color":"red", 3940 | "mouseover":"X" 3941 | }, 3942 | { 3943 | "id":"257", 3944 | "x":6, 3945 | "y":-5, 3946 | "color":"red", 3947 | "mouseover":"Z" 3948 | }, 3949 | { 3950 | "id":"258", 3951 | "x":6, 3952 | "y":-4, 3953 | "color":"green", 3954 | "mouseover":"X" 3955 | }, 3956 | { 3957 | "id":"259", 3958 | "x":6, 3959 | "y":-3, 3960 | "color":"green", 3961 | "mouseover":"Z" 3962 | }, 3963 | { 3964 | "id":"260", 3965 | "x":6, 3966 | "y":-2, 3967 | "color":"green", 3968 | "mouseover":"Z" 3969 | }, 3970 | { 3971 | "id":"261", 3972 | "x":6, 3973 | "y":-1, 3974 | "color":"green", 3975 | "mouseover":"Z" 3976 | }, 3977 | { 3978 | "id":"262", 3979 | "x":6, 3980 | "y":0, 3981 | "color":"orange", 3982 | "mouseover":"Z" 3983 | }, 3984 | { 3985 | "id":"263", 3986 | "x":6, 3987 | "y":1, 3988 | "color":"orange", 3989 | "mouseover":"X" 3990 | }, 3991 | { 3992 | "id":"264", 3993 | "x":6, 3994 | "y":2, 3995 | "color":"green", 3996 | "mouseover":"X" 3997 | }, 3998 | { 3999 | "id":"265", 4000 | "x":6, 4001 | "y":3, 4002 | "color":"red", 4003 | "mouseover":"X" 4004 | }, 4005 | { 4006 | "id":"266", 4007 | "x":6, 4008 | "y":4, 4009 | "color":"red", 4010 | "mouseover":"Z" 4011 | }, 4012 | { 4013 | "id":"267", 4014 | "x":6, 4015 | "y":5, 4016 | "color":"green", 4017 | "mouseover":"Y" 4018 | }, 4019 | { 4020 | "id":"268", 4021 | "x":6, 4022 | "y":6, 4023 | "color":"green", 4024 | "mouseover":"Z" 4025 | }, 4026 | { 4027 | "id":"269", 4028 | "x":6, 4029 | "y":7, 4030 | "color":"green", 4031 | "mouseover":"Y" 4032 | }, 4033 | { 4034 | "id":"270", 4035 | "x":7, 4036 | "y":-7, 4037 | "color":"green", 4038 | "mouseover":"Y" 4039 | }, 4040 | { 4041 | "id":"271", 4042 | "x":7, 4043 | "y":-6, 4044 | "color":"green", 4045 | "mouseover":"Y" 4046 | }, 4047 | { 4048 | "id":"272", 4049 | "x":7, 4050 | "y":-5, 4051 | "color":"green", 4052 | "mouseover":"Y" 4053 | }, 4054 | { 4055 | "id":"273", 4056 | "x":7, 4057 | "y":-4, 4058 | "color":"green", 4059 | "mouseover":"Y" 4060 | }, 4061 | { 4062 | "id":"274", 4063 | "x":7, 4064 | "y":-3, 4065 | "color":"green", 4066 | "mouseover":"X" 4067 | }, 4068 | { 4069 | "id":"275", 4070 | "x":7, 4071 | "y":-2, 4072 | "color":"green", 4073 | "mouseover":"Z" 4074 | }, 4075 | { 4076 | "id":"276", 4077 | "x":7, 4078 | "y":-1, 4079 | "color":"green", 4080 | "mouseover":"Y" 4081 | }, 4082 | { 4083 | "id":"277", 4084 | "x":7, 4085 | "y":0, 4086 | "color":"green", 4087 | "mouseover":"X" 4088 | }, 4089 | { 4090 | "id":"278", 4091 | "x":7, 4092 | "y":1, 4093 | "color":"green", 4094 | "mouseover":"Z" 4095 | }, 4096 | { 4097 | "id":"279", 4098 | "x":7, 4099 | "y":2, 4100 | "color":"green", 4101 | "mouseover":"Y" 4102 | }, 4103 | { 4104 | "id":"280", 4105 | "x":7, 4106 | "y":3, 4107 | "color":"green", 4108 | "mouseover":"Z" 4109 | }, 4110 | { 4111 | "id":"281", 4112 | "x":7, 4113 | "y":4, 4114 | "color":"red", 4115 | "mouseover":"Y" 4116 | }, 4117 | { 4118 | "id":"282", 4119 | "x":7, 4120 | "y":5, 4121 | "color":"green", 4122 | "mouseover":"Y" 4123 | }, 4124 | { 4125 | "id":"283", 4126 | "x":7, 4127 | "y":6, 4128 | "color":"green", 4129 | "mouseover":"Y" 4130 | }, 4131 | { 4132 | "id":"284", 4133 | "x":7, 4134 | "y":7, 4135 | "color":"red", 4136 | "mouseover":"X" 4137 | }, 4138 | { 4139 | "id":"285", 4140 | "x":8, 4141 | "y":-5, 4142 | "color":"green", 4143 | "mouseover":"Y" 4144 | }, 4145 | { 4146 | "id":"286", 4147 | "x":8, 4148 | "y":-4, 4149 | "color":"green", 4150 | "mouseover":"Z" 4151 | }, 4152 | { 4153 | "id":"287", 4154 | "x":8, 4155 | "y":-3, 4156 | "color":"green", 4157 | "mouseover":"Y" 4158 | }, 4159 | { 4160 | "id":"288", 4161 | "x":8, 4162 | "y":-2, 4163 | "color":"green", 4164 | "mouseover":"X" 4165 | }, 4166 | { 4167 | "id":"289", 4168 | "x":8, 4169 | "y":-1, 4170 | "color":"green", 4171 | "mouseover":"Y" 4172 | }, 4173 | { 4174 | "id":"290", 4175 | "x":8, 4176 | "y":0, 4177 | "color":"orange", 4178 | "mouseover":"X" 4179 | }, 4180 | { 4181 | "id":"291", 4182 | "x":8, 4183 | "y":1, 4184 | "color":"green", 4185 | "mouseover":"Z" 4186 | }, 4187 | { 4188 | "id":"292", 4189 | "x":8, 4190 | "y":2, 4191 | "color":"green", 4192 | "mouseover":"Y" 4193 | }, 4194 | { 4195 | "id":"293", 4196 | "x":8, 4197 | "y":3, 4198 | "color":"orange", 4199 | "mouseover":"X" 4200 | }, 4201 | { 4202 | "id":"294", 4203 | "x":8, 4204 | "y":4, 4205 | "color":"green", 4206 | "mouseover":"X" 4207 | }, 4208 | { 4209 | "id":"295", 4210 | "x":8, 4211 | "y":5, 4212 | "color":"green", 4213 | "mouseover":"Y" 4214 | }, 4215 | { 4216 | "id":"296", 4217 | "x":9, 4218 | "y":-4, 4219 | "color":"green", 4220 | "mouseover":"Z" 4221 | }, 4222 | { 4223 | "id":"297", 4224 | "x":9, 4225 | "y":-3, 4226 | "color":"green", 4227 | "mouseover":"X" 4228 | }, 4229 | { 4230 | "id":"298", 4231 | "x":9, 4232 | "y":-2, 4233 | "color":"red", 4234 | "mouseover":"X" 4235 | }, 4236 | { 4237 | "id":"299", 4238 | "x":9, 4239 | "y":-1, 4240 | "color":"green", 4241 | "mouseover":"Y" 4242 | }, 4243 | { 4244 | "id":"300", 4245 | "x":9, 4246 | "y":0, 4247 | "color":"green", 4248 | "mouseover":"Y" 4249 | }, 4250 | { 4251 | "id":"301", 4252 | "x":9, 4253 | "y":1, 4254 | "color":"red", 4255 | "mouseover":"X" 4256 | }, 4257 | { 4258 | "id":"302", 4259 | "x":9, 4260 | "y":2, 4261 | "color":"green", 4262 | "mouseover":"Y" 4263 | }, 4264 | { 4265 | "id":"303", 4266 | "x":9, 4267 | "y":3, 4268 | "color":"green", 4269 | "mouseover":"X" 4270 | }, 4271 | { 4272 | "id":"304", 4273 | "x":9, 4274 | "y":4, 4275 | "color":"green", 4276 | "mouseover":"X" 4277 | } 4278 | ] 4279 | }, 4280 | { 4281 | "points":[ 4282 | { 4283 | "id":"000", 4284 | "x":-9, 4285 | "y":-4, 4286 | "color":"green", 4287 | "mouseover":"Y" 4288 | }, 4289 | { 4290 | "id":"001", 4291 | "x":-9, 4292 | "y":-3, 4293 | "color":"green", 4294 | "mouseover":"Y" 4295 | }, 4296 | { 4297 | "id":"002", 4298 | "x":-9, 4299 | "y":-2, 4300 | "color":"green", 4301 | "mouseover":"Y" 4302 | }, 4303 | { 4304 | "id":"003", 4305 | "x":-9, 4306 | "y":-1, 4307 | "color":"green", 4308 | "mouseover":"Y" 4309 | }, 4310 | { 4311 | "id":"004", 4312 | "x":-9, 4313 | "y":0, 4314 | "color":"green", 4315 | "mouseover":"Y" 4316 | }, 4317 | { 4318 | "id":"005", 4319 | "x":-9, 4320 | "y":1, 4321 | "color":"green", 4322 | "mouseover":"Z" 4323 | }, 4324 | { 4325 | "id":"006", 4326 | "x":-9, 4327 | "y":2, 4328 | "color":"green", 4329 | "mouseover":"Z" 4330 | }, 4331 | { 4332 | "id":"007", 4333 | "x":-9, 4334 | "y":3, 4335 | "color":"orange", 4336 | "mouseover":"Y" 4337 | }, 4338 | { 4339 | "id":"008", 4340 | "x":-9, 4341 | "y":4, 4342 | "color":"green", 4343 | "mouseover":"X" 4344 | }, 4345 | { 4346 | "id":"009", 4347 | "x":-8, 4348 | "y":-5, 4349 | "color":"green", 4350 | "mouseover":"Z" 4351 | }, 4352 | { 4353 | "id":"010", 4354 | "x":-8, 4355 | "y":-4, 4356 | "color":"green", 4357 | "mouseover":"Z" 4358 | }, 4359 | { 4360 | "id":"011", 4361 | "x":-8, 4362 | "y":-3, 4363 | "color":"red", 4364 | "mouseover":"Z" 4365 | }, 4366 | { 4367 | "id":"012", 4368 | "x":-8, 4369 | "y":-2, 4370 | "color":"green", 4371 | "mouseover":"X" 4372 | }, 4373 | { 4374 | "id":"013", 4375 | "x":-8, 4376 | "y":-1, 4377 | "color":"green", 4378 | "mouseover":"X" 4379 | }, 4380 | { 4381 | "id":"014", 4382 | "x":-8, 4383 | "y":0, 4384 | "color":"green", 4385 | "mouseover":"Z" 4386 | }, 4387 | { 4388 | "id":"015", 4389 | "x":-8, 4390 | "y":1, 4391 | "color":"green", 4392 | "mouseover":"Z" 4393 | }, 4394 | { 4395 | "id":"016", 4396 | "x":-8, 4397 | "y":2, 4398 | "color":"green", 4399 | "mouseover":"Y" 4400 | }, 4401 | { 4402 | "id":"017", 4403 | "x":-8, 4404 | "y":3, 4405 | "color":"green", 4406 | "mouseover":"Y" 4407 | }, 4408 | { 4409 | "id":"018", 4410 | "x":-8, 4411 | "y":4, 4412 | "color":"green", 4413 | "mouseover":"Y" 4414 | }, 4415 | { 4416 | "id":"019", 4417 | "x":-8, 4418 | "y":5, 4419 | "color":"orange", 4420 | "mouseover":"X" 4421 | }, 4422 | { 4423 | "id":"020", 4424 | "x":-7, 4425 | "y":-7, 4426 | "color":"green", 4427 | "mouseover":"Y" 4428 | }, 4429 | { 4430 | "id":"021", 4431 | "x":-7, 4432 | "y":-6, 4433 | "color":"green", 4434 | "mouseover":"Y" 4435 | }, 4436 | { 4437 | "id":"022", 4438 | "x":-7, 4439 | "y":-5, 4440 | "color":"green", 4441 | "mouseover":"Z" 4442 | }, 4443 | { 4444 | "id":"023", 4445 | "x":-7, 4446 | "y":-4, 4447 | "color":"red", 4448 | "mouseover":"X" 4449 | }, 4450 | { 4451 | "id":"024", 4452 | "x":-7, 4453 | "y":-3, 4454 | "color":"green", 4455 | "mouseover":"Z" 4456 | }, 4457 | { 4458 | "id":"025", 4459 | "x":-7, 4460 | "y":-2, 4461 | "color":"green", 4462 | "mouseover":"X" 4463 | }, 4464 | { 4465 | "id":"026", 4466 | "x":-7, 4467 | "y":-1, 4468 | "color":"green", 4469 | "mouseover":"Y" 4470 | }, 4471 | { 4472 | "id":"027", 4473 | "x":-7, 4474 | "y":0, 4475 | "color":"green", 4476 | "mouseover":"Y" 4477 | }, 4478 | { 4479 | "id":"028", 4480 | "x":-7, 4481 | "y":1, 4482 | "color":"green", 4483 | "mouseover":"Z" 4484 | }, 4485 | { 4486 | "id":"029", 4487 | "x":-7, 4488 | "y":2, 4489 | "color":"green", 4490 | "mouseover":"Y" 4491 | }, 4492 | { 4493 | "id":"030", 4494 | "x":-7, 4495 | "y":3, 4496 | "color":"green", 4497 | "mouseover":"Z" 4498 | }, 4499 | { 4500 | "id":"031", 4501 | "x":-7, 4502 | "y":4, 4503 | "color":"green", 4504 | "mouseover":"Z" 4505 | }, 4506 | { 4507 | "id":"032", 4508 | "x":-7, 4509 | "y":5, 4510 | "color":"green", 4511 | "mouseover":"X" 4512 | }, 4513 | { 4514 | "id":"033", 4515 | "x":-7, 4516 | "y":6, 4517 | "color":"green", 4518 | "mouseover":"X" 4519 | }, 4520 | { 4521 | "id":"034", 4522 | "x":-7, 4523 | "y":7, 4524 | "color":"green", 4525 | "mouseover":"Z" 4526 | }, 4527 | { 4528 | "id":"035", 4529 | "x":-6, 4530 | "y":-7, 4531 | "color":"green", 4532 | "mouseover":"Y" 4533 | }, 4534 | { 4535 | "id":"036", 4536 | "x":-6, 4537 | "y":-6, 4538 | "color":"orange", 4539 | "mouseover":"Y" 4540 | }, 4541 | { 4542 | "id":"037", 4543 | "x":-6, 4544 | "y":-5, 4545 | "color":"green", 4546 | "mouseover":"X" 4547 | }, 4548 | { 4549 | "id":"038", 4550 | "x":-6, 4551 | "y":-4, 4552 | "color":"green", 4553 | "mouseover":"Y" 4554 | }, 4555 | { 4556 | "id":"039", 4557 | "x":-6, 4558 | "y":-3, 4559 | "color":"green", 4560 | "mouseover":"X" 4561 | }, 4562 | { 4563 | "id":"040", 4564 | "x":-6, 4565 | "y":-2, 4566 | "color":"green", 4567 | "mouseover":"X" 4568 | }, 4569 | { 4570 | "id":"041", 4571 | "x":-6, 4572 | "y":-1, 4573 | "color":"red", 4574 | "mouseover":"Y" 4575 | }, 4576 | { 4577 | "id":"042", 4578 | "x":-6, 4579 | "y":0, 4580 | "color":"green", 4581 | "mouseover":"Z" 4582 | }, 4583 | { 4584 | "id":"043", 4585 | "x":-6, 4586 | "y":1, 4587 | "color":"green", 4588 | "mouseover":"Y" 4589 | }, 4590 | { 4591 | "id":"044", 4592 | "x":-6, 4593 | "y":2, 4594 | "color":"green", 4595 | "mouseover":"Z" 4596 | }, 4597 | { 4598 | "id":"045", 4599 | "x":-6, 4600 | "y":3, 4601 | "color":"green", 4602 | "mouseover":"X" 4603 | }, 4604 | { 4605 | "id":"046", 4606 | "x":-6, 4607 | "y":4, 4608 | "color":"green", 4609 | "mouseover":"Y" 4610 | }, 4611 | { 4612 | "id":"047", 4613 | "x":-6, 4614 | "y":5, 4615 | "color":"green", 4616 | "mouseover":"Y" 4617 | }, 4618 | { 4619 | "id":"048", 4620 | "x":-6, 4621 | "y":6, 4622 | "color":"green", 4623 | "mouseover":"Z" 4624 | }, 4625 | { 4626 | "id":"049", 4627 | "x":-6, 4628 | "y":7, 4629 | "color":"green", 4630 | "mouseover":"Z" 4631 | }, 4632 | { 4633 | "id":"050", 4634 | "x":-5, 4635 | "y":-8, 4636 | "color":"green", 4637 | "mouseover":"Y" 4638 | }, 4639 | { 4640 | "id":"051", 4641 | "x":-5, 4642 | "y":-7, 4643 | "color":"green", 4644 | "mouseover":"X" 4645 | }, 4646 | { 4647 | "id":"052", 4648 | "x":-5, 4649 | "y":-6, 4650 | "color":"green", 4651 | "mouseover":"X" 4652 | }, 4653 | { 4654 | "id":"053", 4655 | "x":-5, 4656 | "y":-5, 4657 | "color":"green", 4658 | "mouseover":"Z" 4659 | }, 4660 | { 4661 | "id":"054", 4662 | "x":-5, 4663 | "y":-4, 4664 | "color":"green", 4665 | "mouseover":"X" 4666 | }, 4667 | { 4668 | "id":"055", 4669 | "x":-5, 4670 | "y":-3, 4671 | "color":"orange", 4672 | "mouseover":"Z" 4673 | }, 4674 | { 4675 | "id":"056", 4676 | "x":-5, 4677 | "y":-2, 4678 | "color":"green", 4679 | "mouseover":"Z" 4680 | }, 4681 | { 4682 | "id":"057", 4683 | "x":-5, 4684 | "y":-1, 4685 | "color":"green", 4686 | "mouseover":"Y" 4687 | }, 4688 | { 4689 | "id":"058", 4690 | "x":-5, 4691 | "y":0, 4692 | "color":"green", 4693 | "mouseover":"Z" 4694 | }, 4695 | { 4696 | "id":"059", 4697 | "x":-5, 4698 | "y":1, 4699 | "color":"orange", 4700 | "mouseover":"X" 4701 | }, 4702 | { 4703 | "id":"060", 4704 | "x":-5, 4705 | "y":2, 4706 | "color":"green", 4707 | "mouseover":"Y" 4708 | }, 4709 | { 4710 | "id":"061", 4711 | "x":-5, 4712 | "y":3, 4713 | "color":"green", 4714 | "mouseover":"X" 4715 | }, 4716 | { 4717 | "id":"062", 4718 | "x":-5, 4719 | "y":4, 4720 | "color":"orange", 4721 | "mouseover":"Y" 4722 | }, 4723 | { 4724 | "id":"063", 4725 | "x":-5, 4726 | "y":5, 4727 | "color":"green", 4728 | "mouseover":"X" 4729 | }, 4730 | { 4731 | "id":"064", 4732 | "x":-5, 4733 | "y":6, 4734 | "color":"orange", 4735 | "mouseover":"Y" 4736 | }, 4737 | { 4738 | "id":"065", 4739 | "x":-5, 4740 | "y":7, 4741 | "color":"green", 4742 | "mouseover":"X" 4743 | }, 4744 | { 4745 | "id":"066", 4746 | "x":-5, 4747 | "y":8, 4748 | "color":"green", 4749 | "mouseover":"Y" 4750 | }, 4751 | { 4752 | "id":"067", 4753 | "x":-4, 4754 | "y":-9, 4755 | "color":"green", 4756 | "mouseover":"Y" 4757 | }, 4758 | { 4759 | "id":"068", 4760 | "x":-4, 4761 | "y":-8, 4762 | "color":"green", 4763 | "mouseover":"Y" 4764 | }, 4765 | { 4766 | "id":"069", 4767 | "x":-4, 4768 | "y":-7, 4769 | "color":"green", 4770 | "mouseover":"Z" 4771 | }, 4772 | { 4773 | "id":"070", 4774 | "x":-4, 4775 | "y":-6, 4776 | "color":"green", 4777 | "mouseover":"Z" 4778 | }, 4779 | { 4780 | "id":"071", 4781 | "x":-4, 4782 | "y":-5, 4783 | "color":"green", 4784 | "mouseover":"Z" 4785 | }, 4786 | { 4787 | "id":"072", 4788 | "x":-4, 4789 | "y":-4, 4790 | "color":"green", 4791 | "mouseover":"Z" 4792 | }, 4793 | { 4794 | "id":"073", 4795 | "x":-4, 4796 | "y":-3, 4797 | "color":"green", 4798 | "mouseover":"Y" 4799 | }, 4800 | { 4801 | "id":"074", 4802 | "x":-4, 4803 | "y":-2, 4804 | "color":"green", 4805 | "mouseover":"Y" 4806 | }, 4807 | { 4808 | "id":"075", 4809 | "x":-4, 4810 | "y":-1, 4811 | "color":"orange", 4812 | "mouseover":"Z" 4813 | }, 4814 | { 4815 | "id":"076", 4816 | "x":-4, 4817 | "y":0, 4818 | "color":"green", 4819 | "mouseover":"X" 4820 | }, 4821 | { 4822 | "id":"077", 4823 | "x":-4, 4824 | "y":1, 4825 | "color":"green", 4826 | "mouseover":"Z" 4827 | }, 4828 | { 4829 | "id":"078", 4830 | "x":-4, 4831 | "y":2, 4832 | "color":"green", 4833 | "mouseover":"Z" 4834 | }, 4835 | { 4836 | "id":"079", 4837 | "x":-4, 4838 | "y":3, 4839 | "color":"green", 4840 | "mouseover":"Y" 4841 | }, 4842 | { 4843 | "id":"080", 4844 | "x":-4, 4845 | "y":4, 4846 | "color":"green", 4847 | "mouseover":"Y" 4848 | }, 4849 | { 4850 | "id":"081", 4851 | "x":-4, 4852 | "y":5, 4853 | "color":"green", 4854 | "mouseover":"X" 4855 | }, 4856 | { 4857 | "id":"082", 4858 | "x":-4, 4859 | "y":6, 4860 | "color":"green", 4861 | "mouseover":"Y" 4862 | }, 4863 | { 4864 | "id":"083", 4865 | "x":-4, 4866 | "y":7, 4867 | "color":"green", 4868 | "mouseover":"X" 4869 | }, 4870 | { 4871 | "id":"084", 4872 | "x":-4, 4873 | "y":8, 4874 | "color":"green", 4875 | "mouseover":"Z" 4876 | }, 4877 | { 4878 | "id":"085", 4879 | "x":-4, 4880 | "y":9, 4881 | "color":"orange", 4882 | "mouseover":"Y" 4883 | }, 4884 | { 4885 | "id":"086", 4886 | "x":-3, 4887 | "y":-9, 4888 | "color":"green", 4889 | "mouseover":"Z" 4890 | }, 4891 | { 4892 | "id":"087", 4893 | "x":-3, 4894 | "y":-8, 4895 | "color":"orange", 4896 | "mouseover":"X" 4897 | }, 4898 | { 4899 | "id":"088", 4900 | "x":-3, 4901 | "y":-7, 4902 | "color":"green", 4903 | "mouseover":"X" 4904 | }, 4905 | { 4906 | "id":"089", 4907 | "x":-3, 4908 | "y":-6, 4909 | "color":"green", 4910 | "mouseover":"Y" 4911 | }, 4912 | { 4913 | "id":"090", 4914 | "x":-3, 4915 | "y":-5, 4916 | "color":"green", 4917 | "mouseover":"Y" 4918 | }, 4919 | { 4920 | "id":"091", 4921 | "x":-3, 4922 | "y":-4, 4923 | "color":"green", 4924 | "mouseover":"X" 4925 | }, 4926 | { 4927 | "id":"092", 4928 | "x":-3, 4929 | "y":-3, 4930 | "color":"green", 4931 | "mouseover":"X" 4932 | }, 4933 | { 4934 | "id":"093", 4935 | "x":-3, 4936 | "y":-2, 4937 | "color":"green", 4938 | "mouseover":"Y" 4939 | }, 4940 | { 4941 | "id":"094", 4942 | "x":-3, 4943 | "y":-1, 4944 | "color":"orange", 4945 | "mouseover":"X" 4946 | }, 4947 | { 4948 | "id":"095", 4949 | "x":-3, 4950 | "y":0, 4951 | "color":"orange", 4952 | "mouseover":"Z" 4953 | }, 4954 | { 4955 | "id":"096", 4956 | "x":-3, 4957 | "y":1, 4958 | "color":"green", 4959 | "mouseover":"X" 4960 | }, 4961 | { 4962 | "id":"097", 4963 | "x":-3, 4964 | "y":2, 4965 | "color":"green", 4966 | "mouseover":"Y" 4967 | }, 4968 | { 4969 | "id":"098", 4970 | "x":-3, 4971 | "y":3, 4972 | "color":"green", 4973 | "mouseover":"Y" 4974 | }, 4975 | { 4976 | "id":"099", 4977 | "x":-3, 4978 | "y":4, 4979 | "color":"green", 4980 | "mouseover":"Z" 4981 | }, 4982 | { 4983 | "id":"100", 4984 | "x":-3, 4985 | "y":5, 4986 | "color":"green", 4987 | "mouseover":"Z" 4988 | }, 4989 | { 4990 | "id":"101", 4991 | "x":-3, 4992 | "y":6, 4993 | "color":"orange", 4994 | "mouseover":"Z" 4995 | }, 4996 | { 4997 | "id":"102", 4998 | "x":-3, 4999 | "y":7, 5000 | "color":"green", 5001 | "mouseover":"Y" 5002 | }, 5003 | { 5004 | "id":"103", 5005 | "x":-3, 5006 | "y":8, 5007 | "color":"green", 5008 | "mouseover":"Y" 5009 | }, 5010 | { 5011 | "id":"104", 5012 | "x":-3, 5013 | "y":9, 5014 | "color":"green", 5015 | "mouseover":"Y" 5016 | }, 5017 | { 5018 | "id":"105", 5019 | "x":-2, 5020 | "y":-9, 5021 | "color":"green", 5022 | "mouseover":"Y" 5023 | }, 5024 | { 5025 | "id":"106", 5026 | "x":-2, 5027 | "y":-8, 5028 | "color":"green", 5029 | "mouseover":"X" 5030 | }, 5031 | { 5032 | "id":"107", 5033 | "x":-2, 5034 | "y":-7, 5035 | "color":"green", 5036 | "mouseover":"Z" 5037 | }, 5038 | { 5039 | "id":"108", 5040 | "x":-2, 5041 | "y":-6, 5042 | "color":"green", 5043 | "mouseover":"Z" 5044 | }, 5045 | { 5046 | "id":"109", 5047 | "x":-2, 5048 | "y":-5, 5049 | "color":"green", 5050 | "mouseover":"Y" 5051 | }, 5052 | { 5053 | "id":"110", 5054 | "x":-2, 5055 | "y":-4, 5056 | "color":"green", 5057 | "mouseover":"Y" 5058 | }, 5059 | { 5060 | "id":"111", 5061 | "x":-2, 5062 | "y":-3, 5063 | "color":"red", 5064 | "mouseover":"X" 5065 | }, 5066 | { 5067 | "id":"112", 5068 | "x":-2, 5069 | "y":-2, 5070 | "color":"green", 5071 | "mouseover":"Y" 5072 | }, 5073 | { 5074 | "id":"113", 5075 | "x":-2, 5076 | "y":-1, 5077 | "color":"green", 5078 | "mouseover":"Y" 5079 | }, 5080 | { 5081 | "id":"114", 5082 | "x":-2, 5083 | "y":0, 5084 | "color":"red", 5085 | "mouseover":"X" 5086 | }, 5087 | { 5088 | "id":"115", 5089 | "x":-2, 5090 | "y":1, 5091 | "color":"red", 5092 | "mouseover":"Y" 5093 | }, 5094 | { 5095 | "id":"116", 5096 | "x":-2, 5097 | "y":2, 5098 | "color":"orange", 5099 | "mouseover":"X" 5100 | }, 5101 | { 5102 | "id":"117", 5103 | "x":-2, 5104 | "y":3, 5105 | "color":"orange", 5106 | "mouseover":"X" 5107 | }, 5108 | { 5109 | "id":"118", 5110 | "x":-2, 5111 | "y":4, 5112 | "color":"green", 5113 | "mouseover":"Z" 5114 | }, 5115 | { 5116 | "id":"119", 5117 | "x":-2, 5118 | "y":5, 5119 | "color":"green", 5120 | "mouseover":"Y" 5121 | }, 5122 | { 5123 | "id":"120", 5124 | "x":-2, 5125 | "y":6, 5126 | "color":"green", 5127 | "mouseover":"Z" 5128 | }, 5129 | { 5130 | "id":"121", 5131 | "x":-2, 5132 | "y":7, 5133 | "color":"red", 5134 | "mouseover":"X" 5135 | }, 5136 | { 5137 | "id":"122", 5138 | "x":-2, 5139 | "y":8, 5140 | "color":"green", 5141 | "mouseover":"X" 5142 | }, 5143 | { 5144 | "id":"123", 5145 | "x":-2, 5146 | "y":9, 5147 | "color":"orange", 5148 | "mouseover":"X" 5149 | }, 5150 | { 5151 | "id":"124", 5152 | "x":-1, 5153 | "y":-9, 5154 | "color":"green", 5155 | "mouseover":"Z" 5156 | }, 5157 | { 5158 | "id":"125", 5159 | "x":-1, 5160 | "y":-8, 5161 | "color":"green", 5162 | "mouseover":"Z" 5163 | }, 5164 | { 5165 | "id":"126", 5166 | "x":-1, 5167 | "y":-7, 5168 | "color":"green", 5169 | "mouseover":"Y" 5170 | }, 5171 | { 5172 | "id":"127", 5173 | "x":-1, 5174 | "y":-6, 5175 | "color":"red", 5176 | "mouseover":"Z" 5177 | }, 5178 | { 5179 | "id":"128", 5180 | "x":-1, 5181 | "y":-5, 5182 | "color":"orange", 5183 | "mouseover":"Z" 5184 | }, 5185 | { 5186 | "id":"129", 5187 | "x":-1, 5188 | "y":-4, 5189 | "color":"green", 5190 | "mouseover":"X" 5191 | }, 5192 | { 5193 | "id":"130", 5194 | "x":-1, 5195 | "y":-3, 5196 | "color":"green", 5197 | "mouseover":"X" 5198 | }, 5199 | { 5200 | "id":"131", 5201 | "x":-1, 5202 | "y":-2, 5203 | "color":"green", 5204 | "mouseover":"Z" 5205 | }, 5206 | { 5207 | "id":"132", 5208 | "x":-1, 5209 | "y":-1, 5210 | "color":"green", 5211 | "mouseover":"X" 5212 | }, 5213 | { 5214 | "id":"133", 5215 | "x":-1, 5216 | "y":0, 5217 | "color":"orange", 5218 | "mouseover":"Z" 5219 | }, 5220 | { 5221 | "id":"134", 5222 | "x":-1, 5223 | "y":1, 5224 | "color":"red", 5225 | "mouseover":"X" 5226 | }, 5227 | { 5228 | "id":"135", 5229 | "x":-1, 5230 | "y":2, 5231 | "color":"red", 5232 | "mouseover":"Y" 5233 | }, 5234 | { 5235 | "id":"136", 5236 | "x":-1, 5237 | "y":3, 5238 | "color":"green", 5239 | "mouseover":"X" 5240 | }, 5241 | { 5242 | "id":"137", 5243 | "x":-1, 5244 | "y":4, 5245 | "color":"green", 5246 | "mouseover":"Z" 5247 | }, 5248 | { 5249 | "id":"138", 5250 | "x":-1, 5251 | "y":5, 5252 | "color":"green", 5253 | "mouseover":"Y" 5254 | }, 5255 | { 5256 | "id":"139", 5257 | "x":-1, 5258 | "y":6, 5259 | "color":"red", 5260 | "mouseover":"X" 5261 | }, 5262 | { 5263 | "id":"140", 5264 | "x":-1, 5265 | "y":7, 5266 | "color":"green", 5267 | "mouseover":"X" 5268 | }, 5269 | { 5270 | "id":"141", 5271 | "x":-1, 5272 | "y":8, 5273 | "color":"red", 5274 | "mouseover":"Z" 5275 | }, 5276 | { 5277 | "id":"142", 5278 | "x":-1, 5279 | "y":9, 5280 | "color":"orange", 5281 | "mouseover":"Y" 5282 | }, 5283 | { 5284 | "id":"143", 5285 | "x":0, 5286 | "y":-9, 5287 | "color":"orange", 5288 | "mouseover":"Y" 5289 | }, 5290 | { 5291 | "id":"144", 5292 | "x":0, 5293 | "y":-8, 5294 | "color":"green", 5295 | "mouseover":"Z" 5296 | }, 5297 | { 5298 | "id":"145", 5299 | "x":0, 5300 | "y":-7, 5301 | "color":"green", 5302 | "mouseover":"Y" 5303 | }, 5304 | { 5305 | "id":"146", 5306 | "x":0, 5307 | "y":-6, 5308 | "color":"orange", 5309 | "mouseover":"Y" 5310 | }, 5311 | { 5312 | "id":"147", 5313 | "x":0, 5314 | "y":-5, 5315 | "color":"green", 5316 | "mouseover":"X" 5317 | }, 5318 | { 5319 | "id":"148", 5320 | "x":0, 5321 | "y":-4, 5322 | "color":"green", 5323 | "mouseover":"Z" 5324 | }, 5325 | { 5326 | "id":"149", 5327 | "x":0, 5328 | "y":-3, 5329 | "color":"green", 5330 | "mouseover":"X" 5331 | }, 5332 | { 5333 | "id":"150", 5334 | "x":0, 5335 | "y":-2, 5336 | "color":"green", 5337 | "mouseover":"X" 5338 | }, 5339 | { 5340 | "id":"151", 5341 | "x":0, 5342 | "y":-1, 5343 | "color":"orange", 5344 | "mouseover":"Z" 5345 | }, 5346 | { 5347 | "id":"152", 5348 | "x":0, 5349 | "y":0, 5350 | "color":"green", 5351 | "mouseover":"X" 5352 | }, 5353 | { 5354 | "id":"153", 5355 | "x":0, 5356 | "y":1, 5357 | "color":"orange", 5358 | "mouseover":"Y" 5359 | }, 5360 | { 5361 | "id":"154", 5362 | "x":0, 5363 | "y":2, 5364 | "color":"green", 5365 | "mouseover":"Z" 5366 | }, 5367 | { 5368 | "id":"155", 5369 | "x":0, 5370 | "y":3, 5371 | "color":"orange", 5372 | "mouseover":"X" 5373 | }, 5374 | { 5375 | "id":"156", 5376 | "x":0, 5377 | "y":4, 5378 | "color":"green", 5379 | "mouseover":"Y" 5380 | }, 5381 | { 5382 | "id":"157", 5383 | "x":0, 5384 | "y":5, 5385 | "color":"green", 5386 | "mouseover":"X" 5387 | }, 5388 | { 5389 | "id":"158", 5390 | "x":0, 5391 | "y":6, 5392 | "color":"green", 5393 | "mouseover":"X" 5394 | }, 5395 | { 5396 | "id":"159", 5397 | "x":0, 5398 | "y":7, 5399 | "color":"green", 5400 | "mouseover":"X" 5401 | }, 5402 | { 5403 | "id":"160", 5404 | "x":0, 5405 | "y":8, 5406 | "color":"green", 5407 | "mouseover":"Z" 5408 | }, 5409 | { 5410 | "id":"161", 5411 | "x":0, 5412 | "y":9, 5413 | "color":"orange", 5414 | "mouseover":"Y" 5415 | }, 5416 | { 5417 | "id":"162", 5418 | "x":1, 5419 | "y":-9, 5420 | "color":"green", 5421 | "mouseover":"Y" 5422 | }, 5423 | { 5424 | "id":"163", 5425 | "x":1, 5426 | "y":-8, 5427 | "color":"green", 5428 | "mouseover":"Z" 5429 | }, 5430 | { 5431 | "id":"164", 5432 | "x":1, 5433 | "y":-7, 5434 | "color":"green", 5435 | "mouseover":"Z" 5436 | }, 5437 | { 5438 | "id":"165", 5439 | "x":1, 5440 | "y":-6, 5441 | "color":"green", 5442 | "mouseover":"Z" 5443 | }, 5444 | { 5445 | "id":"166", 5446 | "x":1, 5447 | "y":-5, 5448 | "color":"red", 5449 | "mouseover":"Z" 5450 | }, 5451 | { 5452 | "id":"167", 5453 | "x":1, 5454 | "y":-4, 5455 | "color":"red", 5456 | "mouseover":"Y" 5457 | }, 5458 | { 5459 | "id":"168", 5460 | "x":1, 5461 | "y":-3, 5462 | "color":"orange", 5463 | "mouseover":"Z" 5464 | }, 5465 | { 5466 | "id":"169", 5467 | "x":1, 5468 | "y":-2, 5469 | "color":"green", 5470 | "mouseover":"Y" 5471 | }, 5472 | { 5473 | "id":"170", 5474 | "x":1, 5475 | "y":-1, 5476 | "color":"green", 5477 | "mouseover":"Z" 5478 | }, 5479 | { 5480 | "id":"171", 5481 | "x":1, 5482 | "y":0, 5483 | "color":"green", 5484 | "mouseover":"Z" 5485 | }, 5486 | { 5487 | "id":"172", 5488 | "x":1, 5489 | "y":1, 5490 | "color":"green", 5491 | "mouseover":"X" 5492 | }, 5493 | { 5494 | "id":"173", 5495 | "x":1, 5496 | "y":2, 5497 | "color":"green", 5498 | "mouseover":"Z" 5499 | }, 5500 | { 5501 | "id":"174", 5502 | "x":1, 5503 | "y":3, 5504 | "color":"green", 5505 | "mouseover":"Z" 5506 | }, 5507 | { 5508 | "id":"175", 5509 | "x":1, 5510 | "y":4, 5511 | "color":"orange", 5512 | "mouseover":"X" 5513 | }, 5514 | { 5515 | "id":"176", 5516 | "x":1, 5517 | "y":5, 5518 | "color":"green", 5519 | "mouseover":"X" 5520 | }, 5521 | { 5522 | "id":"177", 5523 | "x":1, 5524 | "y":6, 5525 | "color":"red", 5526 | "mouseover":"Y" 5527 | }, 5528 | { 5529 | "id":"178", 5530 | "x":1, 5531 | "y":7, 5532 | "color":"green", 5533 | "mouseover":"Y" 5534 | }, 5535 | { 5536 | "id":"179", 5537 | "x":1, 5538 | "y":8, 5539 | "color":"green", 5540 | "mouseover":"Y" 5541 | }, 5542 | { 5543 | "id":"180", 5544 | "x":1, 5545 | "y":9, 5546 | "color":"green", 5547 | "mouseover":"Y" 5548 | }, 5549 | { 5550 | "id":"181", 5551 | "x":2, 5552 | "y":-9, 5553 | "color":"green", 5554 | "mouseover":"Z" 5555 | }, 5556 | { 5557 | "id":"182", 5558 | "x":2, 5559 | "y":-8, 5560 | "color":"green", 5561 | "mouseover":"X" 5562 | }, 5563 | { 5564 | "id":"183", 5565 | "x":2, 5566 | "y":-7, 5567 | "color":"green", 5568 | "mouseover":"Z" 5569 | }, 5570 | { 5571 | "id":"184", 5572 | "x":2, 5573 | "y":-6, 5574 | "color":"green", 5575 | "mouseover":"X" 5576 | }, 5577 | { 5578 | "id":"185", 5579 | "x":2, 5580 | "y":-5, 5581 | "color":"green", 5582 | "mouseover":"X" 5583 | }, 5584 | { 5585 | "id":"186", 5586 | "x":2, 5587 | "y":-4, 5588 | "color":"green", 5589 | "mouseover":"Y" 5590 | }, 5591 | { 5592 | "id":"187", 5593 | "x":2, 5594 | "y":-3, 5595 | "color":"green", 5596 | "mouseover":"Y" 5597 | }, 5598 | { 5599 | "id":"188", 5600 | "x":2, 5601 | "y":-2, 5602 | "color":"green", 5603 | "mouseover":"Y" 5604 | }, 5605 | { 5606 | "id":"189", 5607 | "x":2, 5608 | "y":-1, 5609 | "color":"green", 5610 | "mouseover":"Y" 5611 | }, 5612 | { 5613 | "id":"190", 5614 | "x":2, 5615 | "y":0, 5616 | "color":"green", 5617 | "mouseover":"Y" 5618 | }, 5619 | { 5620 | "id":"191", 5621 | "x":2, 5622 | "y":1, 5623 | "color":"green", 5624 | "mouseover":"X" 5625 | }, 5626 | { 5627 | "id":"192", 5628 | "x":2, 5629 | "y":2, 5630 | "color":"green", 5631 | "mouseover":"Y" 5632 | }, 5633 | { 5634 | "id":"193", 5635 | "x":2, 5636 | "y":3, 5637 | "color":"green", 5638 | "mouseover":"X" 5639 | }, 5640 | { 5641 | "id":"194", 5642 | "x":2, 5643 | "y":4, 5644 | "color":"green", 5645 | "mouseover":"Z" 5646 | }, 5647 | { 5648 | "id":"195", 5649 | "x":2, 5650 | "y":5, 5651 | "color":"green", 5652 | "mouseover":"Y" 5653 | }, 5654 | { 5655 | "id":"196", 5656 | "x":2, 5657 | "y":6, 5658 | "color":"green", 5659 | "mouseover":"Y" 5660 | }, 5661 | { 5662 | "id":"197", 5663 | "x":2, 5664 | "y":7, 5665 | "color":"green", 5666 | "mouseover":"Y" 5667 | }, 5668 | { 5669 | "id":"198", 5670 | "x":2, 5671 | "y":8, 5672 | "color":"green", 5673 | "mouseover":"Z" 5674 | }, 5675 | { 5676 | "id":"199", 5677 | "x":2, 5678 | "y":9, 5679 | "color":"green", 5680 | "mouseover":"X" 5681 | }, 5682 | { 5683 | "id":"200", 5684 | "x":3, 5685 | "y":-9, 5686 | "color":"orange", 5687 | "mouseover":"Y" 5688 | }, 5689 | { 5690 | "id":"201", 5691 | "x":3, 5692 | "y":-8, 5693 | "color":"orange", 5694 | "mouseover":"Z" 5695 | }, 5696 | { 5697 | "id":"202", 5698 | "x":3, 5699 | "y":-7, 5700 | "color":"green", 5701 | "mouseover":"Y" 5702 | }, 5703 | { 5704 | "id":"203", 5705 | "x":3, 5706 | "y":-6, 5707 | "color":"green", 5708 | "mouseover":"Y" 5709 | }, 5710 | { 5711 | "id":"204", 5712 | "x":3, 5713 | "y":-5, 5714 | "color":"green", 5715 | "mouseover":"Z" 5716 | }, 5717 | { 5718 | "id":"205", 5719 | "x":3, 5720 | "y":-4, 5721 | "color":"green", 5722 | "mouseover":"X" 5723 | }, 5724 | { 5725 | "id":"206", 5726 | "x":3, 5727 | "y":-3, 5728 | "color":"green", 5729 | "mouseover":"X" 5730 | }, 5731 | { 5732 | "id":"207", 5733 | "x":3, 5734 | "y":-2, 5735 | "color":"red", 5736 | "mouseover":"Z" 5737 | }, 5738 | { 5739 | "id":"208", 5740 | "x":3, 5741 | "y":-1, 5742 | "color":"green", 5743 | "mouseover":"X" 5744 | }, 5745 | { 5746 | "id":"209", 5747 | "x":3, 5748 | "y":0, 5749 | "color":"red", 5750 | "mouseover":"Z" 5751 | }, 5752 | { 5753 | "id":"210", 5754 | "x":3, 5755 | "y":1, 5756 | "color":"orange", 5757 | "mouseover":"Z" 5758 | }, 5759 | { 5760 | "id":"211", 5761 | "x":3, 5762 | "y":2, 5763 | "color":"green", 5764 | "mouseover":"Y" 5765 | }, 5766 | { 5767 | "id":"212", 5768 | "x":3, 5769 | "y":3, 5770 | "color":"green", 5771 | "mouseover":"Z" 5772 | }, 5773 | { 5774 | "id":"213", 5775 | "x":3, 5776 | "y":4, 5777 | "color":"green", 5778 | "mouseover":"Z" 5779 | }, 5780 | { 5781 | "id":"214", 5782 | "x":3, 5783 | "y":5, 5784 | "color":"green", 5785 | "mouseover":"Z" 5786 | }, 5787 | { 5788 | "id":"215", 5789 | "x":3, 5790 | "y":6, 5791 | "color":"green", 5792 | "mouseover":"Y" 5793 | }, 5794 | { 5795 | "id":"216", 5796 | "x":3, 5797 | "y":7, 5798 | "color":"red", 5799 | "mouseover":"Y" 5800 | }, 5801 | { 5802 | "id":"217", 5803 | "x":3, 5804 | "y":8, 5805 | "color":"green", 5806 | "mouseover":"Y" 5807 | }, 5808 | { 5809 | "id":"218", 5810 | "x":3, 5811 | "y":9, 5812 | "color":"green", 5813 | "mouseover":"Z" 5814 | }, 5815 | { 5816 | "id":"219", 5817 | "x":4, 5818 | "y":-9, 5819 | "color":"green", 5820 | "mouseover":"Z" 5821 | }, 5822 | { 5823 | "id":"220", 5824 | "x":4, 5825 | "y":-8, 5826 | "color":"green", 5827 | "mouseover":"Y" 5828 | }, 5829 | { 5830 | "id":"221", 5831 | "x":4, 5832 | "y":-7, 5833 | "color":"orange", 5834 | "mouseover":"X" 5835 | }, 5836 | { 5837 | "id":"222", 5838 | "x":4, 5839 | "y":-6, 5840 | "color":"orange", 5841 | "mouseover":"X" 5842 | }, 5843 | { 5844 | "id":"223", 5845 | "x":4, 5846 | "y":-5, 5847 | "color":"green", 5848 | "mouseover":"X" 5849 | }, 5850 | { 5851 | "id":"224", 5852 | "x":4, 5853 | "y":-4, 5854 | "color":"orange", 5855 | "mouseover":"X" 5856 | }, 5857 | { 5858 | "id":"225", 5859 | "x":4, 5860 | "y":-3, 5861 | "color":"green", 5862 | "mouseover":"Z" 5863 | }, 5864 | { 5865 | "id":"226", 5866 | "x":4, 5867 | "y":-2, 5868 | "color":"orange", 5869 | "mouseover":"Z" 5870 | }, 5871 | { 5872 | "id":"227", 5873 | "x":4, 5874 | "y":-1, 5875 | "color":"green", 5876 | "mouseover":"Z" 5877 | }, 5878 | { 5879 | "id":"228", 5880 | "x":4, 5881 | "y":0, 5882 | "color":"green", 5883 | "mouseover":"Y" 5884 | }, 5885 | { 5886 | "id":"229", 5887 | "x":4, 5888 | "y":1, 5889 | "color":"green", 5890 | "mouseover":"Y" 5891 | }, 5892 | { 5893 | "id":"230", 5894 | "x":4, 5895 | "y":2, 5896 | "color":"green", 5897 | "mouseover":"X" 5898 | }, 5899 | { 5900 | "id":"231", 5901 | "x":4, 5902 | "y":3, 5903 | "color":"orange", 5904 | "mouseover":"X" 5905 | }, 5906 | { 5907 | "id":"232", 5908 | "x":4, 5909 | "y":4, 5910 | "color":"green", 5911 | "mouseover":"X" 5912 | }, 5913 | { 5914 | "id":"233", 5915 | "x":4, 5916 | "y":5, 5917 | "color":"green", 5918 | "mouseover":"X" 5919 | }, 5920 | { 5921 | "id":"234", 5922 | "x":4, 5923 | "y":6, 5924 | "color":"green", 5925 | "mouseover":"X" 5926 | }, 5927 | { 5928 | "id":"235", 5929 | "x":4, 5930 | "y":7, 5931 | "color":"green", 5932 | "mouseover":"Z" 5933 | }, 5934 | { 5935 | "id":"236", 5936 | "x":4, 5937 | "y":8, 5938 | "color":"green", 5939 | "mouseover":"Z" 5940 | }, 5941 | { 5942 | "id":"237", 5943 | "x":4, 5944 | "y":9, 5945 | "color":"green", 5946 | "mouseover":"Z" 5947 | }, 5948 | { 5949 | "id":"238", 5950 | "x":5, 5951 | "y":-8, 5952 | "color":"green", 5953 | "mouseover":"Z" 5954 | }, 5955 | { 5956 | "id":"239", 5957 | "x":5, 5958 | "y":-7, 5959 | "color":"green", 5960 | "mouseover":"X" 5961 | }, 5962 | { 5963 | "id":"240", 5964 | "x":5, 5965 | "y":-6, 5966 | "color":"green", 5967 | "mouseover":"X" 5968 | }, 5969 | { 5970 | "id":"241", 5971 | "x":5, 5972 | "y":-5, 5973 | "color":"orange", 5974 | "mouseover":"Y" 5975 | }, 5976 | { 5977 | "id":"242", 5978 | "x":5, 5979 | "y":-4, 5980 | "color":"green", 5981 | "mouseover":"Z" 5982 | }, 5983 | { 5984 | "id":"243", 5985 | "x":5, 5986 | "y":-3, 5987 | "color":"green", 5988 | "mouseover":"X" 5989 | }, 5990 | { 5991 | "id":"244", 5992 | "x":5, 5993 | "y":-2, 5994 | "color":"green", 5995 | "mouseover":"X" 5996 | }, 5997 | { 5998 | "id":"245", 5999 | "x":5, 6000 | "y":-1, 6001 | "color":"green", 6002 | "mouseover":"X" 6003 | }, 6004 | { 6005 | "id":"246", 6006 | "x":5, 6007 | "y":0, 6008 | "color":"orange", 6009 | "mouseover":"Y" 6010 | }, 6011 | { 6012 | "id":"247", 6013 | "x":5, 6014 | "y":1, 6015 | "color":"green", 6016 | "mouseover":"Z" 6017 | }, 6018 | { 6019 | "id":"248", 6020 | "x":5, 6021 | "y":2, 6022 | "color":"green", 6023 | "mouseover":"X" 6024 | }, 6025 | { 6026 | "id":"249", 6027 | "x":5, 6028 | "y":3, 6029 | "color":"green", 6030 | "mouseover":"Z" 6031 | }, 6032 | { 6033 | "id":"250", 6034 | "x":5, 6035 | "y":4, 6036 | "color":"green", 6037 | "mouseover":"Z" 6038 | }, 6039 | { 6040 | "id":"251", 6041 | "x":5, 6042 | "y":5, 6043 | "color":"orange", 6044 | "mouseover":"Z" 6045 | }, 6046 | { 6047 | "id":"252", 6048 | "x":5, 6049 | "y":6, 6050 | "color":"green", 6051 | "mouseover":"Y" 6052 | }, 6053 | { 6054 | "id":"253", 6055 | "x":5, 6056 | "y":7, 6057 | "color":"green", 6058 | "mouseover":"Y" 6059 | }, 6060 | { 6061 | "id":"254", 6062 | "x":5, 6063 | "y":8, 6064 | "color":"green", 6065 | "mouseover":"Y" 6066 | }, 6067 | { 6068 | "id":"255", 6069 | "x":6, 6070 | "y":-7, 6071 | "color":"green", 6072 | "mouseover":"Y" 6073 | }, 6074 | { 6075 | "id":"256", 6076 | "x":6, 6077 | "y":-6, 6078 | "color":"green", 6079 | "mouseover":"X" 6080 | }, 6081 | { 6082 | "id":"257", 6083 | "x":6, 6084 | "y":-5, 6085 | "color":"red", 6086 | "mouseover":"Y" 6087 | }, 6088 | { 6089 | "id":"258", 6090 | "x":6, 6091 | "y":-4, 6092 | "color":"green", 6093 | "mouseover":"X" 6094 | }, 6095 | { 6096 | "id":"259", 6097 | "x":6, 6098 | "y":-3, 6099 | "color":"red", 6100 | "mouseover":"Z" 6101 | }, 6102 | { 6103 | "id":"260", 6104 | "x":6, 6105 | "y":-2, 6106 | "color":"green", 6107 | "mouseover":"X" 6108 | }, 6109 | { 6110 | "id":"261", 6111 | "x":6, 6112 | "y":-1, 6113 | "color":"green", 6114 | "mouseover":"Z" 6115 | }, 6116 | { 6117 | "id":"262", 6118 | "x":6, 6119 | "y":0, 6120 | "color":"green", 6121 | "mouseover":"X" 6122 | }, 6123 | { 6124 | "id":"263", 6125 | "x":6, 6126 | "y":1, 6127 | "color":"green", 6128 | "mouseover":"X" 6129 | }, 6130 | { 6131 | "id":"264", 6132 | "x":6, 6133 | "y":2, 6134 | "color":"orange", 6135 | "mouseover":"Z" 6136 | }, 6137 | { 6138 | "id":"265", 6139 | "x":6, 6140 | "y":3, 6141 | "color":"green", 6142 | "mouseover":"Z" 6143 | }, 6144 | { 6145 | "id":"266", 6146 | "x":6, 6147 | "y":4, 6148 | "color":"green", 6149 | "mouseover":"Z" 6150 | }, 6151 | { 6152 | "id":"267", 6153 | "x":6, 6154 | "y":5, 6155 | "color":"green", 6156 | "mouseover":"Y" 6157 | }, 6158 | { 6159 | "id":"268", 6160 | "x":6, 6161 | "y":6, 6162 | "color":"red", 6163 | "mouseover":"Z" 6164 | }, 6165 | { 6166 | "id":"269", 6167 | "x":6, 6168 | "y":7, 6169 | "color":"green", 6170 | "mouseover":"Y" 6171 | }, 6172 | { 6173 | "id":"270", 6174 | "x":7, 6175 | "y":-7, 6176 | "color":"green", 6177 | "mouseover":"X" 6178 | }, 6179 | { 6180 | "id":"271", 6181 | "x":7, 6182 | "y":-6, 6183 | "color":"green", 6184 | "mouseover":"Y" 6185 | }, 6186 | { 6187 | "id":"272", 6188 | "x":7, 6189 | "y":-5, 6190 | "color":"green", 6191 | "mouseover":"Y" 6192 | }, 6193 | { 6194 | "id":"273", 6195 | "x":7, 6196 | "y":-4, 6197 | "color":"green", 6198 | "mouseover":"X" 6199 | }, 6200 | { 6201 | "id":"274", 6202 | "x":7, 6203 | "y":-3, 6204 | "color":"green", 6205 | "mouseover":"Z" 6206 | }, 6207 | { 6208 | "id":"275", 6209 | "x":7, 6210 | "y":-2, 6211 | "color":"red", 6212 | "mouseover":"X" 6213 | }, 6214 | { 6215 | "id":"276", 6216 | "x":7, 6217 | "y":-1, 6218 | "color":"green", 6219 | "mouseover":"Y" 6220 | }, 6221 | { 6222 | "id":"277", 6223 | "x":7, 6224 | "y":0, 6225 | "color":"green", 6226 | "mouseover":"X" 6227 | }, 6228 | { 6229 | "id":"278", 6230 | "x":7, 6231 | "y":1, 6232 | "color":"green", 6233 | "mouseover":"Z" 6234 | }, 6235 | { 6236 | "id":"279", 6237 | "x":7, 6238 | "y":2, 6239 | "color":"green", 6240 | "mouseover":"Z" 6241 | }, 6242 | { 6243 | "id":"280", 6244 | "x":7, 6245 | "y":3, 6246 | "color":"green", 6247 | "mouseover":"Y" 6248 | }, 6249 | { 6250 | "id":"281", 6251 | "x":7, 6252 | "y":4, 6253 | "color":"green", 6254 | "mouseover":"Z" 6255 | }, 6256 | { 6257 | "id":"282", 6258 | "x":7, 6259 | "y":5, 6260 | "color":"red", 6261 | "mouseover":"X" 6262 | }, 6263 | { 6264 | "id":"283", 6265 | "x":7, 6266 | "y":6, 6267 | "color":"green", 6268 | "mouseover":"Z" 6269 | }, 6270 | { 6271 | "id":"284", 6272 | "x":7, 6273 | "y":7, 6274 | "color":"green", 6275 | "mouseover":"Z" 6276 | }, 6277 | { 6278 | "id":"285", 6279 | "x":8, 6280 | "y":-5, 6281 | "color":"red", 6282 | "mouseover":"Y" 6283 | }, 6284 | { 6285 | "id":"286", 6286 | "x":8, 6287 | "y":-4, 6288 | "color":"green", 6289 | "mouseover":"Z" 6290 | }, 6291 | { 6292 | "id":"287", 6293 | "x":8, 6294 | "y":-3, 6295 | "color":"green", 6296 | "mouseover":"Y" 6297 | }, 6298 | { 6299 | "id":"288", 6300 | "x":8, 6301 | "y":-2, 6302 | "color":"green", 6303 | "mouseover":"Z" 6304 | }, 6305 | { 6306 | "id":"289", 6307 | "x":8, 6308 | "y":-1, 6309 | "color":"green", 6310 | "mouseover":"Y" 6311 | }, 6312 | { 6313 | "id":"290", 6314 | "x":8, 6315 | "y":0, 6316 | "color":"red", 6317 | "mouseover":"Z" 6318 | }, 6319 | { 6320 | "id":"291", 6321 | "x":8, 6322 | "y":1, 6323 | "color":"red", 6324 | "mouseover":"X" 6325 | }, 6326 | { 6327 | "id":"292", 6328 | "x":8, 6329 | "y":2, 6330 | "color":"green", 6331 | "mouseover":"Y" 6332 | }, 6333 | { 6334 | "id":"293", 6335 | "x":8, 6336 | "y":3, 6337 | "color":"green", 6338 | "mouseover":"Z" 6339 | }, 6340 | { 6341 | "id":"294", 6342 | "x":8, 6343 | "y":4, 6344 | "color":"green", 6345 | "mouseover":"X" 6346 | }, 6347 | { 6348 | "id":"295", 6349 | "x":8, 6350 | "y":5, 6351 | "color":"green", 6352 | "mouseover":"Z" 6353 | }, 6354 | { 6355 | "id":"296", 6356 | "x":9, 6357 | "y":-4, 6358 | "color":"green", 6359 | "mouseover":"Y" 6360 | }, 6361 | { 6362 | "id":"297", 6363 | "x":9, 6364 | "y":-3, 6365 | "color":"red", 6366 | "mouseover":"X" 6367 | }, 6368 | { 6369 | "id":"298", 6370 | "x":9, 6371 | "y":-2, 6372 | "color":"green", 6373 | "mouseover":"X" 6374 | }, 6375 | { 6376 | "id":"299", 6377 | "x":9, 6378 | "y":-1, 6379 | "color":"orange", 6380 | "mouseover":"Z" 6381 | }, 6382 | { 6383 | "id":"300", 6384 | "x":9, 6385 | "y":0, 6386 | "color":"green", 6387 | "mouseover":"X" 6388 | }, 6389 | { 6390 | "id":"301", 6391 | "x":9, 6392 | "y":1, 6393 | "color":"red", 6394 | "mouseover":"Y" 6395 | }, 6396 | { 6397 | "id":"302", 6398 | "x":9, 6399 | "y":2, 6400 | "color":"green", 6401 | "mouseover":"Y" 6402 | }, 6403 | { 6404 | "id":"303", 6405 | "x":9, 6406 | "y":3, 6407 | "color":"green", 6408 | "mouseover":"Y" 6409 | }, 6410 | { 6411 | "id":"304", 6412 | "x":9, 6413 | "y":4, 6414 | "color":"green", 6415 | "mouseover":"X" 6416 | } 6417 | ] 6418 | } 6419 | ] 6420 | --------------------------------------------------------------------------------