diff --git a/BUILDING.md b/BUILDING.md index 4d80790..1c25662 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -31,10 +31,10 @@ CommentCoreLibrary在库外提供了很多可扩展的空间,你可以相对 即可按照默认模板编译。除此之外,你还可以改变编译目标: -- build : 只编译项目,不会clean掉build文件夹下的产物 -- build-core : 只编译弹幕核心,不包括Acfun和Bilibili的解析器。这个更加适用各种二次开发不需要 - 已有的弹幕格式的 -- build-scripting : 只编译代码弹幕支持 +- `build` : 只编译项目,不会clean掉build文件夹下的产物 +- `build:core_only` : 只编译弹幕核心,不包括CommentProvider和parsers里面的解析器。 + 这个更加适用不需要已有的弹幕格式的各种二次开发 +- `build:scripting` : 只编译代码弹幕支持 默认模式会自动看管 `src` 源码文件夹,并且在产生变化的时候自动生成新版。 diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 907c9dd..6d62828 100644 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -5,8 +5,7 @@ module.exports = (grunt) -> grunt.file.readJSON('package.json') # !! Compile configurations - License = '/*!Copyright(c) CommentCoreLibrary (//github.com/jabbany/CommentCoreLibrary) - Licensed under the MIT License */' - FilterType = "Simple" # "Comment" || "Simple" + LICENSE = '/*!Copyright(c) CommentCoreLibrary (//github.com/jabbany/CommentCoreLibrary) - Licensed under the MIT License */' # !! End of config area CSS = [ @@ -14,49 +13,59 @@ module.exports = (grunt) -> 'src/css/fontalias.css' ] - SRC_CORE_CMP = [ - 'Comment' - 'CommentSpaceAllocator' - ] - SRC_CORE = [ 'src/Array.js' 'src/core/CommentSpaceAllocator.js' 'src/core/Comment.js' - 'src/filter/' + FilterType + 'Filter.js' - 'src/CommentCoreLibrary.js' + 'src/CommentManager.js' + ] + + SRC_MODULES = + 'filter': ['src/filter/SimpleFilter.js'] + 'provider': ['src/CommentProvider.js'] + 'format-bilibili': ['src/parsers/BilibiliFormat.js'] + 'format-acfun': ['src/parsers/AcfunFormat.js'] + 'format-common': ['src/parsers/CommonDanmakuFormat.js'] + + # Typescript targets + SRC_TS_CORE = [ + 'Comment' + 'CommentSpaceAllocator' ] - SRC_SCRIPTING_KAGEROU = - display: 'src/scripting/api/Display/Display.ts' - runtime: 'src/scripting/api/Runtime/Runtime.ts' - player: 'src/scripting/api/Player/Player.ts' - utils: 'src/scripting/api/Utils/Utils.ts' - tween: 'src/scripting/api/Tween/Tween.ts' + SRC_TS_SCRIPTING_KAGEROU = + 'display': 'src/scripting/api/Display/Display.ts' + 'runtime': 'src/scripting/api/Runtime/Runtime.ts' + 'player': 'src/scripting/api/Player/Player.ts' + 'utils': 'src/scripting/api/Utils/Utils.ts' + 'tween': 'src/scripting/api/Tween/Tween.ts' - SRC_PARSER = [ - 'src/parsers/AcfunFormat.js' - 'src/parsers/BilibiliFormat.js' - ] + # ==== Below this point is logic to generate compile configurations ==== + # You probably do not need to edit anything below here + + # Dynamically generate the target for all + CMP_ALL = [] + CMP_ALL = CMP_ALL.concat SRC_CORE + for name, source of SRC_MODULES + CMP_ALL = CMP_ALL.concat source - # !! Below are compile settings # Dynamically generate the core ts targets - CMP_CORE_TS = { } - CMP_CORE_NAME = [ ] - for target in SRC_CORE_CMP - CMP_CORE_NAME.push ("ts:" + target) - CMP_CORE_TS[target] = + CMP_CORE_TS = {} + CMP_CORE_NAME = [] + for target in SRC_TS_CORE + CMP_CORE_NAME.push ("ts:core_" + target) + CMP_CORE_TS["core_" + target] = src: ["src/core/" + target + ".ts"] out: "src/core/" + target + ".js" # Dynamically generate the kagerou ts targets - CMP_KAGEROU_TS = { } - CMP_KAGEROU_NAME = [ ] - for target,src of SRC_SCRIPTING_KAGEROU + CMP_KAGEROU_TS = {} + CMP_KAGEROU_NAME = [] + for target,src of SRC_TS_SCRIPTING_KAGEROU CMP_KAGEROU_NAME.push ('ts:kagerou_engine_' + target) CMP_KAGEROU_TS['kagerou_engine_' + target] = src: src - out: 'build/scripting/api/' + src.split('/').pop().split('.')[0] + '.js' + out: 'dist/scripting/api/' + src.split('/').pop().split('.')[0] + '.js' # Append Typescript Tasks ts_config = @@ -67,32 +76,30 @@ module.exports = (grunt) -> for key,value of CMP_KAGEROU_TS ts_config[key] = value - # Core concatenated with libraries - # Actual concat ordering does not/should not matter - SRC_CORELIB = SRC_CORE.concat(SRC_PARSER) + grunt.loadNpmTasks 'grunt-contrib-coffee' + grunt.loadNpmTasks 'grunt-contrib-jasmine' - grunt.loadNpmTasks('grunt-contrib-coffee') - grunt.loadNpmTasks('grunt-contrib-jasmine') grunt.initConfig( clean: - scripting: ['build/scripting'] - build: ['build'] + scripting: ['dist/scripting'] + dist: ['dist'] # Concat CSS and JS files - # core_only : builds CCL without parsers - # all : builds CCL with everything + # dist_core : builds CCL with just the comment system + # dist_all : builds CCL with everything + # scripting_host : builds just the scripting host concat: - scripting_host: + dist_core: files: - 'build/scripting/Host.js': ['src/scripting/Host.js','src/scripting/Unpacker.js'] - core_only: + 'dist/css/style.css': CSS + 'dist/CommentCoreLibrary.js': SRC_CORE + dist_all: files: - 'build/style.css': CSS - 'build/CommentCore.js': SRC_CORE - all: + 'dist/css/style.css': CSS + 'dist/CommentCoreLibrary.js': CMP_ALL + scripting_host: files: - 'build/style.css': CSS - 'build/CommentCoreLibrary.js': SRC_CORELIB + 'dist/scripting/Host.js': ['src/scripting/Host.js','src/scripting/Unpacker.js'] # Compile TypeScript ts: ts_config @@ -101,43 +108,42 @@ module.exports = (grunt) -> copy: scripting_sandbox: files:[ - {expand: true, cwd:'src/scripting/api/', src: ['*.js'], dest:'build/scripting/api/'}, - {expand: true, cwd:'src/scripting/', src: ['OOAPI.js','Worker.js'], dest:'build/scripting/'} + {expand: true, cwd:'src/scripting/api/', src: ['*.js'], dest:'dist/scripting/api/'}, + {expand: true, cwd:'src/scripting/', src: ['OOAPI.js','Worker.js'], dest:'dist/scripting/'} ] # Auto-prefix CSS properties using Can I Use? autoprefixer: options: browsers: ['last 3 versions', 'bb 10', 'android 3'] - no_dest: # File to output - src: 'build/style.css' + src: 'dist/css/style.css' # Minify CSS cssmin: minify: - src: ['build/style.css'] - dest: 'build/style.min.css' + src: ['dist/css/style.css'] + dest: 'dist/css/style.min.css' + # Minify JS uglify: - options: banner: License - core_only: - files: - 'build/CommentCore.min.js': SRC_CORE + options: + banner: LICENSE all: files: - 'build/CommentCoreLibrary.min.js': SRC_CORELIB + 'dist/CommentCoreLibrary.min.js': ['dist/CommentCoreLibrary.js'] # Watch files for changes - # watch: - all: - files: ['src/**/*', '!node_modules'] - - # Run concat, autoprefixer, cssmin and uglify + scripting: + files: ['src/scripting/**/*', '!node_modules'] + tasks: ['build-scripting'] + core: + files: ['src/**/*', '!node_modules', '!src/scripting/**/*'] tasks: ['build'] + # JSHint jshint: options: curly: true, @@ -157,7 +163,6 @@ module.exports = (grunt) -> src: ['src/*.js'] # Jasmine test - jasmine: coverage: src: 'src/**/*.js' @@ -175,7 +180,7 @@ module.exports = (grunt) -> report: 'coverage' coverage: 'coverage/coverage.json' ci: - src: 'build/CommentCoreLibrary.js' + src: 'dist/CommentCoreLibrary.js' options: specs: 'compiled_spec/*spec.js' helpers: 'spec/*helper.js' @@ -202,14 +207,14 @@ module.exports = (grunt) -> ) # Register special compiles - grunt.registerTask 'compile-ts-kagerou', CMP_KAGEROU_NAME - grunt.registerTask 'compile-ts-core', CMP_CORE_NAME + grunt.registerTask 'compile:ts-core', CMP_CORE_NAME + grunt.registerTask 'compile:ts-kagerou', CMP_KAGEROU_NAME # Register our tasks grunt.registerTask 'test', ['coffee', 'jasmine:coverage'] - grunt.registerTask 'build-scripting', ['clean:scripting','concat:scripting_host', 'compile-ts-kagerou', 'copy:scripting_sandbox'] - grunt.registerTask 'build-core', ['compile-ts-core', 'concat:core_only', 'autoprefixer', 'cssmin', 'uglify:core_only'] - grunt.registerTask 'build', ['compile-ts-core', 'concat:all', 'autoprefixer', 'cssmin', 'uglify:all'] + grunt.registerTask 'build', ['compile:ts-core', 'concat:dist_all', 'autoprefixer', 'cssmin', 'uglify:all'] + grunt.registerTask 'build:core', ['compile:ts-core', 'concat:dist_core', 'autoprefixer', 'cssmin', 'uglify:core'] + grunt.registerTask 'build:scripting', ['clean:scripting','concat:scripting_host', 'compile:ts-kagerou', 'copy:scripting_sandbox'] grunt.registerTask 'ci', ['build', 'coffee', 'jasmine:ci'] - grunt.registerTask 'default', ['clean', 'build', 'build-scripting', 'watch'] + grunt.registerTask 'default', ['clean', 'build', 'build:scripting', 'watch'] diff --git a/bower.json b/bower.json index 3896947..2977d4e 100644 --- a/bower.json +++ b/bower.json @@ -1,8 +1,12 @@ { - "name": "comment-core-library", - "version": "0.9.3", - "main": ["build/CommentCoreLibrary.js","build/style.css"], - "ignore": [ + "name": "comment-core-library", + "description": "Javascript library for organizing and displaying danmaku comments", + "license": "MIT", + "authors": [ + "Jim Chen " + ], + "main": ["dist/CommentCoreLibrary.js","dist/style.css"], + "ignore": [ "test/**/*", "experimental/**/*", "demo/**/*" diff --git a/build/CommentCoreLibrary.js b/build/CommentCoreLibrary.js deleted file mode 100644 index 068af7e..0000000 --- a/build/CommentCoreLibrary.js +++ /dev/null @@ -1,1212 +0,0 @@ -/** - * Binary Search Stubs for JS Arrays - * @license MIT - * @author Jim Chen - */ -var BinArray = (function(){ - var BinArray = {}; - BinArray.bsearch = function(arr, what, how){ - if(arr.length === 0) { - return 0; - } - if(how(what,arr[0]) < 0) { - return 0; - } - if(how(what,arr[arr.length - 1]) >=0) { - return arr.length; - } - var low =0; - var i = 0; - var count = 0; - var high = arr.length - 1; - while(low<=high){ - i = Math.floor((high + low + 1)/2); - count++; - if(how(what,arr[i-1])>=0 && how(what,arr[i])<0){ - return i; - } - if(how(what,arr[i-1])<0){ - high = i-1; - }else if(how(what,arr[i])>=0){ - low = i; - }else { - console.error('Program Error'); - } - if(count > 1500) { console.error('Too many run cycles.'); } - } - return -1; // Never actually run - }; - BinArray.binsert = function(arr, what, how){ - var index = BinArray.bsearch(arr,what,how); - arr.splice(index,0,what); - return index; - }; - return BinArray; -})(); - -var __extends = (this && this.__extends) || function (d, b) { - for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); -}; -var CommentSpaceAllocator = (function () { - function CommentSpaceAllocator(width, height) { - if (width === void 0) { width = 0; } - if (height === void 0) { height = 0; } - this._pools = [ - [] - ]; - this.avoid = 1; - this._width = width; - this._height = height; - } - CommentSpaceAllocator.prototype.willCollide = function (existing, check) { - return existing.stime + existing.ttl >= check.stime + check.ttl / 2; - }; - CommentSpaceAllocator.prototype.pathCheck = function (y, comment, pool) { - var bottom = y + comment.height; - var right = comment.right; - for (var i = 0; i < pool.length; i++) { - if (pool[i].y > bottom || pool[i].bottom < y) { - continue; - } - else if (pool[i].right < comment.x || pool[i].x > right) { - if (this.willCollide(pool[i], comment)) { - return false; - } - else { - continue; - } - } - else { - return false; - } - } - return true; - }; - CommentSpaceAllocator.prototype.assign = function (comment, cindex) { - while (this._pools.length <= cindex) { - this._pools.push([]); - } - var pool = this._pools[cindex]; - if (pool.length === 0) { - comment.cindex = cindex; - return 0; - } - else if (this.pathCheck(0, comment, pool)) { - comment.cindex = cindex; - return 0; - } - var y = 0; - for (var k = 0; k < pool.length; k++) { - y = pool[k].bottom + this.avoid; - if (y + comment.height > this._height) { - break; - } - if (this.pathCheck(y, comment, pool)) { - comment.cindex = cindex; - return y; - } - } - return this.assign(comment, cindex + 1); - }; - CommentSpaceAllocator.prototype.add = function (comment) { - if (comment.height > this._height) { - comment.cindex = -2; - comment.y = 0; - } - else { - comment.y = this.assign(comment, 0); - BinArray.binsert(this._pools[comment.cindex], comment, function (a, b) { - if (a.bottom < b.bottom) { - return -1; - } - else if (a.bottom > b.bottom) { - return 1; - } - else { - return 0; - } - }); - } - }; - CommentSpaceAllocator.prototype.remove = function (comment) { - if (comment.cindex < 0) { - return; - } - if (comment.cindex >= this._pools.length) { - throw new Error("cindex out of bounds"); - } - var index = this._pools[comment.cindex].indexOf(comment); - if (index < 0) - return; - this._pools[comment.cindex].splice(index, 1); - }; - CommentSpaceAllocator.prototype.setBounds = function (width, height) { - this._width = width; - this._height = height; - }; - return CommentSpaceAllocator; -}()); -var AnchorCommentSpaceAllocator = (function (_super) { - __extends(AnchorCommentSpaceAllocator, _super); - function AnchorCommentSpaceAllocator() { - _super.apply(this, arguments); - } - AnchorCommentSpaceAllocator.prototype.add = function (comment) { - _super.prototype.add.call(this, comment); - comment.x = (this._width - comment.width) / 2; - }; - AnchorCommentSpaceAllocator.prototype.willCollide = function (a, b) { - return true; - }; - AnchorCommentSpaceAllocator.prototype.pathCheck = function (y, comment, pool) { - var bottom = y + comment.height; - for (var i = 0; i < pool.length; i++) { - if (pool[i].y > bottom || pool[i].bottom < y) { - continue; - } - else { - return false; - } - } - return true; - }; - return AnchorCommentSpaceAllocator; -}(CommentSpaceAllocator)); -//# sourceMappingURL=CommentSpaceAllocator.js.map -var __extends = (this && this.__extends) || function (d, b) { - for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; - function __() { this.constructor = d; } - d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); -}; -var CoreComment = (function () { - function CoreComment(parent, init) { - if (init === void 0) { init = {}; } - this.mode = 1; - this.stime = 0; - this.text = ""; - this.ttl = 4000; - this.dur = 4000; - this.cindex = -1; - this.motion = []; - this.movable = true; - this._alphaMotion = null; - this.absolute = true; - this.align = 0; - this._alpha = 1; - this._size = 25; - this._color = 0xffffff; - this._border = false; - this._shadow = true; - this._font = ""; - if (!parent) { - throw new Error("Comment not bound to comment manager."); - } - else { - this.parent = parent; - } - if (init.hasOwnProperty("stime")) { - this.stime = init["stime"]; - } - if (init.hasOwnProperty("mode")) { - this.mode = init["mode"]; - } - else { - this.mode = 1; - } - if (init.hasOwnProperty("dur")) { - this.dur = init["dur"]; - this.ttl = this.dur; - } - this.dur *= this.parent.options.global.scale; - this.ttl *= this.parent.options.global.scale; - if (init.hasOwnProperty("text")) { - this.text = init["text"]; - } - if (init.hasOwnProperty("motion")) { - this._motionStart = []; - this._motionEnd = []; - this.motion = init["motion"]; - var head = 0; - for (var i = 0; i < init["motion"].length; i++) { - this._motionStart.push(head); - var maxDur = 0; - for (var k in init["motion"][i]) { - var m = init["motion"][i][k]; - maxDur = Math.max(m.dur, maxDur); - if (m.easing === null || m.easing === undefined) { - init["motion"][i][k]["easing"] = CoreComment.LINEAR; - } - } - head += maxDur; - this._motionEnd.push(head); - } - this._curMotion = 0; - } - if (init.hasOwnProperty("color")) { - this._color = init["color"]; - } - if (init.hasOwnProperty("size")) { - this._size = init["size"]; - } - if (init.hasOwnProperty("border")) { - this._border = init["border"]; - } - if (init.hasOwnProperty("opacity")) { - this._alpha = init["opacity"]; - } - if (init.hasOwnProperty("alpha")) { - this._alphaMotion = init["alpha"]; - } - if (init.hasOwnProperty("font")) { - this._font = init["font"]; - } - if (init.hasOwnProperty("x")) { - this._x = init["x"]; - } - if (init.hasOwnProperty("y")) { - this._y = init["y"]; - } - if (init.hasOwnProperty("shadow")) { - this._shadow = init["shadow"]; - } - if (init.hasOwnProperty("position")) { - if (init["position"] === "relative") { - this.absolute = false; - if (this.mode < 7) { - console.warn("Using relative position for CSA comment."); - } - } - } - } - CoreComment.prototype.init = function (recycle) { - if (recycle === void 0) { recycle = null; } - if (recycle !== null) { - this.dom = recycle.dom; - } - else { - this.dom = document.createElement("div"); - } - this.dom.className = this.parent.options.global.className; - this.dom.appendChild(document.createTextNode(this.text)); - this.dom.textContent = this.text; - this.dom.innerText = this.text; - this.size = this._size; - if (this._color != 0xffffff) { - this.color = this._color; - } - this.shadow = this._shadow; - if (this._border) { - this.border = this._border; - } - if (this._font !== "") { - this.font = this._font; - } - if (this._x !== undefined) { - this.x = this._x; - } - if (this._y !== undefined) { - this.y = this._y; - } - if (this._alpha !== 1 || this.parent.options.global.opacity < 1) { - this.alpha = this._alpha; - } - if (this.motion.length > 0) { - this.animate(); - } - }; - Object.defineProperty(CoreComment.prototype, "x", { - get: function () { - if (this._x === null || this._x === undefined) { - if (this.align % 2 === 0) { - this._x = this.dom.offsetLeft; - } - else { - this._x = this.parent.width - this.dom.offsetLeft - this.width; - } - } - if (!this.absolute) { - return this._x / this.parent.width; - } - return this._x; - }, - set: function (x) { - this._x = x; - if (!this.absolute) { - this._x *= this.parent.width; - } - if (this.align % 2 === 0) { - this.dom.style.left = this._x + "px"; - } - else { - this.dom.style.right = this._x + "px"; - } - }, - enumerable: true, - configurable: true - }); - Object.defineProperty(CoreComment.prototype, "y", { - get: function () { - if (this._y === null || this._y === undefined) { - if (this.align < 2) { - this._y = this.dom.offsetTop; - } - else { - this._y = this.parent.height - this.dom.offsetTop - this.height; - } - } - if (!this.absolute) { - return this._y / this.parent.height; - } - return this._y; - }, - set: function (y) { - this._y = y; - if (!this.absolute) { - this._y *= this.parent.height; - } - if (this.align < 2) { - this.dom.style.top = this._y + "px"; - } - else { - this.dom.style.bottom = this._y + "px"; - } - }, - enumerable: true, - configurable: true - }); - Object.defineProperty(CoreComment.prototype, "bottom", { - get: function () { - return this.y + this.height; - }, - enumerable: true, - configurable: true - }); - Object.defineProperty(CoreComment.prototype, "right", { - get: function () { - return this.x + this.width; - }, - enumerable: true, - configurable: true - }); - Object.defineProperty(CoreComment.prototype, "width", { - get: function () { - if (this._width === null || this._width === undefined) { - this._width = this.dom.offsetWidth; - } - return this._width; - }, - set: function (w) { - this._width = w; - this.dom.style.width = this._width + "px"; - }, - enumerable: true, - configurable: true - }); - Object.defineProperty(CoreComment.prototype, "height", { - get: function () { - if (this._height === null || this._height === undefined) { - this._height = this.dom.offsetHeight; - } - return this._height; - }, - set: function (h) { - this._height = h; - this.dom.style.height = this._height + "px"; - }, - enumerable: true, - configurable: true - }); - Object.defineProperty(CoreComment.prototype, "size", { - get: function () { - return this._size; - }, - set: function (s) { - this._size = s; - this.dom.style.fontSize = this._size + "px"; - }, - enumerable: true, - configurable: true - }); - Object.defineProperty(CoreComment.prototype, "color", { - get: function () { - return this._color; - }, - set: function (c) { - this._color = c; - var color = c.toString(16); - color = color.length >= 6 ? color : new Array(6 - color.length + 1).join("0") + color; - this.dom.style.color = "#" + color; - if (this._color === 0) { - this.dom.className = this.parent.options.global.className + " rshadow"; - } - }, - enumerable: true, - configurable: true - }); - Object.defineProperty(CoreComment.prototype, "alpha", { - get: function () { - return this._alpha; - }, - set: function (a) { - this._alpha = a; - this.dom.style.opacity = Math.min(this._alpha, this.parent.options.global.opacity) + ""; - }, - enumerable: true, - configurable: true - }); - Object.defineProperty(CoreComment.prototype, "border", { - get: function () { - return this._border; - }, - set: function (b) { - this._border = b; - if (this._border) { - this.dom.style.border = "1px solid #00ffff"; - } - else { - this.dom.style.border = "none"; - } - }, - enumerable: true, - configurable: true - }); - Object.defineProperty(CoreComment.prototype, "shadow", { - get: function () { - return this._shadow; - }, - set: function (s) { - this._shadow = s; - if (!this._shadow) { - this.dom.className = this.parent.options.global.className + " noshadow"; - } - }, - enumerable: true, - configurable: true - }); - Object.defineProperty(CoreComment.prototype, "font", { - get: function () { - return this._font; - }, - set: function (f) { - this._font = f; - if (this._font.length > 0) { - this.dom.style.fontFamily = this._font; - } - else { - this.dom.style.fontFamily = ""; - } - }, - enumerable: true, - configurable: true - }); - CoreComment.prototype.time = function (time) { - this.ttl -= time; - if (this.ttl < 0) { - this.ttl = 0; - } - if (this.movable) { - this.update(); - } - if (this.ttl <= 0) { - this.finish(); - } - }; - CoreComment.prototype.update = function () { - this.animate(); - }; - CoreComment.prototype.invalidate = function () { - this._x = null; - this._y = null; - this._width = null; - this._height = null; - }; - CoreComment.prototype._execMotion = function (currentMotion, time) { - for (var prop in currentMotion) { - if (currentMotion.hasOwnProperty(prop)) { - var m = currentMotion[prop]; - this[prop] = m.easing(Math.min(Math.max(time - m.delay, 0), m.dur), m.from, m.to - m.from, m.dur); - } - } - }; - CoreComment.prototype.animate = function () { - if (this._alphaMotion) { - this.alpha = (this.dur - this.ttl) * (this._alphaMotion["to"] - this._alphaMotion["from"]) / this.dur + this._alphaMotion["from"]; - } - if (this.motion.length === 0) { - return; - } - var ttl = Math.max(this.ttl, 0); - var time = (this.dur - ttl) - this._motionStart[this._curMotion]; - this._execMotion(this.motion[this._curMotion], time); - if (this.dur - ttl > this._motionEnd[this._curMotion]) { - this._curMotion++; - if (this._curMotion >= this.motion.length) { - this._curMotion = this.motion.length - 1; - } - return; - } - }; - CoreComment.prototype.finish = function () { - this.parent.finish(this); - }; - CoreComment.prototype.toString = function () { - return ["[", this.stime, "|", this.ttl, "/", this.dur, "]", "(", this.mode, ")", this.text].join(""); - }; - CoreComment.LINEAR = function (t, b, c, d) { - return t * c / d + b; - }; - return CoreComment; -}()); -var ScrollComment = (function (_super) { - __extends(ScrollComment, _super); - function ScrollComment(parent, data) { - _super.call(this, parent, data); - this.dur *= this.parent.options.scroll.scale; - this.ttl *= this.parent.options.scroll.scale; - } - Object.defineProperty(ScrollComment.prototype, "alpha", { - set: function (a) { - this._alpha = a; - this.dom.style.opacity = Math.min(Math.min(this._alpha, this.parent.options.global.opacity), this.parent.options.scroll.opacity) + ""; - }, - enumerable: true, - configurable: true - }); - ScrollComment.prototype.init = function (recycle) { - if (recycle === void 0) { recycle = null; } - _super.prototype.init.call(this, recycle); - this.x = this.parent.width; - if (this.parent.options.scroll.opacity < 1) { - this.alpha = this._alpha; - } - this.absolute = true; - }; - ScrollComment.prototype.update = function () { - this.x = (this.ttl / this.dur) * (this.parent.width + this.width) - this.width; - }; - return ScrollComment; -}(CoreComment)); -//# sourceMappingURL=Comment.js.map -/** - * Comment Filters Module Simplified (only supports modifiers & types) - * @license MIT - * @author Jim Chen - */ -function CommentFilter(){ - this.modifiers = []; - this.runtime = null; - this.allowTypes = { - "1":true, - "4":true, - "5":true, - "6":true, - "7":true, - "8":true, - "17":true - }; - this.doModify = function(cmt){ - for(var k=0;k 0) - return; - var lastTPos = new Date().getTime(); - var cmMgr = this; - __timer = window.setInterval(function(){ - var elapsed = new Date().getTime() - lastTPos; - lastTPos = new Date().getTime(); - cmMgr.onTimerEvent(elapsed,cmMgr); - },10); - }; - this.stopTimer = function(){ - window.clearInterval(__timer); - __timer = 0; - }; - } - - /** Public **/ - CommentManager.prototype.stop = function(){ - this.stopTimer(); - }; - - CommentManager.prototype.start = function(){ - this.startTimer(); - }; - - CommentManager.prototype.seek = function(time){ - this.position = BinArray.bsearch(this.timeline, time, function(a,b){ - if(a < b.stime) return -1 - else if(a > b.stime) return 1; - else return 0; - }); - }; - - CommentManager.prototype.validate = function(cmt){ - if(cmt == null) - return false; - return this.filter.doValidate(cmt); - }; - - CommentManager.prototype.load = function(a){ - this.timeline = a; - this.timeline.sort(function(a,b){ - if(a.stime > b.stime) return 2; - else if(a.stime < b.stime) return -2; - else{ - if(a.date > b.date) return 1; - else if(a.date < b.date) return -1; - else if(a.dbid != null && b.dbid != null){ - if(a.dbid > b.dbid) return 1; - else if(a.dbid < b.dbid) return -1; - return 0; - }else - return 0; - } - }); - this.dispatchEvent("load"); - }; - - CommentManager.prototype.insert = function(c){ - var index = BinArray.binsert(this.timeline, c, function(a,b){ - if(a.stime > b.stime) return 2; - else if(a.stime < b.stime) return -2; - else{ - if(a.date > b.date) return 1; - else if(a.date < b.date) return -1; - else if(a.dbid != null && b.dbid != null){ - if(a.dbid > b.dbid) return 1; - else if(a.dbid < b.dbid) return -1; - return 0; - }else - return 0; - } - }); - if(index <= this.position){ - this.position++; - } - this.dispatchEvent("insert"); - }; - - CommentManager.prototype.clear = function(){ - while(this.runline.length > 0){ - this.runline[0].finish(); - } - this.dispatchEvent("clear"); - }; - - CommentManager.prototype.setBounds = function(){ - this.width = this.stage.offsetWidth; - this.height= this.stage.offsetHeight; - this.dispatchEvent("resize"); - for(var comAlloc in this.csa){ - this.csa[comAlloc].setBounds(this.width,this.height); - } - // Update 3d perspective - this.stage.style.perspective = this.width * Math.tan(40 * Math.PI/180) / 2 + "px"; - this.stage.style.webkitPerspective = this.width * Math.tan(40 * Math.PI/180) / 2 + "px"; - }; - CommentManager.prototype.init = function(){ - this.setBounds(); - if(this.filter == null) { - this.filter = new CommentFilter(); //Only create a filter if none exist - } - }; - CommentManager.prototype.time = function(time){ - time = time - 1; - if(this.position >= this.timeline.length || Math.abs(this._lastPosition - time) >= 2000){ - this.seek(time); - this._lastPosition = time; - if(this.timeline.length <= this.position) { - return; - } - }else{ - this._lastPosition = time; - } - for(;this.position < this.timeline.length;this.position++){ - if(this.timeline[this.position]['stime']<=time){ - if(this.options.limit > 0 && this.runline.length > this.limiter) { - continue; // Skip comments but still move the position pointer - } else if(this.validate(this.timeline[this.position])){ - this.send(this.timeline[this.position]); - } - }else{ - break; - } - } - }; - CommentManager.prototype.rescale = function(){ - - }; - CommentManager.prototype.send = function(data){ - if(data.mode === 8){ - console.log(data); - if(this.scripting){ - console.log(this.scripting.eval(data.code)); - } - return; - } - if(this.filter != null){ - data = this.filter.doModify(data); - if(data == null) return; - } - if(data.mode === 1 || data.mode === 2 || data.mode === 6){ - var cmt = new ScrollComment(this, data); - }else{ - var cmt = new CoreComment(this, data); - } - switch(cmt.mode){ - case 1:cmt.align = 0;break; - case 2:cmt.align = 2;break; - case 4:cmt.align = 2;break; - case 5:cmt.align = 0;break; - case 6:cmt.align = 1;break; - } - cmt.init(); - this.stage.appendChild(cmt.dom); - switch(cmt.mode){ - default: - case 1:{this.csa.scroll.add(cmt);}break; - case 2:{this.csa.scrollbtm.add(cmt);}break; - case 4:{this.csa.bottom.add(cmt);}break; - case 5:{this.csa.top.add(cmt);}break; - case 6:{this.csa.reverse.add(cmt);}break; - case 17: - case 7:{ - if(data.rY !== 0 || data.rZ !== 0){ - /** TODO: revise when browser manufacturers make up their mind on Transform APIs **/ - cmt.dom.style.transform = getRotMatrix(data.rY, data.rZ); - cmt.dom.style.webkitTransform = getRotMatrix(data.rY, data.rZ); - cmt.dom.style.OTransform = getRotMatrix(data.rY, data.rZ); - cmt.dom.style.MozTransform = getRotMatrix(data.rY, data.rZ); - cmt.dom.style.MSTransform = getRotMatrix(data.rY, data.rZ); - } - }break; - } - cmt.y = cmt.y; - this.dispatchEvent("enterComment", cmt); - this.runline.push(cmt); - }; - CommentManager.prototype.sendComment = function(data){ - console.log("CommentManager.sendComment is deprecated. Please use send instead"); - this.send(data); // Wrapper for Backwards Compatible APIs - }; - CommentManager.prototype.finish = function(cmt){ - this.dispatchEvent("exitComment", cmt); - this.stage.removeChild(cmt.dom); - var index = this.runline.indexOf(cmt); - if(index >= 0){ - this.runline.splice(index, 1); - } - switch(cmt.mode){ - default: - case 1:{this.csa.scroll.remove(cmt);}break; - case 2:{this.csa.scrollbtm.remove(cmt);}break; - case 4:{this.csa.bottom.remove(cmt);}break; - case 5:{this.csa.top.remove(cmt);}break; - case 6:{this.csa.reverse.remove(cmt);}break; - case 7:break; - } - }; - CommentManager.prototype.addEventListener = function(event, listener){ - if(typeof this._listeners[event] !== "undefined"){ - this._listeners[event].push(listener); - }else{ - this._listeners[event] = [listener]; - } - }; - CommentManager.prototype.dispatchEvent = function(event, data){ - if(typeof this._listeners[event] !== "undefined"){ - for(var i = 0; i < this._listeners[event].length; i++){ - try{ - this._listeners[event][i](data); - }catch(e){ - console.err(e.stack); - } - } - } - }; - /** Static Functions **/ - CommentManager.prototype.onTimerEvent = function(timePassed,cmObj){ - for(var i= 0;i < cmObj.runline.length; i++){ - var cmt = cmObj.runline[i]; - if(cmt.hold){ - continue; - } - cmt.time(timePassed); - } - }; - return CommentManager; -})(); - -/** - * AcFun Format Parser - * @license MIT License - * An alternative format comment parser - */ -function AcfunParser(jsond){ - var list = []; - try{ - var jsondt = JSON.parse(jsond); - }catch(e){ - console.log('Error: Could not parse json list!'); - return []; - } - for(var i=0;i 0){ - data.stime = parseFloat(xc[0]) * 1000; - data.color = parseInt(xc[1]) - data.mode = parseInt(xc[2]); - data.size = parseInt(xc[3]); - data.hash = xc[4]; - data.date = parseInt(xc[5]); - data.position = "absolute"; - if(data.mode != 7){ - data.text = jsondt[i].m.replace(/(\/n|\\n|\n|\r\n|\\r)/g,"\n"); - data.text = data.text.replace(/\r/g,"\n"); - data.text = data.text.replace(/\s/g,"\u00a0"); - }else{ - data.text = jsondt[i].m; - } - if(data.mode == 7){ - //High level positioned dm - try{ - var x = JSON.parse(data.text); - }catch(e){ - console.log('[Err] Error parsing internal data for comment'); - console.log('[Dbg] ' + data.text); - continue; - } - data.position = "relative"; - data.text = x.n; /*.replace(/\r/g,"\n");*/ - data.text = data.text.replace(/\ /g,"\u00a0"); - if(x.a != null){ - data.opacity = x.a; - }else{ - data.opacity = 1; - } - if(x.p != null){ - data.x = x.p.x / 1000; // relative position - data.y = x.p.y / 1000; - }else{ - data.x = 0; - data.y = 0; - } - data.shadow = x.b; - data.dur = 4000; - if(x.l != null) - data.moveDelay = x.l * 1000; - if(x.z != null && x.z.length > 0){ - data.movable = true; - data.motion = []; - var moveDuration = 0; - var last = {x:data.x, y:data.y, alpha:data.opacity, color:data.color}; - for(var m = 0; m < x.z.length; m++){ - var dur = x.z[m].l != null ? (x.z[m].l * 1000) : 500; - moveDuration += dur; - var motion = { - x:{from:last.x, to:x.z[m].x/1000, dur: dur, delay: 0}, - y:{from:last.y, to:x.z[m].y/1000, dur: dur, delay: 0} - }; - last.x = motion.x.to; - last.y = motion.y.to; - if(x.z[m].t !== last.alpha){ - motion.alpha = {from:last.alpha, to:x.z[m].t, dur: dur, delay: 0}; - last.alpha = motion.alpha.to; - } - if(x.z[m].c != null && x.z[m].c !== last.color){ - motion.color = {from:last.color, to:x.z[m].c, dur: dur, delay: 0}; - last.color = motion.color.to; - } - data.motion.push(motion); - } - data.dur = moveDuration + (data.moveDelay ? data.moveDelay : 0); - } - if(x.r != null && x.k != null){ - data.rX = x.r; - data.rY = x.k; - } - - } - list.push(data); - } - } - return list; -} - -/** - * Bilibili Format Parser - * @license MIT License - * Takes in an XMLDoc/LooseXMLDoc and parses that into a Generic Comment List - **/ -function BilibiliParser(xmlDoc, text, warn){ - function format(string){ - // Format the comment text to be JSON Valid. - return string.replace(/\t/,"\\t"); - } - - function formatmode7(text) { - if (text.charAt(0) == '[') switch (text.charAt(text.length - 1)) { - case ']': - return text; - case '"': - return text + ']'; - case ',': - return text.substring(0, text.length - 1) + '"]'; - default: - return formatmode7(text.substring(0, text.length - 1)); - }; - if (text.charAt(0) !== '[') return text; - }; - - if(xmlDoc !== null){ - var elems = xmlDoc.getElementsByTagName('d'); - }else{ - if(!document || !document.createElement){ - // Maybe we are in a restricted context? Bail. - return []; - } - if(warn){ - if(!confirm("XML Parse Error. \n Allow tag soup parsing?\n[WARNING: This is unsafe.]")){ - return []; - } - }else{ - // TODO: Make this safer in the future - text = text.replace(new RegExp("= 7){ - obj.rZ = parseInt(adv[5], 10); - obj.rY = parseInt(adv[6], 10); - } - obj.motion = []; - obj.movable = false; - if(adv.length >= 11){ - obj.movable = true; - var singleStepDur = 500; - var motion = { - x:{from: obj.x, to:parseFloat(adv[7]), dur:singleStepDur, delay:0}, - y:{from: obj.y, to:parseFloat(adv[8]), dur:singleStepDur, delay:0}, - }; - if(adv[9] !== ''){ - singleStepDur = parseInt(adv[9], 10); - motion.x.dur = singleStepDur; - motion.y.dur = singleStepDur; - } - if(adv[10] !== ''){ - motion.x.delay = parseInt(adv[10], 10); - motion.y.delay = parseInt(adv[10], 10); - } - if(adv.length > 11){ - obj.shadow = adv[11]; - if(obj.shadow === "true"){ - obj.shadow = true; - } - if(obj.shadow === "false"){ - obj.shadow = false; - } - if(adv[12] != null){ - obj.font = adv[12]; - } - if(adv.length > 14){ - // Support for Bilibili Advanced Paths - if(obj.position === "relative"){ - console.log("Cannot mix relative and absolute positioning"); - obj.position = "absolute"; - } - var path = adv[14]; - var lastPoint = {x:motion.x.from, y:motion.y.from}; - var pathMotion = []; - var regex = new RegExp("([a-zA-Z])\\s*(\\d+)[, ](\\d+)","g"); - var counts = path.split(/[a-zA-Z]/).length - 1; - var m = regex.exec(path); - while(m !== null){ - switch(m[1]){ - case "M":{ - lastPoint.x = parseInt(m[2],10); - lastPoint.y = parseInt(m[3],10); - }break; - case "L":{ - pathMotion.push({ - "x":{"from":lastPoint.x, "to":parseInt(m[2],10), "dur": singleStepDur / counts, "delay": 0}, - "y":{"from":lastPoint.y, "to":parseInt(m[3],10), "dur": singleStepDur / counts, "delay": 0} - }); - lastPoint.x = parseInt(m[2],10); - lastPoint.y = parseInt(m[3],10); - }break; - } - m = regex.exec(path); - } - motion = null; - obj.motion = pathMotion; - } - } - if(motion !== null){ - obj.motion.push(motion); - } - } - obj.dur = 2500; - if(adv[3] < 12){ - obj.dur = adv[3] * 1000; - } - var tmp = adv[2].split('-'); - if(tmp != null && tmp.length>1){ - var alphaFrom = parseFloat(tmp[0]); - var alphaTo = parseFloat(tmp[1]); - obj.opacity = alphaFrom; - if(alphaFrom !== alphaTo){ - obj.alpha = {from:alphaFrom, to:alphaTo} - } - } - }catch(e){ - console.log('[Err] Error occurred in JSON parsing'); - console.log('[Dbg] ' + text); - } - }else if(obj.mode == 8){ - obj.code = text; //Code comments are special - } - } - if(obj.text != null) - obj.text = obj.text.replace(/\u25a0/g,"\u2588"); - tlist.push(obj); - } - } - return tlist; -} diff --git a/build/CommentCoreLibrary.min.js b/build/CommentCoreLibrary.min.js deleted file mode 100644 index 94c02cc..0000000 --- a/build/CommentCoreLibrary.min.js +++ /dev/null @@ -1 +0,0 @@ -/*!Copyright(c) CommentCoreLibrary (//github.com/jabbany/CommentCoreLibrary) - Licensed under the MIT License */function CommentFilter(){this.modifiers=[],this.runtime=null,this.allowTypes={1:!0,4:!0,5:!0,6:!0,7:!0,8:!0,17:!0},this.doModify=function(a){for(var b=0;b0){if(e.stime=1e3*parseFloat(f[0]),e.color=parseInt(f[1]),e.mode=parseInt(f[2]),e.size=parseInt(f[3]),e.hash=f[4],e.date=parseInt(f[5]),e.position="absolute",7!=e.mode?(e.text=c[d].m.replace(/(\/n|\\n|\n|\r\n|\\r)/g,"\n"),e.text=e.text.replace(/\r/g,"\n"),e.text=e.text.replace(/\s/g," ")):e.text=c[d].m,7==e.mode){try{var g=JSON.parse(e.text)}catch(a){console.log("[Err] Error parsing internal data for comment"),console.log("[Dbg] "+e.text);continue}if(e.position="relative",e.text=g.n,e.text=e.text.replace(/\ /g," "),null!=g.a?e.opacity=g.a:e.opacity=1,null!=g.p?(e.x=g.p.x/1e3,e.y=g.p.y/1e3):(e.x=0,e.y=0),e.shadow=g.b,e.dur=4e3,null!=g.l&&(e.moveDelay=1e3*g.l),null!=g.z&&g.z.length>0){e.movable=!0,e.motion=[];for(var h=0,i={x:e.x,y:e.y,alpha:e.opacity,color:e.color},j=0;j=7&&(k.rZ=parseInt(adv[5],10),k.rY=parseInt(adv[6],10)),k.motion=[],k.movable=!1,adv.length>=11){k.movable=!0;var l=500,m={x:{from:k.x,to:parseFloat(adv[7]),dur:l,delay:0},y:{from:k.y,to:parseFloat(adv[8]),dur:l,delay:0}};if(""!==adv[9]&&(l=parseInt(adv[9],10),m.x.dur=l,m.y.dur=l),""!==adv[10]&&(m.x.delay=parseInt(adv[10],10),m.y.delay=parseInt(adv[10],10)),adv.length>11&&(k.shadow=adv[11],"true"===k.shadow&&(k.shadow=!0),"false"===k.shadow&&(k.shadow=!1),null!=adv[12]&&(k.font=adv[12]),adv.length>14)){"relative"===k.position&&(console.log("Cannot mix relative and absolute positioning"),k.position="absolute");for(var n=adv[14],o={x:m.x.from,y:m.y.from},p=[],q=new RegExp("([a-zA-Z])\\s*(\\d+)[, ](\\d+)","g"),r=n.split(/[a-zA-Z]/).length-1,s=q.exec(n);null!==s;){switch(s[1]){case"M":o.x=parseInt(s[2],10),o.y=parseInt(s[3],10);break;case"L":p.push({x:{from:o.x,to:parseInt(s[2],10),dur:l/r,delay:0},y:{from:o.y,to:parseInt(s[3],10),dur:l/r,delay:0}}),o.x=parseInt(s[2],10),o.y=parseInt(s[3],10)}s=q.exec(n)}m=null,k.motion=p}null!==m&&k.motion.push(m)}k.dur=2500,adv[3]<12&&(k.dur=1e3*adv[3]);var g=adv[2].split("-");if(null!=g&&g.length>1){var t=parseFloat(g[0]),u=parseFloat(g[1]);k.opacity=t,t!==u&&(k.alpha={from:t,to:u})}}catch(a){console.log("[Err] Error occurred in JSON parsing"),console.log("[Dbg] "+b)}else 8==k.mode&&(k.code=b);null!=k.text&&(k.text=k.text.replace(/\u25a0/g,"█")),h.push(k)}return h}var BinArray=function(){var a={};return a.bsearch=function(a,b,c){if(0===a.length)return 0;if(c(b,a[0])<0)return 0;if(c(b,a[a.length-1])>=0)return a.length;for(var d=0,e=0,f=0,g=a.length-1;d<=g;){if(e=Math.floor((g+d+1)/2),f++,c(b,a[e-1])>=0&&c(b,a[e])<0)return e;c(b,a[e-1])<0?g=e-1:c(b,a[e])>=0?d=e:console.error("Program Error"),f>1500&&console.error("Too many run cycles.")}return-1},a.binsert=function(b,c,d){var e=a.bsearch(b,c,d);return b.splice(e,0,c),e},a}(),__extends=this&&this.__extends||function(a,b){function c(){this.constructor=a}for(var d in b)b.hasOwnProperty(d)&&(a[d]=b[d]);a.prototype=null===b?Object.create(b):(c.prototype=b.prototype,new c)},CommentSpaceAllocator=function(){function a(a,b){void 0===a&&(a=0),void 0===b&&(b=0),this._pools=[[]],this.avoid=1,this._width=a,this._height=b}return a.prototype.willCollide=function(a,b){return a.stime+a.ttl>=b.stime+b.ttl/2},a.prototype.pathCheck=function(a,b,c){for(var d=a+b.height,e=b.right,f=0;fd||c[f].bottome))return!1;if(this.willCollide(c[f],b))return!1}return!0},a.prototype.assign=function(a,b){for(;this._pools.length<=b;)this._pools.push([]);var c=this._pools[b];if(0===c.length)return a.cindex=b,0;if(this.pathCheck(0,a,c))return a.cindex=b,0;for(var d=0,e=0;ethis._height));e++)if(this.pathCheck(d,a,c))return a.cindex=b,d;return this.assign(a,b+1)},a.prototype.add=function(a){a.height>this._height?(a.cindex=-2,a.y=0):(a.y=this.assign(a,0),BinArray.binsert(this._pools[a.cindex],a,function(a,b){return a.bottomb.bottom?1:0}))},a.prototype.remove=function(a){if(!(a.cindex<0)){if(a.cindex>=this._pools.length)throw new Error("cindex out of bounds");var b=this._pools[a.cindex].indexOf(a);b<0||this._pools[a.cindex].splice(b,1)}},a.prototype.setBounds=function(a,b){this._width=a,this._height=b},a}(),AnchorCommentSpaceAllocator=function(a){function b(){a.apply(this,arguments)}return __extends(b,a),b.prototype.add=function(b){a.prototype.add.call(this,b),b.x=(this._width-b.width)/2},b.prototype.willCollide=function(a,b){return!0},b.prototype.pathCheck=function(a,b,c){for(var d=a+b.height,e=0;ed||c[e].bottom0&&this.animate()},Object.defineProperty(a.prototype,"x",{get:function(){return null!==this._x&&void 0!==this._x||(this.align%2===0?this._x=this.dom.offsetLeft:this._x=this.parent.width-this.dom.offsetLeft-this.width),this.absolute?this._x:this._x/this.parent.width},set:function(a){this._x=a,this.absolute||(this._x*=this.parent.width),this.align%2===0?this.dom.style.left=this._x+"px":this.dom.style.right=this._x+"px"},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"y",{get:function(){return null!==this._y&&void 0!==this._y||(this.align<2?this._y=this.dom.offsetTop:this._y=this.parent.height-this.dom.offsetTop-this.height),this.absolute?this._y:this._y/this.parent.height},set:function(a){this._y=a,this.absolute||(this._y*=this.parent.height),this.align<2?this.dom.style.top=this._y+"px":this.dom.style.bottom=this._y+"px"},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"bottom",{get:function(){return this.y+this.height},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"right",{get:function(){return this.x+this.width},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"width",{get:function(){return null!==this._width&&void 0!==this._width||(this._width=this.dom.offsetWidth),this._width},set:function(a){this._width=a,this.dom.style.width=this._width+"px"},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"height",{get:function(){return null!==this._height&&void 0!==this._height||(this._height=this.dom.offsetHeight),this._height},set:function(a){this._height=a,this.dom.style.height=this._height+"px"},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"size",{get:function(){return this._size},set:function(a){this._size=a,this.dom.style.fontSize=this._size+"px"},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"color",{get:function(){return this._color},set:function(a){this._color=a;var b=a.toString(16);b=b.length>=6?b:new Array(6-b.length+1).join("0")+b,this.dom.style.color="#"+b,0===this._color&&(this.dom.className=this.parent.options.global.className+" rshadow")},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"alpha",{get:function(){return this._alpha},set:function(a){this._alpha=a,this.dom.style.opacity=Math.min(this._alpha,this.parent.options.global.opacity)+""},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"border",{get:function(){return this._border},set:function(a){this._border=a,this._border?this.dom.style.border="1px solid #00ffff":this.dom.style.border="none"},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"shadow",{get:function(){return this._shadow},set:function(a){this._shadow=a,this._shadow||(this.dom.className=this.parent.options.global.className+" noshadow")},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"font",{get:function(){return this._font},set:function(a){this._font=a,this._font.length>0?this.dom.style.fontFamily=this._font:this.dom.style.fontFamily=""},enumerable:!0,configurable:!0}),a.prototype.time=function(a){this.ttl-=a,this.ttl<0&&(this.ttl=0),this.movable&&this.update(),this.ttl<=0&&this.finish()},a.prototype.update=function(){this.animate()},a.prototype.invalidate=function(){this._x=null,this._y=null,this._width=null,this._height=null},a.prototype._execMotion=function(a,b){for(var c in a)if(a.hasOwnProperty(c)){var d=a[c];this[c]=d.easing(Math.min(Math.max(b-d.delay,0),d.dur),d.from,d.to-d.from,d.dur)}},a.prototype.animate=function(){if(this._alphaMotion&&(this.alpha=(this.dur-this.ttl)*(this._alphaMotion.to-this._alphaMotion.from)/this.dur+this._alphaMotion.from),0!==this.motion.length){var a=Math.max(this.ttl,0),b=this.dur-a-this._motionStart[this._curMotion];return this._execMotion(this.motion[this._curMotion],b),this.dur-a>this._motionEnd[this._curMotion]?(this._curMotion++,void(this._curMotion>=this.motion.length&&(this._curMotion=this.motion.length-1))):void 0}},a.prototype.finish=function(){this.parent.finish(this)},a.prototype.toString=function(){return["[",this.stime,"|",this.ttl,"/",this.dur,"]","(",this.mode,")",this.text].join("")},a.LINEAR=function(a,b,c,d){return a*c/d+b},a}(),ScrollComment=function(a){function b(b,c){a.call(this,b,c),this.dur*=this.parent.options.scroll.scale,this.ttl*=this.parent.options.scroll.scale}return __extends(b,a),Object.defineProperty(b.prototype,"alpha",{set:function(a){this._alpha=a,this.dom.style.opacity=Math.min(Math.min(this._alpha,this.parent.options.global.opacity),this.parent.options.scroll.opacity)+""},enumerable:!0,configurable:!0}),b.prototype.init=function(b){void 0===b&&(b=null),a.prototype.init.call(this,b),this.x=this.parent.width,this.parent.options.scroll.opacity<1&&(this.alpha=this._alpha),this.absolute=!0},b.prototype.update=function(){this.x=this.ttl/this.dur*(this.parent.width+this.width)-this.width},b}(CoreComment),CommentManager=function(){function a(a){var b=0;this._listeners={},this._lastPosition=0,this.stage=a,this.options={global:{opacity:1,scale:1,className:"cmt"},scroll:{opacity:1,scale:1},limit:0},this.timeline=[],this.runline=[],this.position=0,this.limiter=0,this.filter=null,this.csa={scroll:new CommentSpaceAllocator(0,0),top:new AnchorCommentSpaceAllocator(0,0),bottom:new AnchorCommentSpaceAllocator(0,0),reverse:new CommentSpaceAllocator(0,0),scrollbtm:new CommentSpaceAllocator(0,0)},this.width=this.stage.offsetWidth,this.height=this.stage.offsetHeight,this.startTimer=function(){if(!(b>0)){var a=(new Date).getTime(),c=this;b=window.setInterval(function(){var b=(new Date).getTime()-a;a=(new Date).getTime(),c.onTimerEvent(b,c)},10)}},this.stopTimer=function(){window.clearInterval(b),b=0}}var b=function(a,b){for(var c=Math.PI/180,d=a*c,e=b*c,f=Math.cos,g=Math.sin,h=[f(d)*f(e),f(d)*g(e),g(d),0,-g(e),f(e),0,0,-g(d)*f(e),-g(d)*g(e),f(d),0,0,0,0,1],i=0;ib.stime?1:0})},a.prototype.validate=function(a){return null!=a&&this.filter.doValidate(a)},a.prototype.load=function(a){this.timeline=a,this.timeline.sort(function(a,b){return a.stime>b.stime?2:a.stimeb.date?1:a.dateb.dbid?1:a.dbidb.stime?2:a.stimeb.date?1:a.dateb.dbid?1:a.dbid0;)this.runline[0].finish();this.dispatchEvent("clear")},a.prototype.setBounds=function(){this.width=this.stage.offsetWidth,this.height=this.stage.offsetHeight,this.dispatchEvent("resize");for(var a in this.csa)this.csa[a].setBounds(this.width,this.height);this.stage.style.perspective=this.width*Math.tan(40*Math.PI/180)/2+"px",this.stage.style.webkitPerspective=this.width*Math.tan(40*Math.PI/180)/2+"px"},a.prototype.init=function(){this.setBounds(),null==this.filter&&(this.filter=new CommentFilter)},a.prototype.time=function(a){if(a-=1,this.position>=this.timeline.length||Math.abs(this._lastPosition-a)>=2e3){if(this.seek(a),this._lastPosition=a,this.timeline.length<=this.position)return}else this._lastPosition=a;for(;this.position0&&this.runline.length>this.limiter||this.validate(this.timeline[this.position])&&this.send(this.timeline[this.position])},a.prototype.rescale=function(){},a.prototype.send=function(a){if(8===a.mode)return console.log(a),void(this.scripting&&console.log(this.scripting.eval(a.code)));if(null==this.filter||(a=this.filter.doModify(a),null!=a)){if(1===a.mode||2===a.mode||6===a.mode)var c=new ScrollComment(this,a);else var c=new CoreComment(this,a);switch(c.mode){case 1:c.align=0;break;case 2:c.align=2;break;case 4:c.align=2;break;case 5:c.align=0;break;case 6:c.align=1}switch(c.init(),this.stage.appendChild(c.dom),c.mode){default:case 1:this.csa.scroll.add(c);break;case 2:this.csa.scrollbtm.add(c);break;case 4:this.csa.bottom.add(c);break;case 5:this.csa.top.add(c);break;case 6:this.csa.reverse.add(c);break;case 17:case 7:0===a.rY&&0===a.rZ||(c.dom.style.transform=b(a.rY,a.rZ),c.dom.style.webkitTransform=b(a.rY,a.rZ),c.dom.style.OTransform=b(a.rY,a.rZ),c.dom.style.MozTransform=b(a.rY,a.rZ),c.dom.style.MSTransform=b(a.rY,a.rZ))}c.y=c.y,this.dispatchEvent("enterComment",c),this.runline.push(c)}},a.prototype.sendComment=function(a){console.log("CommentManager.sendComment is deprecated. Please use send instead"),this.send(a)},a.prototype.finish=function(a){this.dispatchEvent("exitComment",a),this.stage.removeChild(a.dom);var b=this.runline.indexOf(a);switch(b>=0&&this.runline.splice(b,1),a.mode){default:case 1:this.csa.scroll.remove(a);break;case 2:this.csa.scrollbtm.remove(a);break;case 4:this.csa.bottom.remove(a);break;case 5:this.csa.top.remove(a);break;case 6:this.csa.reverse.remove(a);break;case 7:}},a.prototype.addEventListener=function(a,b){"undefined"!=typeof this._listeners[a]?this._listeners[a].push(b):this._listeners[a]=[b]},a.prototype.dispatchEvent=function(a,b){if("undefined"!=typeof this._listeners[a])for(var c=0;c - - + + - -
@@ -60,8 +58,6 @@

AcFun (Experimental)

XSS

Filters:
- Apply Center-Transparency
- Apply Center-Speedup
Profiler
Clear Runtime Filters

diff --git a/demo/libxml.js b/demo/libxml.js deleted file mode 100644 index 52e56cb..0000000 --- a/demo/libxml.js +++ /dev/null @@ -1,38 +0,0 @@ -/*********************** -* XMLParser -* Licensed Under the MIT License -* Copyright (c) 2012 Jim Chen ( CQZ, Jabbany ) -************************/ -function CommentLoader(url,xcm,mode){ - if(mode == null) - mode = 'bilibili'; - if (window.XMLHttpRequest){ - xmlhttp=new XMLHttpRequest(); - } - else{ - xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); - } - xmlhttp.open("GET",url,true); - xmlhttp.send(); - var cm = xcm; - xmlhttp.onreadystatechange = function(){ - if (xmlhttp.readyState==4 && xmlhttp.status==200){ - if(mode == 'bilibili'){ - if(navigator.appName == 'Microsoft Internet Explorer'){ - var f = new ActiveXObject("Microsoft.XMLDOM"); - f.async = false; - f.loadXML(xmlhttp.responseText); - cm.load(BilibiliParser(f, xmlhttp.responseText)); - }else{ - cm.load(BilibiliParser(xmlhttp.responseXML, xmlhttp.responseText)); - } - }else if(mode == 'acfun'){ - cm.load(AcfunParser(xmlhttp.responseText)); - } - } - } -} -/************************* -* Tiny Shorthand -**************************/ -$ = function(a){return document.getElementById(a);}; diff --git a/demo/player-demo.htm b/demo/player-demo.htm index 1655ced..5e5cbcf 100644 --- a/demo/player-demo.htm +++ b/demo/player-demo.htm @@ -1,65 +1,70 @@ - - - - - - - - - - - - Testrun Player + + + + + + Testrun Player -
-
- -
- +
+
+ +
+ diff --git a/demo/scripting/ccl.htm b/demo/scripting/ccl.htm index 8905b00..3551806 100644 --- a/demo/scripting/ccl.htm +++ b/demo/scripting/ccl.htm @@ -4,12 +4,9 @@ - + - - - - + - + Testrun Sandbox For CCL /w Scripting Enabled @@ -145,18 +142,48 @@

Tests

} function load(dmf,dmfmd){ - if(dmfmd == null) - dmfmd = 'bilibili'; + if (cm._commentProvider && cm._commentProvider instanceof CommentProvider) { + // Unload the previous comment provider if possible + cm._commentProvider.destroy(); + } + cm._commentProvider = new CommentProvider(); + cm._commentProvider.addTarget(cm); cm.clear(); + // Hook Providers + switch (dmfmd) { + case 'acfun': { + cm._commentProvider.addStaticSource( + CommentProvider.XMLProvider('GET', dmf), + CommentProvider.SOURCE_JSON).addParser(new AcfunFormat.JSONParser(), CommentProvider.SOURCE_JSON); + break; + } + case 'cdf': { + cm._commentProvider.addStaticSource( + CommentProvider.XMLProvider('GET', dmf), + CommentProvider.SOURCE_JSON).addParser(new CommonDanmakuFormat.JSONParser(), CommentProvider.SOURCE_JSON) + break; + } + case 'bilibili': + default: { + cm._commentProvider.addStaticSource( + CommentProvider.XMLProvider('GET', dmf), + CommentProvider.SOURCE_XML).addParser(new BilibiliFormat.XMLParser(), CommentProvider.SOURCE_XML) + break; + } + } start = 0; - try{ + try { clearTimeout(tmr); - }catch(e){} - CommentLoader(dmf,cm,dmfmd); - cm.startTimer(); - start = new Date().getTime(); - lasthead = playhead; - tmr = setInterval(timeupdate,42); + } catch (e) {} + cm._commentProvider.start().then(function () { + cm.startTimer(); + start = new Date().getTime(); + lasthead = playhead; + tmr = setInterval(timeupdate,42); + }).catch(function (e) { + console.error(e); + alert('Failed to load comment file!'); + }); } function stop(){ cm.stopTimer(); diff --git a/demo/scripting/index.htm b/demo/scripting/index.htm index 447e2b6..dde1cac 100644 --- a/demo/scripting/index.htm +++ b/demo/scripting/index.htm @@ -48,8 +48,8 @@ pre.error{color:#f00;} pre.warning{color:#FFC500;} - - + + diff --git a/demo/scripting/sandbox.js b/demo/scripting/sandbox.js index b9b367a..170be3d 100644 --- a/demo/scripting/sandbox.js +++ b/demo/scripting/sandbox.js @@ -1,6 +1,6 @@ var $ = function(e){return window.document.getElementById(e);} window.addEventListener('load',function(){ - window.bscripter = new CCLScripting("../../build/scripting/Worker.js"); + window.bscripter = new CCLScripting("../../dist/scripting/Worker.js"); bscripter.logger = new function(){ this.log = function(t){ $("output").innerHTML = "
" + t.toString() + "
" + $("output").innerHTML; diff --git a/demo/intro/index.htm b/demo/tutorial/index.htm similarity index 90% rename from demo/intro/index.htm rename to demo/tutorial/index.htm index fc01068..7c0fca6 100644 --- a/demo/intro/index.htm +++ b/demo/tutorial/index.htm @@ -5,8 +5,8 @@ This is a Sample of the Library - - + + diff --git a/demo/intro/main.js b/demo/tutorial/main.js similarity index 100% rename from demo/intro/main.js rename to demo/tutorial/main.js diff --git a/demo/intro/my-page-styles.css b/demo/tutorial/my-page-styles.css similarity index 100% rename from demo/intro/my-page-styles.css rename to demo/tutorial/my-page-styles.css diff --git a/dist/CommentCoreLibrary.js b/dist/CommentCoreLibrary.js new file mode 100644 index 0000000..b9beeeb --- /dev/null +++ b/dist/CommentCoreLibrary.js @@ -0,0 +1,1936 @@ +/** + * Binary Search Stubs for JS Arrays + * @license MIT + * @author Jim Chen + */ +var BinArray = (function( ) { + + var BinArray = {}; + + /** + * Performs binary search on the array + * Note: The array MUST ALREADY BE SORTED. Some cases will fail but we don't + * guarantee that we can catch all cases. + * + * @param arr - array to search on + * @param what - element to search for (may not be present) + * @param how - function comparator (a, b). Returns positive value if a > b + * @return index of the element (or index of the element if it were in the array) + **/ + BinArray.bsearch = function (arr, what, how) { + if (!Array.isArray(arr)) { + throw new Error('Bsearch can only be run on arrays'); + } + if (arr.length === 0) { + return 0; + } + if (how(what,arr[0]) < 0) { + return 0; + } + if (how(what,arr[arr.length - 1]) >= 0) { + return arr.length; + } + var low = 0; + var i = 0; + var count = 0; + var high = arr.length - 1; + while (low <= high) { + i = Math.floor((high + low + 1)/2); + count++; + if (how(what,arr[i-1]) >= 0 && how(what,arr[i]) < 0) { + return i; + } else if (how(what,arr[i-1]) < 0) { + high = i-1; + } else if (how(what,arr[i]) >= 0) { + low = i; + } else { + throw new Error('Program Error. Inconsistent comparator or unsorted array!'); + } + if (count > 1500) { + throw new Error('Iteration depth exceeded. Inconsistent comparator or astronomical dataset!'); + } + } + return -1; + }; + + /** + * Insert an element into its position in the array signified by bsearch + * + * @param arr - array to insert into + * @param what - element to insert + * @param how - comparator (see bsearch) + * @return index that the element was inserted to. + **/ + BinArray.binsert = function (arr, what, how) { + var index = BinArray.bsearch(arr,what,how); + arr.splice(index,0,what); + return index; + }; + + return BinArray; +})(); + +var __extends = (this && this.__extends) || function (d, b) { + for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); +}; +var CommentSpaceAllocator = (function () { + function CommentSpaceAllocator(width, height) { + if (width === void 0) { width = 0; } + if (height === void 0) { height = 0; } + this._pools = [ + [] + ]; + this.avoid = 1; + this._width = width; + this._height = height; + } + CommentSpaceAllocator.prototype.willCollide = function (existing, check) { + return existing.stime + existing.ttl >= check.stime + check.ttl / 2; + }; + CommentSpaceAllocator.prototype.pathCheck = function (y, comment, pool) { + var bottom = y + comment.height; + var right = comment.right; + for (var i = 0; i < pool.length; i++) { + if (pool[i].y > bottom || pool[i].bottom < y) { + continue; + } + else if (pool[i].right < comment.x || pool[i].x > right) { + if (this.willCollide(pool[i], comment)) { + return false; + } + else { + continue; + } + } + else { + return false; + } + } + return true; + }; + CommentSpaceAllocator.prototype.assign = function (comment, cindex) { + while (this._pools.length <= cindex) { + this._pools.push([]); + } + var pool = this._pools[cindex]; + if (pool.length === 0) { + comment.cindex = cindex; + return 0; + } + else if (this.pathCheck(0, comment, pool)) { + comment.cindex = cindex; + return 0; + } + var y = 0; + for (var k = 0; k < pool.length; k++) { + y = pool[k].bottom + this.avoid; + if (y + comment.height > this._height) { + break; + } + if (this.pathCheck(y, comment, pool)) { + comment.cindex = cindex; + return y; + } + } + return this.assign(comment, cindex + 1); + }; + CommentSpaceAllocator.prototype.add = function (comment) { + if (comment.height > this._height) { + comment.cindex = -2; + comment.y = 0; + } + else { + comment.y = this.assign(comment, 0); + BinArray.binsert(this._pools[comment.cindex], comment, function (a, b) { + if (a.bottom < b.bottom) { + return -1; + } + else if (a.bottom > b.bottom) { + return 1; + } + else { + return 0; + } + }); + } + }; + CommentSpaceAllocator.prototype.remove = function (comment) { + if (comment.cindex < 0) { + return; + } + if (comment.cindex >= this._pools.length) { + throw new Error("cindex out of bounds"); + } + var index = this._pools[comment.cindex].indexOf(comment); + if (index < 0) + return; + this._pools[comment.cindex].splice(index, 1); + }; + CommentSpaceAllocator.prototype.setBounds = function (width, height) { + this._width = width; + this._height = height; + }; + return CommentSpaceAllocator; +}()); +var AnchorCommentSpaceAllocator = (function (_super) { + __extends(AnchorCommentSpaceAllocator, _super); + function AnchorCommentSpaceAllocator() { + _super.apply(this, arguments); + } + AnchorCommentSpaceAllocator.prototype.add = function (comment) { + _super.prototype.add.call(this, comment); + comment.x = (this._width - comment.width) / 2; + }; + AnchorCommentSpaceAllocator.prototype.willCollide = function (a, b) { + return true; + }; + AnchorCommentSpaceAllocator.prototype.pathCheck = function (y, comment, pool) { + var bottom = y + comment.height; + for (var i = 0; i < pool.length; i++) { + if (pool[i].y > bottom || pool[i].bottom < y) { + continue; + } + else { + return false; + } + } + return true; + }; + return AnchorCommentSpaceAllocator; +}(CommentSpaceAllocator)); +//# sourceMappingURL=CommentSpaceAllocator.js.map +var __extends = (this && this.__extends) || function (d, b) { + for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; + function __() { this.constructor = d; } + d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); +}; +var CoreComment = (function () { + function CoreComment(parent, init) { + if (init === void 0) { init = {}; } + this.mode = 1; + this.stime = 0; + this.text = ""; + this.ttl = 4000; + this.dur = 4000; + this.cindex = -1; + this.motion = []; + this.movable = true; + this._alphaMotion = null; + this.absolute = true; + this.align = 0; + this.axis = 0; + this._alpha = 1; + this._size = 25; + this._color = 0xffffff; + this._border = false; + this._shadow = true; + this._font = ""; + if (!parent) { + throw new Error("Comment not bound to comment manager."); + } + else { + this.parent = parent; + } + if (init.hasOwnProperty("stime")) { + this.stime = init["stime"]; + } + if (init.hasOwnProperty("mode")) { + this.mode = init["mode"]; + } + else { + this.mode = 1; + } + if (init.hasOwnProperty("dur")) { + this.dur = init["dur"]; + this.ttl = this.dur; + } + this.dur *= this.parent.options.global.scale; + this.ttl *= this.parent.options.global.scale; + if (init.hasOwnProperty("text")) { + this.text = init["text"]; + } + if (init.hasOwnProperty("motion")) { + this._motionStart = []; + this._motionEnd = []; + this.motion = init["motion"]; + var head = 0; + for (var i = 0; i < init["motion"].length; i++) { + this._motionStart.push(head); + var maxDur = 0; + for (var k in init["motion"][i]) { + var m = init["motion"][i][k]; + maxDur = Math.max(m.dur, maxDur); + if (m.easing === null || m.easing === undefined) { + init["motion"][i][k]["easing"] = CoreComment.LINEAR; + } + } + head += maxDur; + this._motionEnd.push(head); + } + this._curMotion = 0; + } + if (init.hasOwnProperty("color")) { + this._color = init["color"]; + } + if (init.hasOwnProperty("size")) { + this._size = init["size"]; + } + if (init.hasOwnProperty("border")) { + this._border = init["border"]; + } + if (init.hasOwnProperty("opacity")) { + this._alpha = init["opacity"]; + } + if (init.hasOwnProperty("alpha")) { + this._alphaMotion = init["alpha"]; + } + if (init.hasOwnProperty("font")) { + this._font = init["font"]; + } + if (init.hasOwnProperty("x")) { + this._x = init["x"]; + } + if (init.hasOwnProperty("y")) { + this._y = init["y"]; + } + if (init.hasOwnProperty("shadow")) { + this._shadow = init["shadow"]; + } + if (init.hasOwnProperty("align")) { + this.align = init["align"]; + } + if (init.hasOwnProperty("axis")) { + this.axis = init["axis"]; + } + if (init.hasOwnProperty("position")) { + if (init["position"] === "relative") { + this.absolute = false; + if (this.mode < 7) { + console.warn("Using relative position for CSA comment."); + } + } + } + } + CoreComment.prototype.init = function (recycle) { + if (recycle === void 0) { recycle = null; } + if (recycle !== null) { + this.dom = recycle.dom; + } + else { + this.dom = document.createElement("div"); + } + this.dom.className = this.parent.options.global.className; + this.dom.appendChild(document.createTextNode(this.text)); + this.dom.textContent = this.text; + this.dom.innerText = this.text; + this.size = this._size; + if (this._color != 0xffffff) { + this.color = this._color; + } + this.shadow = this._shadow; + if (this._border) { + this.border = this._border; + } + if (this._font !== "") { + this.font = this._font; + } + if (this._x !== undefined) { + this.x = this._x; + } + if (this._y !== undefined) { + this.y = this._y; + } + if (this._alpha !== 1 || this.parent.options.global.opacity < 1) { + this.alpha = this._alpha; + } + if (this.motion.length > 0) { + this.animate(); + } + }; + Object.defineProperty(CoreComment.prototype, "x", { + get: function () { + if (this._x === null || this._x === undefined) { + if (this.axis % 2 === 0) { + if (this.align % 2 === 0) { + this._x = this.dom.offsetLeft; + } + else { + this._x = this.dom.offsetLeft + this.width; + } + } + else { + if (this.align % 2 === 0) { + this._x = this.parent.width - this.dom.offsetLeft; + } + else { + this._x = this.parent.width - this.dom.offsetLeft - this.width; + } + } + } + if (!this.absolute) { + return this._x / this.parent.width; + } + return this._x; + }, + set: function (x) { + this._x = x; + if (!this.absolute) { + this._x *= this.parent.width; + } + if (this.axis % 2 === 0) { + this.dom.style.left = (this._x + (this.align % 2 === 0 ? 0 : -this.width)) + "px"; + } + else { + this.dom.style.right = (this._x + (this.align % 2 === 0 ? -this.width : 0)) + "px"; + } + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(CoreComment.prototype, "y", { + get: function () { + if (this._y === null || this._y === undefined) { + if (this.axis < 2) { + if (this.align < 2) { + this._y = this.dom.offsetTop; + } + else { + this._y = this.dom.offsetTop + this.height; + } + } + else { + if (this.align < 2) { + this._y = this.parent.height - this.dom.offsetTop; + } + else { + this._y = this.parent.height - this.dom.offsetTop - this.height; + } + } + } + if (!this.absolute) { + return this._y / this.parent.height; + } + return this._y; + }, + set: function (y) { + this._y = y; + if (!this.absolute) { + this._y *= this.parent.height; + } + if (this.axis < 2) { + this.dom.style.top = (this._y + (this.align < 2 ? 0 : -this.height)) + "px"; + } + else { + this.dom.style.bottom = (this._y + (this.align < 2 ? -this.height : 0)) + "px"; + } + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(CoreComment.prototype, "bottom", { + get: function () { + var sameDirection = Math.floor(this.axis / 2) === Math.floor(this.align / 2); + return this.y + (sameDirection ? this.height : 0); + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(CoreComment.prototype, "right", { + get: function () { + var sameDirection = this.axis % 2 === this.align % 2; + return this.x + (sameDirection ? this.width : 0); + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(CoreComment.prototype, "width", { + get: function () { + if (this._width === null || this._width === undefined) { + this._width = this.dom.offsetWidth; + } + return this._width; + }, + set: function (w) { + this._width = w; + this.dom.style.width = this._width + "px"; + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(CoreComment.prototype, "height", { + get: function () { + if (this._height === null || this._height === undefined) { + this._height = this.dom.offsetHeight; + } + return this._height; + }, + set: function (h) { + this._height = h; + this.dom.style.height = this._height + "px"; + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(CoreComment.prototype, "size", { + get: function () { + return this._size; + }, + set: function (s) { + this._size = s; + this.dom.style.fontSize = this._size + "px"; + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(CoreComment.prototype, "color", { + get: function () { + return this._color; + }, + set: function (c) { + this._color = c; + var color = c.toString(16); + color = color.length >= 6 ? color : new Array(6 - color.length + 1).join("0") + color; + this.dom.style.color = "#" + color; + if (this._color === 0) { + this.dom.className = this.parent.options.global.className + " rshadow"; + } + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(CoreComment.prototype, "alpha", { + get: function () { + return this._alpha; + }, + set: function (a) { + this._alpha = a; + this.dom.style.opacity = Math.min(this._alpha, this.parent.options.global.opacity) + ""; + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(CoreComment.prototype, "border", { + get: function () { + return this._border; + }, + set: function (b) { + this._border = b; + if (this._border) { + this.dom.style.border = "1px solid #00ffff"; + } + else { + this.dom.style.border = "none"; + } + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(CoreComment.prototype, "shadow", { + get: function () { + return this._shadow; + }, + set: function (s) { + this._shadow = s; + if (!this._shadow) { + this.dom.className = this.parent.options.global.className + " noshadow"; + } + }, + enumerable: true, + configurable: true + }); + Object.defineProperty(CoreComment.prototype, "font", { + get: function () { + return this._font; + }, + set: function (f) { + this._font = f; + if (this._font.length > 0) { + this.dom.style.fontFamily = this._font; + } + else { + this.dom.style.fontFamily = ""; + } + }, + enumerable: true, + configurable: true + }); + CoreComment.prototype.time = function (time) { + this.ttl -= time; + if (this.ttl < 0) { + this.ttl = 0; + } + if (this.movable) { + this.update(); + } + if (this.ttl <= 0) { + this.finish(); + } + }; + CoreComment.prototype.update = function () { + this.animate(); + }; + CoreComment.prototype.invalidate = function () { + this._x = null; + this._y = null; + this._width = null; + this._height = null; + }; + CoreComment.prototype._execMotion = function (currentMotion, time) { + for (var prop in currentMotion) { + if (currentMotion.hasOwnProperty(prop)) { + var m = currentMotion[prop]; + this[prop] = m.easing(Math.min(Math.max(time - m.delay, 0), m.dur), m.from, m.to - m.from, m.dur); + } + } + }; + CoreComment.prototype.animate = function () { + if (this._alphaMotion) { + this.alpha = (this.dur - this.ttl) * (this._alphaMotion["to"] - this._alphaMotion["from"]) / this.dur + this._alphaMotion["from"]; + } + if (this.motion.length === 0) { + return; + } + var ttl = Math.max(this.ttl, 0); + var time = (this.dur - ttl) - this._motionStart[this._curMotion]; + this._execMotion(this.motion[this._curMotion], time); + if (this.dur - ttl > this._motionEnd[this._curMotion]) { + this._curMotion++; + if (this._curMotion >= this.motion.length) { + this._curMotion = this.motion.length - 1; + } + return; + } + }; + CoreComment.prototype.finish = function () { + this.parent.finish(this); + }; + CoreComment.prototype.toString = function () { + return ["[", this.stime, "|", this.ttl, "/", this.dur, "]", "(", this.mode, ")", this.text].join(""); + }; + CoreComment.LINEAR = function (t, b, c, d) { + return t * c / d + b; + }; + return CoreComment; +}()); +var ScrollComment = (function (_super) { + __extends(ScrollComment, _super); + function ScrollComment(parent, data) { + _super.call(this, parent, data); + this.dur *= this.parent.options.scroll.scale; + this.ttl *= this.parent.options.scroll.scale; + } + Object.defineProperty(ScrollComment.prototype, "alpha", { + set: function (a) { + this._alpha = a; + this.dom.style.opacity = Math.min(Math.min(this._alpha, this.parent.options.global.opacity), this.parent.options.scroll.opacity) + ""; + }, + enumerable: true, + configurable: true + }); + ScrollComment.prototype.init = function (recycle) { + if (recycle === void 0) { recycle = null; } + _super.prototype.init.call(this, recycle); + this.x = this.parent.width; + if (this.parent.options.scroll.opacity < 1) { + this.alpha = this._alpha; + } + this.absolute = true; + }; + ScrollComment.prototype.update = function () { + this.x = (this.ttl / this.dur) * (this.parent.width + this.width) - this.width; + }; + return ScrollComment; +}(CoreComment)); +//# sourceMappingURL=Comment.js.map +/*! + * Comment Core Library CommentManager + * @license MIT + * @author Jim Chen + * + * Copyright (c) 2014 Jim Chen + */ +var CommentManager = (function() { + var getRotMatrix = function (yrot, zrot) { + // Courtesy of @StarBrilliant, re-adapted to look better + var DEG2RAD = Math.PI/180; + var yr = yrot * DEG2RAD; + var zr = zrot * DEG2RAD; + var COS = Math.cos; + var SIN = Math.sin; + var matrix = [ + COS(yr) * COS(zr) , COS(yr) * SIN(zr) , SIN(yr) , 0, + (-SIN(zr)) , COS(zr) , 0 , 0, + (-SIN(yr) * COS(zr)) , (-SIN(yr) * SIN(zr)) , COS(yr) , 0, + 0 , 0 , 0 , 1 + ]; + // CSS does not recognize scientific notation (e.g. 1e-6), truncating it. + for (var i = 0; i < matrix.length;i++) { + if (Math.abs(matrix[i]) < 0.000001) { + matrix[i] = 0; + } + } + return "matrix3d(" + matrix.join(",") + ")"; + }; + + var _defaultComparator = function (a,b) { + if (a.stime > b.stime) { + return 2; + } else if (a.stime < b.stime) { + return -2; + } else { + if (a.date > b.date) { + return 1; + } else if (a.date < b.date) { + return -1; + } else if (a.dbid != null && b.dbid != null) { + if (a.dbid > b.dbid) { + return 1; + } else if (a.dbid < b.dbid) { + return -1; + } + return 0; + } else { + return 0; + } + } + }; + + function CommentManager(stageObject){ + var __timer = 0; + + this._listeners = {}; + this._lastPosition = 0; + + this.stage = stageObject; + this.options = { + global:{ + opacity:1, + scale:1, + className:"cmt" + }, + scroll:{ + opacity:1, + scale:1 + }, + limit: 0 + }; + this.timeline = []; + this.runline = []; + this.position = 0; + this.limiter = 0; + this.filter = null; + this.csa = { + scroll: new CommentSpaceAllocator(0,0), + top: new AnchorCommentSpaceAllocator(0,0), + bottom: new AnchorCommentSpaceAllocator(0,0), + reverse: new CommentSpaceAllocator(0,0), + scrollbtm: new CommentSpaceAllocator(0,0) + }; + + /** Precompute the offset width **/ + this.width = this.stage.offsetWidth; + this.height = this.stage.offsetHeight; + this.startTimer = function () { + if (__timer > 0) { + return; + } + var lastTPos = new Date().getTime(); + var cmMgr = this; + __timer = window.setInterval(function () { + var elapsed = new Date().getTime() - lastTPos; + lastTPos = new Date().getTime(); + cmMgr.onTimerEvent(elapsed,cmMgr); + },10); + }; + this.stopTimer = function () { + window.clearInterval(__timer); + __timer = 0; + }; + } + + /** Public **/ + CommentManager.prototype.stop = function(){ + this.stopTimer(); + }; + + CommentManager.prototype.start = function(){ + this.startTimer(); + }; + + CommentManager.prototype.seek = function(time){ + this.position = BinArray.bsearch(this.timeline, time, function(a,b){ + if (a < b.stime) { + return -1 + } else if(a > b.stime) { + return 1; + } else { + return 0; + } + }); + }; + + CommentManager.prototype.validate = function(cmt){ + if (cmt == null) { + return false; + } + return this.filter.doValidate(cmt); + }; + + CommentManager.prototype.load = function(a){ + this.timeline = a; + this.timeline.sort(_defaultComparator); + this.dispatchEvent("load"); + }; + + CommentManager.prototype.insert = function(c){ + var index = BinArray.binsert(this.timeline, c, _defaultComparator); + if (index <= this.position) { + this.position++; + } + this.dispatchEvent("insert"); + }; + + CommentManager.prototype.clear = function () { + while (this.runline.length > 0) { + this.runline[0].finish(); + } + this.dispatchEvent("clear"); + }; + + CommentManager.prototype.setBounds = function () { + this.width = this.stage.offsetWidth; + this.height= this.stage.offsetHeight; + this.dispatchEvent("resize"); + for (var comAlloc in this.csa) { + this.csa[comAlloc].setBounds(this.width,this.height); + } + // Update 3d perspective + this.stage.style.perspective = this.width * Math.tan(40 * Math.PI/180) / 2 + "px"; + this.stage.style.webkitPerspective = this.width * Math.tan(40 * Math.PI/180) / 2 + "px"; + }; + + CommentManager.prototype.init = function () { + this.setBounds(); + if (this.filter == null) { + this.filter = new CommentFilter(); //Only create a filter if none exist + } + }; + + CommentManager.prototype.time = function (time) { + time = time - 1; + if (this.position >= this.timeline.length || Math.abs(this._lastPosition - time) >= 2000) { + this.seek(time); + this._lastPosition = time; + if (this.timeline.length <= this.position) { + return; + } + } else { + this._lastPosition = time; + } + for (;this.position < this.timeline.length;this.position++) { + if (this.timeline[this.position]['stime']<=time) { + if (this.options.limit > 0 && this.runline.length > this.limiter) { + continue; // Skip comments but still move the position pointer + } else if (this.validate(this.timeline[this.position])) { + this.send(this.timeline[this.position]); + } + } else { + break; + } + } + }; + + CommentManager.prototype.rescale = function () { + + }; + + CommentManager.prototype.send = function (data) { + if (data.mode === 8) { + console.log(data); + if (this.scripting) { + console.log(this.scripting.eval(data.code)); + } + return; + } + if (this.filter != null) { + data = this.filter.doModify(data); + if (data == null) { + return; + } + } + if (data.mode === 1 || data.mode === 2 || data.mode === 6) { + var cmt = new ScrollComment(this, data); + } else { + var cmt = new CoreComment(this, data); + } + switch (cmt.mode) { + case 1:cmt.align = 0;break; + case 2:cmt.align = 2;break; + case 4:cmt.align = 2;break; + case 5:cmt.align = 0;break; + case 6:cmt.align = 1;break; + } + cmt.init(); + this.stage.appendChild(cmt.dom); + switch (cmt.mode) { + default: + case 1:{this.csa.scroll.add(cmt);}break; + case 2:{this.csa.scrollbtm.add(cmt);}break; + case 4:{this.csa.bottom.add(cmt);}break; + case 5:{this.csa.top.add(cmt);}break; + case 6:{this.csa.reverse.add(cmt);}break; + case 17: + case 7:{ + if (data.rY !== 0 || data.rZ !== 0) { + /** TODO: Move this logic into CoreComment instead! **/ + /** TODO: revise when browser manufacturers make up their mind on Transform APIs **/ + cmt.dom.style.transform = getRotMatrix(data.rY, data.rZ); + cmt.dom.style.webkitTransform = getRotMatrix(data.rY, data.rZ); + cmt.dom.style.OTransform = getRotMatrix(data.rY, data.rZ); + cmt.dom.style.MozTransform = getRotMatrix(data.rY, data.rZ); + cmt.dom.style.MSTransform = getRotMatrix(data.rY, data.rZ); + } + }break; + } + cmt.y = cmt.y; + this.dispatchEvent("enterComment", cmt); + this.runline.push(cmt); + }; + + CommentManager.prototype.finish = function (cmt) { + this.dispatchEvent("exitComment", cmt); + this.stage.removeChild(cmt.dom); + var index = this.runline.indexOf(cmt); + if (index >= 0) { + this.runline.splice(index, 1); + } + switch (cmt.mode) { + default: + case 1: {this.csa.scroll.remove(cmt);} break; + case 2: {this.csa.scrollbtm.remove(cmt);} break; + case 4: {this.csa.bottom.remove(cmt);} break; + case 5: {this.csa.top.remove(cmt);} break; + case 6: {this.csa.reverse.remove(cmt);} break; + case 7: break; + } + }; + + CommentManager.prototype.addEventListener = function (event, listener) { + if (typeof this._listeners[event] !== "undefined") { + this._listeners[event].push(listener); + } else { + this._listeners[event] = [listener]; + } + }; + + CommentManager.prototype.dispatchEvent = function (event, data) { + if (typeof this._listeners[event] !== "undefined") { + for (var i = 0; i < this._listeners[event].length; i++) { + try { + this._listeners[event][i](data); + } catch (e) { + console.err(e.stack); + } + } + } + }; + + /** Static Functions **/ + CommentManager.prototype.onTimerEvent = function (timePassed,cmObj) { + for (var i= 0;i < cmObj.runline.length; i++) { + var cmt = cmObj.runline[i]; + cmt.time(timePassed); + } + }; + + return CommentManager; + +})(); + +/** + * Comment Filters Module Simplified (only supports modifiers & types) + * @license MIT + * @author Jim Chen + */ +function CommentFilter() { + this.modifiers = []; + this.runtime = null; + this.allowTypes = { + "1":true, + "4":true, + "5":true, + "6":true, + "7":true, + "8":true, + "17":true + }; + this.doModify = function(cmt){ + for(var k=0;k= 200 && this.status < 300) { + resolve(this.response); + } else { + reject(new Error(this.status + " " + this.statusText)); + } + }; + + xhr.onerror = function () { + reject(new Error(this.status + " " + this.statusText)); + } + + xhr.open(method, uri); + if (typeof body !== 'undefined') { + xhr.send(body); + } else { + xhr.send(); + } + }); + }; + + /** + * Provider for JSON content. This returns a promise that resolves to JSON. + * + * @param method - HTTP method to use + * @param url - Base URL + * @param args - Arguments for query string. Note: This is only used when + * method is POST or PUT + * @param body - Text body content. If not provided will omit a body + * @return Promise that resolves or rejects based on the success or failure + * of the request + **/ + CommentProvider.JSONProvider = function (method, url, args, body) { + return CommentProvider.BaseHttpProvider( + method, url, "json", args, body).then(function (response) { + return response; + }); + }; + + /** + * Provider for XML content. This returns a promise that resolves to Document. + * + * @param method - HTTP method to use + * @param url - Base URL + * @param args - Arguments for query string. Note: This is only used when + * method is POST or PUT + * @param body - Text body content. If not provided will omit a body + * @return Promise that resolves or rejects based on the success or failure + * of the request + **/ + CommentProvider.XMLProvider = function (method, url, args, body) { + return CommentProvider.BaseHttpProvider( + method, url, "document", args, body).then(function (response) { + return response; + }); + }; + + /** + * Provider for text content. This returns a promise that resolves to Text. + * + * @param method - HTTP method to use + * @param url - Base URL + * @param args - Arguments for query string. Note: This is only used when + * method is POST or PUT + * @param body - Text body content. If not provided will omit a body + * @return Promise that resolves or rejects based on the success or failure + * of the request + **/ + CommentProvider.TextProvider = function (method, url, args, body) { + return CommentProvider.BaseHttpProvider( + method, url, "text", args, body).then(function (response) { + return response.text; + }); + }; + + /** + * Attaches a static source to the corresponding type. + * NOTE: Multiple static sources will race to determine the initial comment + * list so it is imperative that they all parse to the SAME content. + * + * @param source - Promise that resolves to one of the supported types + * @param type - Type that the provider resolves to + * @return this + **/ + CommentProvider.prototype.addStaticSource = function (source, type) { + if (this._destroyed) { + throw new Error( + 'Comment provider has been destroyed, ' + + 'cannot attach more sources.'); + } + if (!(type in this._staticSources)) { + this._staticSources[type] = []; + } + this._staticSources[type].push(source); + return this; + }; + + /** + * Attaches a dynamic source to the corresponding type + * NOTE: Multiple dynamic sources will collectively provide comment data. + * + * @param source - Listenable that resolves to one of the supported types + * @param type - Type that the provider resolves to + * @return this + **/ + CommentProvider.prototype.addDynamicSource = function (source, type) { + if (this._destroyed) { + throw new Error( + 'Comment provider has been destroyed, ' + + 'cannot attach more sources.'); + } + if (!(type in this._dynamicSources)) { + this._dynamicSources[type] = []; + } + this._dynamicSources[type].push(source); + return this; + }; + + /** + * Attaches a target comment manager so that we can stream comments to it + * + * @param commentManager - Comment Manager instance to attach to + * @return this + **/ + CommentProvider.prototype.addTarget = function (commentManager) { + if (this._destroyed) { + throw new Error( + 'Comment provider has been destroyed, ' + +'cannot attach more targets.'); + } + if (!(commentManager instanceof CommentManager)) { + throw new Error( + 'Expected the target to be an instance of CommentManager.'); + } + this._targets.push(commentManager); + return this; + }; + + /** + * Adds a parser for an incoming data type. If multiple parsers are added, + * parsers added later take precedence. + * + * @param parser - Parser spec compliant parser + * @param type - Type that the provider resolves to + * @return this + **/ + CommentProvider.prototype.addParser = function (parser, type) { + if (this._destroyed) { + throw new Error( + 'Comment provider has been destroyed, ' + + 'cannot attach more parsers.'); + } + if (!(type in this._parsers)) { + this._parsers[type] = []; + } + this._parsers[type].unshift(parser); + return this; + }; + + CommentProvider.prototype.applyParsersOne = function (data, type) { + return new Promise(function (resolve, reject) { + if (!(type in this._parsers)) { + reject(new Error('No parsers defined for "' + type + '"')); + return;s + } + for (var i = 0; i < this._parsers[type].length; i++) { + var output = null; + try { + output = this._parsers[type][i].parseOne(data); + } catch (e) { + // TODO: log this failure + console.error(e); + } + if (output !== null) { + resolve(output); + return; + } + } + reject(new Error("Ran out of parsers for they target type")); + }.bind(this)); + }; + + CommentProvider.prototype.applyParsersList = function (data, type) { + return new Promise(function (resolve, reject) { + if (!(type in this._parsers)) { + reject(new Error('No parsers defined for "' + type + '"')); + return; + } + for (var i = 0; i < this._parsers[type].length; i++) { + var output = null; + try { + output = this._parsers[type][i].parseMany(data); + } catch (e) { + // TODO: log this failure + console.error(e); + } + if (output !== null) { + resolve(output); + return; + } + } + reject(new Error("Ran out of parsers for the target type")); + }.bind(this)); + }; + + /** + * Reloads static comments + * + * @return Promise that is resolved when the static sources have been + * loaded + */ + CommentProvider.prototype.load = function () { + if (this._destroyed) { + throw new Error('Cannot load sources on a destroyed provider.'); + } + var promises = []; + // TODO: This race logic needs to be rethought to provide redundancy + for (var type in this._staticSources) { + promises.push(Promise.race(this._staticSources[type]) + .then(function (data) { + return this.applyParsersList(data, type); + }.bind(this))); + } + return Promise.race(promises).then(function (commentList) { + for (var i = 0; i < this._targets.length; i++) { + this._targets[i].load(commentList); + } + return Promise.resolve(commentList); + }.bind(this)); + }; + + /** + * Commit the changes and boot up the provider + * + * @return Promise that is resolved when all the static sources are loaded + * and all the dynamic sources are hooked up + **/ + CommentProvider.prototype.start = function () { + if (this._destroyed) { + throw new Error('Cannot start a provider that has been destroyed.'); + } + this._started = true; + return this.load().then(function (commentList) { + // Bind the dynamic sources + for (var type in this._dynamicSources) { + this._dynamicSources[type].foreach(function (source) { + source.addEventListener('receive', function (data) { + for (var i = 0; i < this._targets.length; i++) { + this._targets[i].send( + this.applyParserOne(data, type)); + } + }.bind(this)); + s}.bind(this)); + } + return Promise.resolve(commentList); + }.bind(this)); + }; + + /** + * Send out comments to both dynamic sources and POST targets. + * + * @param commentData - commentData to be sent to the server. Object. + * @param requireAll - Do we require that all servers to accept the comment + * for the promise to resolve. Defaults to true. If + * false, the returned promise will resolve as long as a + * single target accepts. + * @return Promise that is resolved when the server accepts or rejects the + * comment. Dynamic sources will decide based on their promise while + * POST targets are considered accepted if they return a successful + * HTTP response code. + **/ + CommentProvider.prototype.send = function (commentData, requireAll) { + throw new Error('Not implemented'); + }; + + /** + * Stop providing dynamic comments to the targets + * + * @return Promise that is resolved when all bindings between dynamic + * sources have been successfully unloaded. + **/ + CommentProvider.prototype.destroy = function () { + if (this._destroyed) { + return Promise.resolve(); + } + // TODO: implement debinding for sources + this._destroyed = true; + return Promise.resolve(); + }; + + return CommentProvider; +})(); + +/** + * Bilibili Format Parser + * Takes in an XMLDoc/LooseXMLDoc and parses that into a Generic Comment List + * @license MIT License + **/ +var BilibiliFormat = (function () { + var BilibiliFormat = {}; + + // Fix comments to be valid + var _format = function (text) { + return text.replace(/\t/,"\\t"); + }; + + // Fix Mode7 comments when they are bad + var _formatmode7 = function (text) { + if (text.charAt(0) === '[') { + switch (text.charAt(text.length - 1)) { + case ']': + return text; + case '"': + return text + ']'; + case ',': + return text.substring(0, text.length - 1) + '"]'; + default: + return _formatmode7(text.substring(0, text.length - 1)); + } + } else { + return text; + } + }; + + // Try to escape unsafe HTML code. DO NOT trust that this handles all cases + // Please do not allow insecure DOM parsing unless you can trust your input source. + var _escapeUnsafe = function (text) { + text = text.replace(new RegExp("= 7) { + comment.rZ = parseInt(extendedParams[5], 10); + comment.rY = parseInt(extendedParams[6], 10); + } + comment.motion = []; + comment.movable = false; + if (extendedParams.length >= 11) { + comment.movable = true; + var singleStepDur = 500; + var motion = { + 'x': { + 'from': comment.x, + 'to': parseFloat(extendedParams[7]), + 'dur': singleStepDur, + 'delay': 0 + }, + 'y': { + 'from': comment.y, + 'to': parseFloat(extendedParams[8]), + 'dur': singleStepDur, + 'delay': 0 + } + }; + if (extendedParams[9] !== '') { + singleStepDur = parseInt(extendedParams[9], 10); + motion.x.dur = singleStepDur; + motion.y.dur = singleStepDur; + } + if (extendedParams[10] !== '') { + motion.x.delay = parseInt(extendedParams[10], 10); + motion.y.delay = parseInt(extendedParams[10], 10); + } + if (extendedParams.length > 11) { + comment.shadow = (extendedParams[11] !== 'false'); + if (extendedParams[12] != null) { + comment.font = extendedParams[12]; + } + if (extendedParams.length > 14) { + // Support for Bilibili advanced Paths + if (comment.position === 'relative') { + if (this._logBadComments) { + console.warn('Cannot mix relative and absolute positioning!'); + } + comment.position = 'absolute'; + } + var path = extendedParams[14]; + var lastPoint = { + x: motion.x.from, + y: motion.y.from + }; + var pathMotion = []; + var regex = new RegExp("([a-zA-Z])\\s*(\\d+)[, ](\\d+)",'g'); + var counts = path.split(/[a-zA-Z]/).length - 1; + var m = regex.exec(path); + while (m !== null) { + switch (m[1]) { + case 'M': { + lastPoint.x = parseInt(m[2],10); + lastPoint.y = parseInt(m[3],10); + } + break; + case 'L': { + pathMotion.push({ + 'x': { + 'from': lastPoint.x, + 'to': parseInt(m[2],10), + 'dur': singleStepDur / counts, + 'delay': 0 + }, + 'y': { + 'from': lastPoint.y, + 'to': parseInt(m[3],10), + 'dur': singleStepDur / counts, + 'delay': 0 + } + }); + lastPoint.x = parseInt(m[2],10); + lastPoint.y = parseInt(m[3],10); + } + break; + } + m = regex.exec(path); + } + motion = null; + comment.motion = pathMotion; + } + } + if (motion !== null) { + comment.motion.push(motion); + } + } + comment.dur = 2500; + if (extendedParams[3] < 12) { + comment.dur = extendedParams[3] * 1000; + } + var tmp = extendedParams[2].split('-'); + if (tmp != null && tmp.length > 1) { + var alphaFrom = parseFloat(tmp[0]); + var alphaTo = parseFloat(tmp[1]); + comment.opacity = alphaFrom; + if (alphaFrom !== alphaTo) { + comment.alpha = { + 'from':alphaFrom, + 'to':alphaTo + }; + } + } + } catch (e) { + if (this._logBadComments) { + console.warn('Error occurred in JSON parsing. Could not parse comment.'); + console.log('[DEBUG] ' + text); + } + } + } else if(comment.mode === 8) { + comment.code = text; // Code comments are special. Treat them that way. + } else { + if (this._logBadComments) { + console.warn('Unknown comment type : ' + comment.mode + '. Not doing further parsing.'); + console.log('[DEBUG] ' + text); + } + } + } + if (comment.text !== null && typeof comment.text === 'string') { + comment.text = comment.text.replace(/\u25a0/g,"\u2588"); + } + return comment; + }; + + BilibiliFormat.XMLParser.prototype.parseMany = function (xmldoc) { + var elements = []; + try { + elements = xmldoc.getElementsByTagName('d'); + } catch (e) { + // TODO: handle XMLDOC errors. + return null; // Bail, I can't handle + } + var commentList = []; + for (var i = 0; i < elements.length; i++) { + var comment = this.parseOne(elements[i]); + if (comment !== null) { + commentList.push(comment); + } + } + return commentList; + }; + + BilibiliFormat.TextParser = function (params) { + this._allowInsecureDomParsing = true; + this._attemptEscaping = true; + this._canSecureParse = false; + if (typeof params === 'object') { + this._allowInsecureDomParsing = params.allowInsecureDomParsing === false ? false : true; + this._attemptEscaping = params.attemptEscaping === false ? false : true; + } + if (typeof document === 'undefined' || !document || !document.createElement) { + // We can't rely on innerHTML anyways. Maybe we're in a restricted context (i.e. node). + this._allowInsecureDomParsing = false; + } + if (typeof DOMParser !== 'undefined' && DOMParser !== null) { + this._canSecureNativeParse = true; + } + if (this._allowInsecureDomParsing || this._canSecureNativeParse) { + this._xmlParser = new BilibiliFormat.XMLParser(params); + } + }; + + BilibiliFormat.TextParser.prototype.parseOne = function (comment) { + // Attempt to parse a single tokenized tag + if (this._allowInsecureDomParsing) { + var source = comment; + if (this._attemptEscaping) { + source = _escapeUnsafe(source); + } + var temp = document.createElement('div'); + temp.innerHTML = source; + var tags = temp.getElementsByTagName('d'); + if (tags.length !== 1) { + return null; // Can't parse, delegate + } else { + return this._xmlParser.parseOne(tags[0]); + } + } else if (this._canSecureNativeParse) { + var domParser = new DOMParser(); + return this._xmlParser.parseOne( + domParser.parseFromString(comment, 'application/xml')); + } else { + throw new Error('Secure native js parsing not implemented yet.'); + } + }; + + BilibiliFormat.TextParser.prototype.parseMany = function (comment) { + // Attempt to parse a comment list + if (this._allowInsecureDomParsing) { + var source = comment; + if (this._attemptEscaping) { + source = _escapeUnsafe(source); + } + var temp = document.createElement('div'); + temp.innerHTML = source; + return this._xmlParser.parseMany(temp); + } else if (this._canSecureNativeParse) { + var domParser = new DOMParser(); + return this._xmlParser.parseMany( + domParser.parseFromString(comment, 'application/xml')); + } else { + throw new Error('Secure native js parsing not implemented yet.'); + } + }; + + return BilibiliFormat; +})(); + +/** + * AcFun Format Parser + * Takes in JSON and parses it based on current documentation for AcFun comments + * @license MIT License + **/ +var AcfunFormat = (function () { + var AcfunFormat = {}; + + AcfunFormat.JSONParser = function (params) { + this._logBadComments = true; + this._logNotImplemented = false; + if (typeof params === 'object') { + this._logBadComments = params.logBadComments === false ? false : true; + this._logNotImplemented = params.logNotImplemented === true ? true : false; + } + }; + + AcfunFormat.JSONParser.prototype.parseOne = function (comment) { + // Read a comment and generate a correct comment object + var data = {}; + if (typeof comment !== 'object' || comment == null || !comment.hasOwnProperty('c')) { + // This cannot be parsed. The comment contains no config data + return null; + } + var config = comment['c'].split(','); + if (config.length >= 6) { + data.stime = parseFloat(config[0]) * 1000; + data.color = parseInt(config[1]) + data.mode = parseInt(config[2]); + data.size = parseInt(config[3]); + data.hash = config[4]; + data.date = parseInt(config[5]); + data.position = "absolute"; + if (data.mode !== 7) { + // Do some text normalization on low complexity comments + data.text = comment.m.replace(/(\/n|\\n|\n|\r\n|\\r)/g,"\n"); + data.text = data.text.replace(/\r/g,"\n"); + data.text = data.text.replace(/\s/g,"\u00a0"); + } else { + try { + var x = JSON.parse(comment.m); + } catch (e) { + if (this._logBadComments) { + console.warn('Error parsing internal data for comment'); + console.log('[Dbg] ' + data.text); + } + return null; // Can't actually parse this! + } + data.position = "relative"; + data.text = x.n; /*.replace(/\r/g,"\n");*/ + data.text = data.text.replace(/\ /g,"\u00a0"); + if (typeof x.a === 'number') { + data.opacity = x.a; + } else { + data.opacity = 1; + } + if (typeof x.p === 'object') { + // Relative position + data.x = x.p.x / 1000; + data.y = x.p.y / 1000; + } else { + data.x = 0; + data.y = 0; + } + if (typeof x.c === 'number') { + switch (x.c) { + case 0: data.align = 0; break; + case 2: data.align = 1; break; + case 6: data.align = 2; break; + case 8: data.align = 3; break; + default: + if (this._logNotImplemented) { + console.log('Cannot handle aligning to center! AlignMode=' + x.c); + } + } + } + // Use default axis + data.axis = 0; + data.shadow = x.b; + data.dur = 4000; + if (typeof x.l === 'number') { + data.dur = x.l * 1000; + } + if (x.z != null && x.z.length > 0) { + data.movable = true; + data.motion = []; + var moveDuration = 0; + var last = { + x: data.x, + y: data.y, + alpha: data.opacity, + color: data.color + }; + for (var m = 0; m < x.z.length; m++) { + var dur = x.z[m].l != null ? (x.z[m].l * 1000) : 500; + moveDuration += dur; + var motion = {}; + if (x.z[m].hasOwnProperty('rx') && typeof x.z[m].rx === 'number') { + // TODO: Support this + if (this._logNotImplemented) { + console.log('Encountered animated x-axis rotation. Ignoring.'); + } + } + if (x.z[m].hasOwnProperty('e') && typeof x.z[m].e === 'number') { + // TODO: Support this + if (this._logNotImplemented) { + console.log('Encountered animated y-axis rotation. Ignoring.'); + } + } + if (x.z[m].hasOwnProperty('d') && typeof x.z[m].d === 'number') { + // TODO: Support this + if (this._logNotImplemented) { + console.log('Encountered animated z-axis rotation. Ignoring.'); + } + } + if (x.z[m].hasOwnProperty('x') && typeof x.z[m].x === 'number') { + motion.x = { + from: last.x, + to: x.z[m].x / 1000, + dur: dur, + delay: 0 + }; + } + if (x.z[m].hasOwnProperty('y') && typeof x.z[m].y === 'number') { + motion.y = { + from: last.y, + to: x.z[m].y / 1000, + dur: dur, + delay: 0 + }; + } + last.x = motion.hasOwnProperty('x') ? motion.x.to : last.x; + last.y = motion.hasOwnProperty('y') ? motion.y.to : last.y; + if (x.z[m].hasOwnProperty('t') && + typeof x.z[m].t === 'number' && + x.z[m].t !== last.alpha) { + motion.alpha = { + from: last.alpha, + to: x.z[m].t, + dur: dur, + delay: 0 + }; + last.alpha = motion.alpha.to; + } + if (x.z[m].hasOwnProperty('c') && + typeof x.z[m].c === 'number' && + x.z[m].c !== last.color) { + motion.color = { + from: last.color, + to:x.z[m].c, + dur: dur, + delay: 0 + }; + last.color = motion.color.to; + } + data.motion.push(motion); + } + data.dur = moveDuration + (data.moveDelay ? data.moveDelay : 0); + } + if (x.hasOwnProperty('w')) { + if (x.w.hasOwnProperty('f')) { + data.font = x.w.f; + } + if (x.w.hasOwnProperty('l') && Array.isArray(x.w.l)) { + if (x.w.l.length > 0) { + // Filters + if (this._logNotImplemented) { + console.log('[Dbg] Filters not supported! ' + + JSON.stringify(x.w.l)); + } + } + } + } + if (x.r != null && x.k != null) { + data.rX = x.r; + data.rY = x.k; + } + + } + return data; + } else { + // Not enough arguments. + if (this._logBadComments) { + console.warn('Dropping this comment due to insufficient parameters. Got: ' + config.length); + console.log('[Dbg] ' + comment['c']); + } + return null; + } + }; + + AcfunFormat.JSONParser.prototype.parseMany = function (comments) { + if (!Array.isArray(comments)) { + return null; + } + var list = []; + for (var i = 0; i < comments.length; i++) { + var comment = this.parseOne(comments[i]); + if (comment !== null) { + list.push(comment); + } + } + return list; + }; + + AcfunFormat.TextParser = function (param) { + this._jsonParser = new AcfunFormat.JSONParser(param); + } + + AcfunFormat.TextParser.prototype.parseOne = function (comment) { + try { + return this._jsonParser.parseOne(JSON.parse(comment)); + } catch (e) { + console.warn(e); + return null; + } + } + + AcfunFormat.TextParser.prototype.parseMany = function (comment) { + try { + return this._jsonParser.parseMany(JSON.parse(comment)); + } catch (e) { + console.warn(e); + return null; + } + } + + return AcfunFormat; +})(); + +/** + * CommonDanmakuFormat Parser + * Example parser for parsing comments that the CCL can accept directly. + * @license MIT + * @author Jim Chen + **/ + +var CommonDanmakuFormat = (function () { + var CommonDanmakuFormat = {}; + var _check = function () { + // Sanity check to see if we should be parsing these comments or not + if (comment.mode !== "number"|| typeof comment.stime !== "number") { + return false; + } + if (comment.mode === 8 && !(typeof comment.code === "string")) { + return false; + } + if (typeof comment.text !== "string") { + return false; + } + return true; + }; + + CommonDanmakuFormat.JSONParser = function () { }; + CommonDanmakuFormat.JSONParser.prototype.parseOne = function (comment) { + // Refuse to parse the comment does not pass sanity check + return _check(comment) ? comment : null; + }; + + CommonDanmakuFormat.JSONParser.prototype.parseMany = function (comments) { + // Refuse to parse if any comment does not pass sanity check + return comments.every(_check) ? comments : null; + }; + + CommonDanmakuFormat.XMLParser = function () { }; + CommonDanmakuFormat.XMLParser.prototype.parseOne = function (comment) { + var data = {} + data.stime = parseInt(comment.getAttribute('stime')); + data.mode = parseInt(comment.getAttribute('mode')); + data.size = parseInt(comment.getAttribute('size')); + data.color = parseInt(comment.getAttribute('color')); + data.text = comment.textContent; + return data; + }; + + CommonDanmakuFormat.XMLParser.prototype.parseMany = function (comments) { + var comments = comments.getElementsByTagName('comment'); + var commentList = []; + for (var i = 0; i < comments.length; i++) { + var comment = this.parseOne(comments[i]); + if (comment !== null) { + commentList.push(comment); + } + } + return commentList; + }; + + return CommonDanmakuFormat; +})(); diff --git a/dist/CommentCoreLibrary.min.js b/dist/CommentCoreLibrary.min.js new file mode 100644 index 0000000..0c48979 --- /dev/null +++ b/dist/CommentCoreLibrary.min.js @@ -0,0 +1 @@ +/*!Copyright(c) CommentCoreLibrary (//github.com/jabbany/CommentCoreLibrary) - Licensed under the MIT License */function CommentFilter(){this.modifiers=[],this.runtime=null,this.allowTypes={1:!0,4:!0,5:!0,6:!0,7:!0,8:!0,17:!0},this.doModify=function(a){for(var b=0;b=0)return a.length;for(var d=0,e=0,f=0,g=a.length-1;d<=g;){if(e=Math.floor((g+d+1)/2),f++,c(b,a[e-1])>=0&&c(b,a[e])<0)return e;if(c(b,a[e-1])<0)g=e-1;else{if(!(c(b,a[e])>=0))throw new Error("Program Error. Inconsistent comparator or unsorted array!");d=e}if(f>1500)throw new Error("Iteration depth exceeded. Inconsistent comparator or astronomical dataset!")}return-1},a.binsert=function(b,c,d){var e=a.bsearch(b,c,d);return b.splice(e,0,c),e},a}(),__extends=this&&this.__extends||function(a,b){function c(){this.constructor=a}for(var d in b)b.hasOwnProperty(d)&&(a[d]=b[d]);a.prototype=null===b?Object.create(b):(c.prototype=b.prototype,new c)},CommentSpaceAllocator=function(){function a(a,b){void 0===a&&(a=0),void 0===b&&(b=0),this._pools=[[]],this.avoid=1,this._width=a,this._height=b}return a.prototype.willCollide=function(a,b){return a.stime+a.ttl>=b.stime+b.ttl/2},a.prototype.pathCheck=function(a,b,c){for(var d=a+b.height,e=b.right,f=0;fd||c[f].bottome))return!1;if(this.willCollide(c[f],b))return!1}return!0},a.prototype.assign=function(a,b){for(;this._pools.length<=b;)this._pools.push([]);var c=this._pools[b];if(0===c.length)return a.cindex=b,0;if(this.pathCheck(0,a,c))return a.cindex=b,0;for(var d=0,e=0;ethis._height));e++)if(this.pathCheck(d,a,c))return a.cindex=b,d;return this.assign(a,b+1)},a.prototype.add=function(a){a.height>this._height?(a.cindex=-2,a.y=0):(a.y=this.assign(a,0),BinArray.binsert(this._pools[a.cindex],a,function(a,b){return a.bottomb.bottom?1:0}))},a.prototype.remove=function(a){if(!(a.cindex<0)){if(a.cindex>=this._pools.length)throw new Error("cindex out of bounds");var b=this._pools[a.cindex].indexOf(a);b<0||this._pools[a.cindex].splice(b,1)}},a.prototype.setBounds=function(a,b){this._width=a,this._height=b},a}(),AnchorCommentSpaceAllocator=function(a){function b(){a.apply(this,arguments)}return __extends(b,a),b.prototype.add=function(b){a.prototype.add.call(this,b),b.x=(this._width-b.width)/2},b.prototype.willCollide=function(a,b){return!0},b.prototype.pathCheck=function(a,b,c){for(var d=a+b.height,e=0;ed||c[e].bottom0&&this.animate()},Object.defineProperty(a.prototype,"x",{get:function(){return null!==this._x&&void 0!==this._x||(this.axis%2===0?this.align%2===0?this._x=this.dom.offsetLeft:this._x=this.dom.offsetLeft+this.width:this.align%2===0?this._x=this.parent.width-this.dom.offsetLeft:this._x=this.parent.width-this.dom.offsetLeft-this.width),this.absolute?this._x:this._x/this.parent.width},set:function(a){this._x=a,this.absolute||(this._x*=this.parent.width),this.axis%2===0?this.dom.style.left=this._x+(this.align%2===0?0:-this.width)+"px":this.dom.style.right=this._x+(this.align%2===0?-this.width:0)+"px"},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"y",{get:function(){return null!==this._y&&void 0!==this._y||(this.axis<2?this.align<2?this._y=this.dom.offsetTop:this._y=this.dom.offsetTop+this.height:this.align<2?this._y=this.parent.height-this.dom.offsetTop:this._y=this.parent.height-this.dom.offsetTop-this.height),this.absolute?this._y:this._y/this.parent.height},set:function(a){this._y=a,this.absolute||(this._y*=this.parent.height),this.axis<2?this.dom.style.top=this._y+(this.align<2?0:-this.height)+"px":this.dom.style.bottom=this._y+(this.align<2?-this.height:0)+"px"},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"bottom",{get:function(){var a=Math.floor(this.axis/2)===Math.floor(this.align/2);return this.y+(a?this.height:0)},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"right",{get:function(){var a=this.axis%2===this.align%2;return this.x+(a?this.width:0)},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"width",{get:function(){return null!==this._width&&void 0!==this._width||(this._width=this.dom.offsetWidth),this._width},set:function(a){this._width=a,this.dom.style.width=this._width+"px"},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"height",{get:function(){return null!==this._height&&void 0!==this._height||(this._height=this.dom.offsetHeight),this._height},set:function(a){this._height=a,this.dom.style.height=this._height+"px"},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"size",{get:function(){return this._size},set:function(a){this._size=a,this.dom.style.fontSize=this._size+"px"},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"color",{get:function(){return this._color},set:function(a){this._color=a;var b=a.toString(16);b=b.length>=6?b:new Array(6-b.length+1).join("0")+b,this.dom.style.color="#"+b,0===this._color&&(this.dom.className=this.parent.options.global.className+" rshadow")},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"alpha",{get:function(){return this._alpha},set:function(a){this._alpha=a,this.dom.style.opacity=Math.min(this._alpha,this.parent.options.global.opacity)+""},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"border",{get:function(){return this._border},set:function(a){this._border=a,this._border?this.dom.style.border="1px solid #00ffff":this.dom.style.border="none"},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"shadow",{get:function(){return this._shadow},set:function(a){this._shadow=a,this._shadow||(this.dom.className=this.parent.options.global.className+" noshadow")},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,"font",{get:function(){return this._font},set:function(a){this._font=a,this._font.length>0?this.dom.style.fontFamily=this._font:this.dom.style.fontFamily=""},enumerable:!0,configurable:!0}),a.prototype.time=function(a){this.ttl-=a,this.ttl<0&&(this.ttl=0),this.movable&&this.update(),this.ttl<=0&&this.finish()},a.prototype.update=function(){this.animate()},a.prototype.invalidate=function(){this._x=null,this._y=null,this._width=null,this._height=null},a.prototype._execMotion=function(a,b){for(var c in a)if(a.hasOwnProperty(c)){var d=a[c];this[c]=d.easing(Math.min(Math.max(b-d.delay,0),d.dur),d.from,d.to-d.from,d.dur)}},a.prototype.animate=function(){if(this._alphaMotion&&(this.alpha=(this.dur-this.ttl)*(this._alphaMotion.to-this._alphaMotion.from)/this.dur+this._alphaMotion.from),0!==this.motion.length){var a=Math.max(this.ttl,0),b=this.dur-a-this._motionStart[this._curMotion];return this._execMotion(this.motion[this._curMotion],b),this.dur-a>this._motionEnd[this._curMotion]?(this._curMotion++,void(this._curMotion>=this.motion.length&&(this._curMotion=this.motion.length-1))):void 0}},a.prototype.finish=function(){this.parent.finish(this)},a.prototype.toString=function(){return["[",this.stime,"|",this.ttl,"/",this.dur,"]","(",this.mode,")",this.text].join("")},a.LINEAR=function(a,b,c,d){return a*c/d+b},a}(),ScrollComment=function(a){function b(b,c){a.call(this,b,c),this.dur*=this.parent.options.scroll.scale,this.ttl*=this.parent.options.scroll.scale}return __extends(b,a),Object.defineProperty(b.prototype,"alpha",{set:function(a){this._alpha=a,this.dom.style.opacity=Math.min(Math.min(this._alpha,this.parent.options.global.opacity),this.parent.options.scroll.opacity)+""},enumerable:!0,configurable:!0}),b.prototype.init=function(b){void 0===b&&(b=null),a.prototype.init.call(this,b),this.x=this.parent.width,this.parent.options.scroll.opacity<1&&(this.alpha=this._alpha),this.absolute=!0},b.prototype.update=function(){this.x=this.ttl/this.dur*(this.parent.width+this.width)-this.width},b}(CoreComment),CommentManager=function(){function a(a){var b=0;this._listeners={},this._lastPosition=0,this.stage=a,this.options={global:{opacity:1,scale:1,className:"cmt"},scroll:{opacity:1,scale:1},limit:0},this.timeline=[],this.runline=[],this.position=0,this.limiter=0,this.filter=null,this.csa={scroll:new CommentSpaceAllocator(0,0),top:new AnchorCommentSpaceAllocator(0,0),bottom:new AnchorCommentSpaceAllocator(0,0),reverse:new CommentSpaceAllocator(0,0),scrollbtm:new CommentSpaceAllocator(0,0)},this.width=this.stage.offsetWidth,this.height=this.stage.offsetHeight,this.startTimer=function(){if(!(b>0)){var a=(new Date).getTime(),c=this;b=window.setInterval(function(){var b=(new Date).getTime()-a;a=(new Date).getTime(),c.onTimerEvent(b,c)},10)}},this.stopTimer=function(){window.clearInterval(b),b=0}}var b=function(a,b){for(var c=Math.PI/180,d=a*c,e=b*c,f=Math.cos,g=Math.sin,h=[f(d)*f(e),f(d)*g(e),g(d),0,-g(e),f(e),0,0,-g(d)*f(e),-g(d)*g(e),f(d),0,0,0,0,1],i=0;ib.stime?2:a.stimeb.date?1:a.dateb.dbid?1:a.dbidb.stime?1:0})},a.prototype.validate=function(a){return null!=a&&this.filter.doValidate(a)},a.prototype.load=function(a){this.timeline=a,this.timeline.sort(c),this.dispatchEvent("load")},a.prototype.insert=function(a){var b=BinArray.binsert(this.timeline,a,c);b<=this.position&&this.position++,this.dispatchEvent("insert")},a.prototype.clear=function(){for(;this.runline.length>0;)this.runline[0].finish();this.dispatchEvent("clear")},a.prototype.setBounds=function(){this.width=this.stage.offsetWidth,this.height=this.stage.offsetHeight,this.dispatchEvent("resize");for(var a in this.csa)this.csa[a].setBounds(this.width,this.height);this.stage.style.perspective=this.width*Math.tan(40*Math.PI/180)/2+"px",this.stage.style.webkitPerspective=this.width*Math.tan(40*Math.PI/180)/2+"px"},a.prototype.init=function(){this.setBounds(),null==this.filter&&(this.filter=new CommentFilter)},a.prototype.time=function(a){if(a-=1,this.position>=this.timeline.length||Math.abs(this._lastPosition-a)>=2e3){if(this.seek(a),this._lastPosition=a,this.timeline.length<=this.position)return}else this._lastPosition=a;for(;this.position0&&this.runline.length>this.limiter||this.validate(this.timeline[this.position])&&this.send(this.timeline[this.position])},a.prototype.rescale=function(){},a.prototype.send=function(a){if(8===a.mode)return console.log(a),void(this.scripting&&console.log(this.scripting.eval(a.code)));if(null==this.filter||(a=this.filter.doModify(a),null!=a)){if(1===a.mode||2===a.mode||6===a.mode)var c=new ScrollComment(this,a);else var c=new CoreComment(this,a);switch(c.mode){case 1:c.align=0;break;case 2:c.align=2;break;case 4:c.align=2;break;case 5:c.align=0;break;case 6:c.align=1}switch(c.init(),this.stage.appendChild(c.dom),c.mode){default:case 1:this.csa.scroll.add(c);break;case 2:this.csa.scrollbtm.add(c);break;case 4:this.csa.bottom.add(c);break;case 5:this.csa.top.add(c);break;case 6:this.csa.reverse.add(c);break;case 17:case 7:0===a.rY&&0===a.rZ||(c.dom.style.transform=b(a.rY,a.rZ),c.dom.style.webkitTransform=b(a.rY,a.rZ),c.dom.style.OTransform=b(a.rY,a.rZ),c.dom.style.MozTransform=b(a.rY,a.rZ),c.dom.style.MSTransform=b(a.rY,a.rZ))}c.y=c.y,this.dispatchEvent("enterComment",c),this.runline.push(c)}},a.prototype.finish=function(a){this.dispatchEvent("exitComment",a),this.stage.removeChild(a.dom);var b=this.runline.indexOf(a);switch(b>=0&&this.runline.splice(b,1),a.mode){default:case 1:this.csa.scroll.remove(a);break;case 2:this.csa.scrollbtm.remove(a);break;case 4:this.csa.bottom.remove(a);break;case 5:this.csa.top.remove(a);break;case 6:this.csa.reverse.remove(a);break;case 7:}},a.prototype.addEventListener=function(a,b){"undefined"!=typeof this._listeners[a]?this._listeners[a].push(b):this._listeners[a]=[b]},a.prototype.dispatchEvent=function(a,b){if("undefined"!=typeof this._listeners[a])for(var c=0;c=200&&this.status<300?f(this.response):g(new Error(this.status+" "+this.statusText))},h.onerror=function(){g(new Error(this.status+" "+this.statusText))},h.open(a,i),"undefined"!=typeof e?h.send(e):h.send()})},a.JSONProvider=function(b,c,d,e){return a.BaseHttpProvider(b,c,"json",d,e).then(function(a){return a})},a.XMLProvider=function(b,c,d,e){return a.BaseHttpProvider(b,c,"document",d,e).then(function(a){return a})},a.TextProvider=function(b,c,d,e){return a.BaseHttpProvider(b,c,"text",d,e).then(function(a){return a.text})},a.prototype.addStaticSource=function(a,b){if(this._destroyed)throw new Error("Comment provider has been destroyed, cannot attach more sources.");return b in this._staticSources||(this._staticSources[b]=[]),this._staticSources[b].push(a),this},a.prototype.addDynamicSource=function(a,b){if(this._destroyed)throw new Error("Comment provider has been destroyed, cannot attach more sources.");return b in this._dynamicSources||(this._dynamicSources[b]=[]),this._dynamicSources[b].push(a),this},a.prototype.addTarget=function(a){if(this._destroyed)throw new Error("Comment provider has been destroyed, cannot attach more targets.");if(!(a instanceof CommentManager))throw new Error("Expected the target to be an instance of CommentManager.");return this._targets.push(a),this},a.prototype.addParser=function(a,b){if(this._destroyed)throw new Error("Comment provider has been destroyed, cannot attach more parsers.");return b in this._parsers||(this._parsers[b]=[]),this._parsers[b].unshift(a),this},a.prototype.applyParsersOne=function(a,b){return new Promise(function(c,d){if(!(b in this._parsers))return void d(new Error('No parsers defined for "'+b+'"'));for(var e=0;e=7&&(f.rZ=parseInt(g[5],10),f.rY=parseInt(g[6],10)),f.motion=[],f.movable=!1,g.length>=11){f.movable=!0;var h=500,i={x:{from:f.x,to:parseFloat(g[7]),dur:h,delay:0},y:{from:f.y,to:parseFloat(g[8]),dur:h,delay:0}};if(""!==g[9]&&(h=parseInt(g[9],10),i.x.dur=h,i.y.dur=h),""!==g[10]&&(i.x.delay=parseInt(g[10],10),i.y.delay=parseInt(g[10],10)),g.length>11&&(f.shadow="false"!==g[11],null!=g[12]&&(f.font=g[12]),g.length>14)){"relative"===f.position&&(this._logBadComments&&console.warn("Cannot mix relative and absolute positioning!"),f.position="absolute");for(var j=g[14],k={x:i.x.from,y:i.y.from},l=[],m=new RegExp("([a-zA-Z])\\s*(\\d+)[, ](\\d+)","g"),n=j.split(/[a-zA-Z]/).length-1,o=m.exec(j);null!==o;){switch(o[1]){case"M":k.x=parseInt(o[2],10),k.y=parseInt(o[3],10);break;case"L":l.push({x:{from:k.x,to:parseInt(o[2],10),dur:h/n,delay:0},y:{from:k.y,to:parseInt(o[3],10),dur:h/n,delay:0}}),k.x=parseInt(o[2],10),k.y=parseInt(o[3],10)}o=m.exec(j)}i=null,f.motion=l}null!==i&&f.motion.push(i)}f.dur=2500,g[3]<12&&(f.dur=1e3*g[3]);var p=g[2].split("-");if(null!=p&&p.length>1){var q=parseFloat(p[0]),r=parseFloat(p[1]);f.opacity=q,q!==r&&(f.alpha={from:q,to:r})}}catch(a){this._logBadComments&&(console.warn("Error occurred in JSON parsing. Could not parse comment."),console.log("[DEBUG] "+e))}else 8===f.mode?f.code=e:this._logBadComments&&(console.warn("Unknown comment type : "+f.mode+". Not doing further parsing."),console.log("[DEBUG] "+e));return null!==f.text&&"string"==typeof f.text&&(f.text=f.text.replace(/\u25a0/g,"█")),f},a.XMLParser.prototype.parseMany=function(a){var b=[];try{b=a.getElementsByTagName("d")}catch(a){return null}for(var c=[],d=0;d=6){if(b.stime=1e3*parseFloat(c[0]),b.color=parseInt(c[1]),b.mode=parseInt(c[2]),b.size=parseInt(c[3]),b.hash=c[4],b.date=parseInt(c[5]),b.position="absolute",7!==b.mode)b.text=a.m.replace(/(\/n|\\n|\n|\r\n|\\r)/g,"\n"),b.text=b.text.replace(/\r/g,"\n"),b.text=b.text.replace(/\s/g," ");else{try{var d=JSON.parse(a.m)}catch(a){return this._logBadComments&&(console.warn("Error parsing internal data for comment"),console.log("[Dbg] "+b.text)),null}if(b.position="relative",b.text=d.n,b.text=b.text.replace(/\ /g," "),"number"==typeof d.a?b.opacity=d.a:b.opacity=1,"object"==typeof d.p?(b.x=d.p.x/1e3,b.y=d.p.y/1e3):(b.x=0,b.y=0),"number"==typeof d.c)switch(d.c){case 0:b.align=0;break;case 2:b.align=1;break;case 6:b.align=2;break;case 8:b.align=3;break;default:this._logNotImplemented&&console.log("Cannot handle aligning to center! AlignMode="+d.c)}if(b.axis=0,b.shadow=d.b,b.dur=4e3,"number"==typeof d.l&&(b.dur=1e3*d.l),null!=d.z&&d.z.length>0){b.movable=!0,b.motion=[];for(var e=0,f={x:b.x,y:b.y,alpha:b.opacity,color:b.color},g=0;g0&&this._logNotImplemented&&console.log("[Dbg] Filters not supported! "+JSON.stringify(d.w.l))),null!=d.r&&null!=d.k&&(b.rX=d.r,b.rY=d.k)}return b}return this._logBadComments&&(console.warn("Dropping this comment due to insufficient parameters. Got: "+c.length),console.log("[Dbg] "+a.c)),null},a.JSONParser.prototype.parseMany=function(a){if(!Array.isArray(a))return null;for(var b=[],c=0;c right, y -> down + -------------------------------------------- + 0 1 | 1 | x -> left, y -> down + -------------------------------------------- + 1 0 | 2 | x -> right, y -> up + -------------------------------------------- + 1 1 | 3 | x -> left, y -> up + +设定后x,y座标轴的零点方向将改变。 + ### align <Num> = 0 -Alignment: 对齐锚点(方形四角)。此数的高位表示上下,低位表示左右。 - - Byte | Number | Alignment - ----------------------------------------- - 0 0 | 0 | Top Left (Default) - ----------------------------------------- - 0 1 | 1 | Top Right - ----------------------------------------- - 1 0 | 2 | Bottom Left - ----------------------------------------- - 1 1 | 3 | Bottom Right +Alignment: 对齐锚点(方形四角)。此数的高位表示上下,低位表示左右。如果大于 4 则启动中对齐模式。 + + Byte | Number | Alignment + ------------------------------------------ + 0 0 | 0 | Top Left (Default) + ------------------------------------------ + 0 1 | 1 | Top Right + ------------------------------------------ + 1 0 | 2 | Bottom Left + ------------------------------------------ + 1 1 | 3 | Bottom Right + ------------------------------------------ + 1 0 0 | 4 | Top Center + ------------------------------------------ + 1 0 1 | 5 | Center Right + ------------------------------------------ + 1 1 0 | 6 | Bottom Center + ------------------------------------------ + 1 1 1 | 7 | Center Left + ------------------------------------------ + 1 0 0 0 | 8 | Center Center 设定后x,y坐标的锚点将变成对应的方形角。不过,在右和下的对齐时,读取 x,y 坐标不一定准确,而且因为 效率低所以不推荐。比如 top right 模式下,读 x 坐标效率比较低,但是读 y 就要好很多。 +注意:`>4`的模式未必在所有状态下都支持! + ### absolute <Bool> = true Absolute Coordinates: 是否使用绝对坐标。当 `absolute === false` 时,x,y坐标将会表示相对 于整个弹幕管理器的比例,如 `x=0.5` 在 `640 x 480` 的管理器上则会显示在 `320` 位置。 注意:width, height 总会以绝对坐标返回,所以如果需要叠加则必须手动转换到相对坐标。 -### width/height/bottom/right <Num> -Bounding Box: 定义弹幕的宽高和下部右部位置,前两个定义了 top left 顶点,后两个定义了bottom -right顶点。 +### x/y/bottom/right <Num> +Bounding Box: 定义弹幕的四角位置,前两个定义了 top left 顶点,后两个定义了bottom right +顶点。注意:只有 x/y 是主参数,bottom/right 是计算出的属性。 + +### width/height <Num> +Bounding Box: 定义了弹幕的“宽高”。注意:width/height是主参数,用于计算 bottom/right。 ### size <Num> = 25 Font Size: 弹幕的文字大小,请参考 [弹幕大小 Comment Sizes](CommentSizes.md)。更改会更新视图。 diff --git a/docs/CommentProperties.md b/docs/CommentProperties.md index 66a5caa..8382cf2 100644 --- a/docs/CommentProperties.md +++ b/docs/CommentProperties.md @@ -14,7 +14,6 @@ * pool 弹幕池编号 * hash 作者哈希 * border 是否有边框 -* hold 暂停弹幕 * duration 生命周期 * x 横坐标 * y 纵坐标 @@ -29,6 +28,7 @@ * alphaTo 结束透明度 * shadow 文字钩边 * font 文字字体 +* align 对齐 ## 必选参数介绍 ### text @@ -70,10 +70,6 @@ 类型限制:无 弹幕的边框,类型为布尔值,默认为false,最好携带此参数,发送新弹幕的弹幕,默认此值为true。为true时,生成的弹幕对象外围将被蓝色的边框框住。 -### hold - 类型限制:无 -如果此值是true则暂停弹幕不动 - ### duration 类型限制:mode > 6 弹幕生存时间,为微秒计时,决定多少秒后高级/定位弹幕被移除舞台。 @@ -112,3 +108,7 @@ ### font 类型限制:无 设定弹幕渲染字体(如果为空,则使用默认字体)。 + +### align + 类型限制:无 +设定弹幕的对齐角(参考CommentObject)。如果为空则默认取0。 diff --git a/docs/CommentProvider.md b/docs/CommentProvider.md new file mode 100644 index 0000000..8502f45 --- /dev/null +++ b/docs/CommentProvider.md @@ -0,0 +1,70 @@ +# 弹幕源管理器 CommentProvider +弹幕源管理器提供了一套简单的绑定静态或者动态弹幕的系统。使用CommentCoreLibrary并不需要使用 +CommentProvider不过CommentProvider提供了一套更好的载入弹幕的方法。 + +## Properties 属性 + +### SOURCE_JSON <String> = "JSON" [静态] +Static value for JSON data format. 静态的表示 JSON 数据格式的标签 + +### SOURCE_XML <String> = "XML" [静态] +Static value for XML data format. 静态的表示 XML 数据格式的标签 + +### SOURCE_TEXT <String> = "TEXT" [静态] +Static value for TEXT data format. 静态的表示纯文本数据格式的标签 + +## Static Methods 静态方法 + +### BaseHttpProvider(method:String, url:String, responseType:String, args:Object, body:*):Promise +BaseHttpProvider is a built-in static provider that resolves by perfoming an XHR +基础HTTP Provider,内建的静态Provider + +### JSONProvider(method:String, url:String, args:String, body:*):Promise +JSONProvider is a built-in static provider that resolves to a JSON result +基础的JSON Provider,内建的静态Provider提供JSON格式 + +### XMLProvider(method:String, url:String, args:String, body:*):Promise +XMLProvider is a built-in static provider that resolves to a document object +基础的XML Provider,内建的静态Provider提供document(DOM/XML)格式 + +### TextProvider(method:String, url:String, args:String, body:*):Promise +TextProvider is a built-in static provider that resolves to a string +基础的Text Provider,内建的静态Provider提供字符串格式 + +## Methods 方法 +Terminology: +- Static Source 静态源 + + A static source is a source that is loaded once and not continuously + refreshed during playback. 静态源是一个只会被载入一次的源,播放时不会持续刷新这种源。 + +- Dynamic Source 动态源 + + A dynamic source is a source that provides events when new comments arrive. + 动态源是一个可以绑定监听器的源。它会在弹幕到来时触发一些 Event 来提醒弹幕播放器。 + +### addStaticSource(provider:Promise, type:String):this +Adds a static provider (see above for examples) and bind it to provide the +specified type. 添加一个静态弹幕源。 + +### addDynamicSource(source:DynamicSource, type:String):this +Adds a dynamic provider and bind it. 添加并绑定一个动太源。 + +### addTarget(commentManager:CommentManager):this +Adds a target to broadcast comment load data to. This allows hooking multiple +comment managers to the same source. 绑定一个目标弹幕管理器。可以绑定多个弹幕管理器到同一个 +弹幕源系列 + +### addParser(parser:IParser, type:String):this +Adds a parser that parses data format specified by type. 添加一个解析器并绑定到一个 +格式下 + +### load():Promise +(Re)loads the static sources. 载入或重新载入静态弹幕源 + +### start():Promise +Loads and binds all sources, parsers and targets. 绑定并载入所有的源,解析器和目标。 + +### destroy():Promise +Unbind all dynamic sources and destroys the current provider. The provider +cannot be used after calling this method. 解除所有动态源的绑定并关闭目前的Provider diff --git a/docs/Readme.md b/docs/Readme.md index 75c07dc..4d68988 100644 --- a/docs/Readme.md +++ b/docs/Readme.md @@ -1,12 +1,15 @@ -# Readme 文档 +# Documentation 文档 ドキュメント CCL包括一套尽可能完备的文档来帮助二次开发。文档主要针对两个部分:各种东西都是什么,各种东西都应该 怎么用。如果想看看现实里使用了 CCL 的项目,可以参考 [Powered By CCL](PoweredByCCL.md) 里面 的不完全收录。 -## 入门文档(Introduction) +## 入门文档(Tutorial) 想开始对 CCL 的开发却还不太了解 CommentCoreLibrary?希望在自己的项目里使用 CCL 却不熟悉接口? -赶紧来看[入门文档](Intro.md) +赶紧来看: +- [入门文档](Tutorial.zh_CN.md) +- [チュートリアル](Tutorial.ja_JP.md) +- [Quick Tutorial](Tutorial.md) ### 部件参考(Individual Parts) @@ -39,13 +42,13 @@ CommentCore 主体即可。** CommentCore主体可以进行:弹幕呈现和空 对于希望进行完整还原的,可以参考合体配置方法。 ### 架设 CommentCore 主体 -CommentCore主体分为两个重要部分:CSS和JS。在编译后,分别位于`build/style.css` 和 -`build/CommentCoreLibrary.js`。使用时必须保证引用了两个文件(或者在项目中已经合并入两个文件的 +CommentCore主体分为两个重要部分:CSS和JS。在编译后,分别位于`dist/css/style.css` 和 +`dist/CommentCoreLibrary.js`。使用时必须保证引用了两个文件(或者在项目中已经合并入两个文件的 代码),尤其要注意CSS不能没有。 ### 架设 KagerouEngine 引擎 KagerouEngine分为两个部分:JS Host和Worker Client。在编译后,分别位于 -`build/scripting/Host.js` 和 `build/scripting/Worker.js`。架设时,只需在外部引入 +`dist/scripting/Host.js` 和 `dist/scripting/Worker.js`。架设时,只需在外部引入 `Host.js` 然后把 `Worker.js` 的位置,在初始化 `Host` 时传递进入即可。`scripting/` 目录的 结构关系需要保护,以免Worker无法载入相应的需要的运行时库。 diff --git a/docs/Tutorial.ja_JP.md b/docs/Tutorial.ja_JP.md new file mode 100644 index 0000000..c343a9f --- /dev/null +++ b/docs/Tutorial.ja_JP.md @@ -0,0 +1,109 @@ +# チュートリアル +このチュートリアルはWebアプリ開発の初心者向けの簡単なチュートリアルです。 + +## はじめに +架设并开发 CCL 其实不难,首先你要确保你有一个服务器开发环境,比如在本机上安装的 Apache 或者你能访 +问到的在云端安装的 nginx 等等。请先通过浏览器测试你能正确访问该服务器。如果你在本地开发,请尝试访问 + + http://localhost/ + +来测试连同性。 + +**ご注意:** 请注意确保你在服务器环境下开发 CCL ,在开发时如果遇到各种资源无法载入,请确保您的地址栏 +是以 `http:` 或者 `https:` 开头的而不是 `file:` 等等。 + +**ノート:** Linuxを使い場合如果你在linux下开发,任何一个静态Web服务器软件都可。Windows下开发的话,仅作为推荐参考 +可以试试 XAMPP。 + +### ライブラリをダウンロードそしてインストールする +Github 有提供以 Zip 方式下载CCL的选项,但是我们不推荐你这样做。正确使用 CCL 二次开发有两种推荐 +的方法: + +- 作为外部库通过 npm 或者 bower 引入: 只需运行 `npm install comment-core-library --save` + 即可获取最新版的稳定CCL库。通过 `node_modules/comment-core-library/build/` + 可以引用需要的文件。 +- 直接 Clone 下 Git 代码仓库: 通过 `git clone https://github.com/jabbany/CommentCoreLibrary.git` + 即可 Clone下 CCL 的全代码库。建议把工作目录放到 Web 开发服务器下的子文件夹内,如 `/var/www/` + 或者 `D:\webroot\htdocs`下之类的。之后进入 CommentCoreLibrary 文件夹, + 运行 `npm install grunt-cli -g` 和 `npm install` + (注意:可能需要管理员权限) 即可开始开发 + +第一个方式主要用于希望直接挂载 CCL 功能的二次开发,而第二种方式则面向对 CCL 本生的开发有兴趣的人。 + +### 正しい使い方 +CCL编译好的代码在 `dist/` 目录下。有两个文件非常重要: `CommentCoreLibrary.js` 和 `style.css`。 +这两个分别负责CCL的JS引擎部分和CSS呈现部分,不能省略。相对的还有俩 `.min.js`和 `.min.css` 文件 +是上述文件的压缩版。压缩版代码都在一行,较不方便对行号调试,建议开发时采用未压缩版,架设时则可以采取 +压缩版。 + +引用方法为,在对应的HTML文件头部添加 + + + ... 其他头部信息 ... + + + ... 其他头部信息 ... + + +注意文件路径调整合理。 + +之后在相应需要弹幕的位置,放置如下 HTML DOM结构: + +
+
+
+ +其中弹幕结构会在 `container` 这个 div 里插入。采用双层嵌套可以允许你的弹幕 container 于实际容器 +的大小不同,用于实现避开字幕等等功能。 + +### 调用API函数 (API Calls) +调用API目前来说比较容易,在建立好页面dom之后,只要绑定 CommentManager 即可。 + + var CM = new CommentManager(document.getElementById('my-comment-stage')); + CM.init(); // 初始化 + +之后 `CM` 实例会提供如下功能: + + // 载入弹幕列表 + var danmakuList = [ + { + "mode":1, + "text":"Hello World", + "stime":0, + "size":25, + "color":0xffffff + } + ]; + CM.load(danmakuList); + + // 插入弹幕 + var someDanmakuAObj = { + "mode":1, + "text":"Hello CommentCoreLibrary", + "stime":1000, + "size":30, + "color":0xff0000 + }; + CM.insert(someDanmakuAObj); + + // 启动播放弹幕(在未启动状态下弹幕不会移动) + CM.start(); + + // 停止播放(停止弹幕移动) + CM.stop(); + + // 更新时间轴时间 + CM.time(500); + CM.time(1000); + +具体使用的参考可以参考 `demo/tutorial`。内有大部分此示例的代码。 + +### コミュニティ + + +### 弾幕送信 +コメントコアライブラリは送信機能がありませんですが、ユーザのコメントを記録するが欲しい場合、自分でサーバをセットすることは簡単にできます。 + +### 弾幕受信と生放送 +チュートリアルが説明したシステムは +リアルライムで弾幕データを表現する方法は[ここ](DoingItRight.md)に書いています。 diff --git a/docs/Intro.md b/docs/Tutorial.md similarity index 99% rename from docs/Intro.md rename to docs/Tutorial.md index f3b71ec..a30ace4 100644 --- a/docs/Intro.md +++ b/docs/Tutorial.md @@ -21,7 +21,7 @@ Github 有提供以 Zip 方式下载CCL的选项,但是我们不推荐你这 的方法: - 作为外部库通过 npm 或者 bower 引入: 只需运行 `npm install comment-core-library --save` - 即可获取最新版的稳定CCL库。通过 `node_modules/comment-core-library/build/` + 即可获取最新版的稳定CCL库。通过 `node_modules/comment-core-library/dist/` 可以引用需要的文件。 - 直接 Clone 下 Git 代码仓库: 通过 `git clone https://github.com/jabbany/CommentCoreLibrary.git` 即可 Clone下 CCL 的全代码库。建议把工作目录放到 Web 开发服务器下的子文件夹内,如 `/var/www/` diff --git a/docs/Tutorial.zh_CN.md b/docs/Tutorial.zh_CN.md new file mode 100644 index 0000000..26b8d26 --- /dev/null +++ b/docs/Tutorial.zh_CN.md @@ -0,0 +1,106 @@ +# Introduction 入门文档 +入门文档设计为面向有较少 Web 或者 JS 开发经验的开发者们。如果你比较熟悉 Web 开发可以直接阅读 CCL +的设计文档。 + +# 怎么架设 (Deployment) +架设并开发 CCL 其实不难,首先你要确保你有一个服务器开发环境,比如在本机上安装的 Apache 或者你能访 +问到的在云端安装的 nginx 等等。请先通过浏览器测试你能正确访问该服务器。如果你在本地开发,请尝试访问 + + http://localhost/ + +来测试连通性。 + +**注意:** 请注意确保你在服务器环境下开发 CCL ,在开发时如果遇到各种资源无法载入,请确保您的地址栏 +是以 `http:` 或者 `https:` 开头的而不是 `file:` 等等。 + +**附加:** 如果你在linux下开发,任何一个静态Web服务器软件都可。Windows下开发的话,仅作为推荐参考 +可以试试 XAMPP。 + +### 正确的下载类库 (Getting CCL) +Github 有提供以 Zip 方式下载CCL的选项,但是我们不推荐你这样做。正确使用 CCL 二次开发有两种推荐 +的方法: + +- 作为外部库通过 npm 或者 bower 引入: 只需运行 `npm install comment-core-library --save` + 即可获取最新版的稳定CCL库。通过 `node_modules/comment-core-library/dist/` + 可以引用需要的文件。 +- 直接 Clone 下 Git 代码仓库: 通过 `git clone https://github.com/jabbany/CommentCoreLibrary.git` + 即可 Clone下 CCL 的全代码库。建议把工作目录放到 Web 开发服务器下的子文件夹内,如 `/var/www/` + 或者 `D:\webroot\htdocs`下之类的。之后进入 CommentCoreLibrary 文件夹, + 运行 `npm install grunt-cli -g` 和 `npm install` + (注意:可能需要管理员权限) 即可开始开发 + +第一个方式主要用于希望直接挂载 CCL 功能的二次开发,而第二种方式则面向对 CCL 本生的开发有兴趣的人。 + +### 正确的引用库 (Embedding CCL) +CCL编译好的代码在 `dist/` 目录下。有两个文件非常重要: `CommentCoreLibrary.js` 和 `style.css`。 +这两个分别负责CCL的JS引擎部分和CSS呈现部分,不能省略。相对的还有俩 `.min.js`和 `.min.css` 文件 +是上述文件的压缩版。压缩版代码都在一行,较不方便对行号调试,建议开发时采用未压缩版,架设时则可以采取 +压缩版。 + +引用方法为,在对应的HTML文件头部添加 + + + ... 其他头部信息 ... + + + ... 其他头部信息 ... + + +注意文件路径调整合理。 + +之后在相应需要弹幕的位置,放置如下 HTML DOM结构: + +
+
+
+ +其中弹幕结构会在 `container` 这个 div 里插入。采用双层嵌套可以允许你的弹幕 container 于实际容器 +的大小不同,用于实现避开字幕等等功能。 + +### 调用API函数 (API Calls) +调用API目前来说比较容易,在建立好页面dom之后,只要绑定 CommentManager 即可。 + + var CM = new CommentManager(document.getElementById('my-comment-stage')); + CM.init(); // 初始化 + +之后 `CM` 实例会提供如下功能: + + // 载入弹幕列表 + var danmakuList = [ + { + "mode":1, + "text":"Hello World", + "stime":0, + "size":25, + "color":0xffffff + } + ]; + CM.load(danmakuList); + + // 插入弹幕 + var someDanmakuAObj = { + "mode":1, + "text":"Hello CommentCoreLibrary", + "stime":1000, + "size":30, + "color":0xff0000 + }; + CM.insert(someDanmakuAObj); + + // 启动播放弹幕(在未启动状态下弹幕不会移动) + CM.start(); + + // 停止播放(停止弹幕移动) + CM.stop(); + + // 更新时间轴时间 + CM.time(500); + CM.time(1000); + +具体使用的参考可以参考 `demo/tutorial`。内有大部分此示例的代码。 + +### 发送弹幕 (Sending Comments) +CCL自己没有发送弹幕的内建支持,不过实现起来非常轻松。具体实现需要根据自己服务器的需求决定。 + +### 实时弹幕 (Realtime Comments) +参考[推荐的实现方法](DoingItRight.md) diff --git a/docs/data-formats/acfun-json.md b/docs/data-formats/acfun-json.md index 16cb3be..f5b0e41 100644 --- a/docs/data-formats/acfun-json.md +++ b/docs/data-formats/acfun-json.md @@ -1,2 +1,109 @@ -Acfun 弹幕JSON 粗略解析定义文档 -=============== +# Acfun 弹幕JSON 粗略解析定义文档 +以下为探索出的 Acfun 弹幕格式定义。目前 CommentCoreLibrary尚无法完全还原这个格式下的所有定义。 + +## 格式范例 +### v1 + + { + "c": ..., + "m": ... or JSON.stringify({ + "l": ..., + "p": ..., + "pz": ..., + "rx": ..., + "k": ..., + "r": ..., + "e": ..., + "f": ..., + "sz": ..., + "c": ..., + "z": [ ... ] + }), + } + +### v2: + + { + "mode": ..., + "color": ..., + "size": ..., + "user": ..., + "stime": ..., + "time": ..., + "message": ... or JSON.stringify({ + "l": ..., + "p": ..., + "pz": ..., + "rx": ..., + "k": ..., + "r": ..., + "e": ..., + "f": ..., + "sz": ..., + "c": ..., + "z": [ ... ] + }) + } + +## 普通部分 +- `c`: 属性序列,按照如下顺序 + - 开始时间 stime + - 颜色 color + - 模式 mode + - 大小 size + - HASH + - 发送时间 date +- `m`/`message`: 弹幕文字(注意,在mode=7时请参考 高级弹幕 部分) + +## 高级弹幕 `.m`/`.message` +高级弹幕(mode=7)的 `message` 或者 `m` 字段将不再是文本,而是一个JSON编码的对象。 + +### 基础属性 +- `n`: 文字 +- `l`: 弹幕生存时间 [0,999] 单位:秒 +- `p`: x,y坐标 [-2000,2000] 单位:(/1000)% + - `x`: x坐标 + - `y`: y坐标 +- `pz`: z坐标 +- `rx`: x轴旋转 [-3600,3600] 单位:deg +- `k`: y轴旋转 [-3600,3600] 单位:deg +- `r`: z轴旋转 [-3600,3600] 单位:deg +- `e`: x轴拉伸 [-50,50] +- `f`: y轴拉伸 [-50,50] +- `sz`: z轴拉伸 [-50,50] +- `c`: 锚点位置 + - 0: 左上 + - 1: 中上 + - 2: 右上 + - 3: 左中 + - 4: 中中 + - 5: 右中 + - 6: 左下 + - 7: 中下 + - 8: 右下 + +### 移动参数 `.z` +移动参数 `z` 存在时是以数组的形式存在,其中每一个值都可能含有如下属性的一个或多个属性。其中除了 `l` (这个移动的生存时间)以外, +其余参数均是可选参数。如果有参数没出现则表示在这个时间区间内,没出现的参数没有发生变化。 + +- `x`: 新x坐标 +- `y`: 新y坐标 +- `z`: 新z坐标 +- `rx`: 新x轴旋转 +- `e`: 新y轴旋转 +- `d`: 新z轴旋转 +- `f`: 新x轴拉伸 +- `g`: 新y轴拉伸 +- `sz`: 新z轴拉伸 +- `l`: 效果生存时间 +- `t`: 透明度 + +### 属性 `.w` +- `f`: 字体 +- `l`: 滤镜,数组(可合并多个滤镜) + - 模糊 `[0, 水平模糊, 垂直模糊, 质量]` + - 发光 `[1, 颜色, 透明度, 水平模糊, 垂直模糊, 强度, 质量, 内阴影(bool), 挖空(bool)]` + - 投影 `[2, 偏移距离, 角度, 颜色, 透明度, 水平模糊, 垂直模糊, 强度, 质量, 内阴影(bool), 挖空(bool), 只要阴影(bool)]` + - 斜角 `[2, 偏移距离, 角度, highlight颜色, highlight透明度, shadow颜色, shadow透明度, 水平模糊, 垂直模糊, 强度, 质量, 斜角模式(inner, outer, full), 挖空(bool)]` + - 渐变发光 (参考 acfun-filters.swf) + - 渐变斜角 (参考 acfun-filters.swf) diff --git a/package.json b/package.json index 8d6e1aa..45d7f84 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,7 @@ { "name": "comment-core-library", - "description": "Extendable library for displaying danmaku comments.", + "title": "CommentCoreLibrary", + "description": "Javascript library for organizing and displaying danmaku comments", "bugs": { "url": "https://github.com/jabbany/CommentCoreLibrary/issues", "email": "knh.jabbany@gmail.com" @@ -14,10 +15,12 @@ "danmaku", "video", "comments", - "CommentCoreLibrary" + "browser", + "danmu" ], + "main": "dist/CommentCoreLibrary.js", "license": "MIT", - "version": "0.9.3", + "version": "0.11.0", "devDependencies": { "coveralls": "~2.11.0", "grunt": "^1.0.1", diff --git a/spec/Array_spec.coffee b/spec/Array_spec.coffee index ad0498c..051c702 100644 --- a/spec/Array_spec.coffee +++ b/spec/Array_spec.coffee @@ -1,66 +1,90 @@ 'use strict' describe 'BinArray', -> - testAray = null - compare = (a, b)-> a - b + testArray = null + compare = (a, b) -> a - b describe 'bsearch', -> + describe 'error cases', -> + it 'throws when input is not array', -> + expect( => BinArray.bsearch({}, 1, compare)).toThrow() + + it 'throws when comparator is inconsistent/pathologic (infinite loop)', -> + testArray = [1, 3, 5] + hasComparedLess = false + badComparator = (a, b) -> + if a < b + if !hasComparedLess + hasComparedLess = true + return -1 + else + return 1 + else + return 1 + expect( => BinArray.bsearch(testArray, 2, badComparator)).toThrow() + + it 'throws when comparator is inconsistent (impossible case)', -> + testArray = [1, 3, 5] + compareSequence = [1, -1, -1, 1, -1] + badComparator = (a, b) -> compareSequence.shift() + expect( => BinArray.bsearch(testArray, 2, badComparator)).toThrow() + describe 'with empty array', -> - beforeEach -> testAray = [] + beforeEach -> testArray = [] it 'always returns 0', -> - expect(BinArray.bsearch(testAray, 2, compare)).toBe 0 - expect(BinArray.bsearch(testAray, 0, compare)).toBe 0 + expect(BinArray.bsearch(testArray, 2, compare)).toBe 0 + expect(BinArray.bsearch(testArray, 0, compare)).toBe 0 describe 'with [1, 3, 5]', -> - beforeEach -> testAray = [1,3,5] + beforeEach -> testArray = [1, 3, 5] it 'search for 0', -> - expect(BinArray.bsearch(testAray, 0, compare)).toBe 0 + expect(BinArray.bsearch(testArray, 0, compare)).toBe 0 it 'search for 1', -> - expect(BinArray.bsearch(testAray, 1, compare)).toBe 1 + expect(BinArray.bsearch(testArray, 1, compare)).toBe 1 it 'search for 2', -> - expect(BinArray.bsearch(testAray, 2, compare)).toBe 1 + expect(BinArray.bsearch(testArray, 2, compare)).toBe 1 it 'search for 3', -> - expect(BinArray.bsearch(testAray, 3, compare)).toBe 2 + expect(BinArray.bsearch(testArray, 3, compare)).toBe 2 it 'search for 4', -> - expect(BinArray.bsearch(testAray, 4, compare)).toBe 2 + expect(BinArray.bsearch(testArray, 4, compare)).toBe 2 it 'search for 5', -> - expect(BinArray.bsearch(testAray, 5, compare)).toBe 3 + expect(BinArray.bsearch(testArray, 5, compare)).toBe 3 it 'search for 6', -> - expect(BinArray.bsearch(testAray, 6, compare)).toBe 3 + expect(BinArray.bsearch(testArray, 6, compare)).toBe 3 describe 'binsert', -> describe 'with empty array', -> - beforeEach -> testAray = [] + beforeEach -> testArray = [] it 'just insert to array', -> - expect(BinArray.binsert(testAray, 0, compare)).toBe 0 - expect(testAray).toEqual [0] + expect(BinArray.binsert(testArray, 0, compare)).toBe 0 + expect(testArray).toEqual [0] describe 'with [1, 3, 5]', -> - beforeEach -> testAray = [1,3,5] + beforeEach -> testArray = [1,3,5] it 'insert 0', -> - expect(BinArray.binsert(testAray, 0, compare)).toBe 0 - expect(testAray).toEqual [0,1,3,5] + expect(BinArray.binsert(testArray, 0, compare)).toBe 0 + expect(testArray).toEqual [0,1,3,5] it 'insert 1', -> - expect(BinArray.binsert(testAray, 1, compare)).toBe 1 - expect(testAray).toEqual [1,1,3,5] + expect(BinArray.binsert(testArray, 1, compare)).toBe 1 + expect(testArray).toEqual [1,1,3,5] it 'insert 2', -> - expect(BinArray.binsert(testAray, 2, compare)).toBe 1 - expect(testAray).toEqual [1,2,3,5] + expect(BinArray.binsert(testArray, 2, compare)).toBe 1 + expect(testArray).toEqual [1,2,3,5] it 'insert 3', -> - expect(BinArray.binsert(testAray, 3, compare)).toBe 2 - expect(testAray).toEqual [1,3,3,5] + expect(BinArray.binsert(testArray, 3, compare)).toBe 2 + expect(testArray).toEqual [1,3,3,5] it 'insert 4', -> - expect(BinArray.binsert(testAray, 4, compare)).toBe 2 - expect(testAray).toEqual [1,3,4,5] + expect(BinArray.binsert(testArray, 4, compare)).toBe 2 + expect(testArray).toEqual [1,3,4,5] it 'insert 5', -> - expect(BinArray.binsert(testAray, 5, compare)).toBe 3 - expect(testAray).toEqual [1,3,5,5] + expect(BinArray.binsert(testArray, 5, compare)).toBe 3 + expect(testArray).toEqual [1,3,5,5] it 'insert 6', -> - expect(BinArray.binsert(testAray, 6, compare)).toBe 3 - expect(testAray).toEqual [1,3,5,6] + expect(BinArray.binsert(testArray, 6, compare)).toBe 3 + expect(testArray).toEqual [1,3,5,6] diff --git a/spec/CommentCoreLibrary_spec.coffee b/spec/CommentCoreLibrary_spec.coffee index e7cc9da..f68eb0b 100644 --- a/spec/CommentCoreLibrary_spec.coffee +++ b/spec/CommentCoreLibrary_spec.coffee @@ -32,7 +32,7 @@ describe 'CommentManager', -> manager.init() 'addEventListener clear dispatchEvent finish init - insert load onTimerEvent rescale seek send sendComment + insert load onTimerEvent rescale seek send setBounds start stop time validate'.split(/\s/).forEach (method)-> it "has method: '#{method}'", -> @@ -53,11 +53,12 @@ describe 'CommentManager', -> it 'smoking test', -> jasmine.getFixtures().fixturesPath = "test/" - comments = AcfunParser(readFixtures 'ac940133.json') + json = JSON.parse readFixtures 'ac940133.json' + comments = (new AcfunFormat.JSONParser()).parseMany json # TODO: Construct a json that cover all types of comments # and use it for smoking test manager.load comments - expect(manager.timeline.length).toBe 1962 + expect(manager.timeline.length).toBe 2146 describe '.send', -> it 'sends to runline' , -> diff --git a/spec/CommentProvider_spec.coffee b/spec/CommentProvider_spec.coffee new file mode 100644 index 0000000..bb3d93d --- /dev/null +++ b/spec/CommentProvider_spec.coffee @@ -0,0 +1,75 @@ +'use strict' + +describe 'CommentProvider', -> + beforeEach -> + # TODO: remove promises api polyfill when phantomjs supports it + window.Promise = (f) -> + # Don't actually call f + window.Promise.prototype.then = (f) -> this + window.Promise.prototype.catch = (f) -> this + window.Promise.resolve = (f) -> new Promise() + + it 'has constants', -> + expect(CommentProvider.SOURCE_XML).toBe 'XML' + expect(CommentProvider.SOURCE_JSON).toBe 'JSON' + expect(CommentProvider.SOURCE_TEXT).toBe 'TEXT' + + describe '.BaseHTTPProvider', -> + it 'produces a promise', -> + provider = CommentProvider.BaseHttpProvider('GET', '.', 'text') + expect(provider instanceof Promise).toBe true + + describe '.JSONProvider', -> + it 'produces a promise', -> + provider = CommentProvider.JSONProvider('GET', '.') + expect(provider instanceof Promise).toBe true + + it 'dispatches to .BaseHTTPProvider', -> + spy = sinon.spy CommentProvider, 'BaseHttpProvider' + CommentProvider.JSONProvider('GET', '.', {}, '') + expect(spy).toHaveBeenCalledWith 'GET', '.', 'json', {}, '' + CommentProvider.BaseHttpProvider.restore() + + describe '.XMLProvider', -> + it 'produces a promise', -> + provider = CommentProvider.XMLProvider('GET', '.') + expect(provider instanceof Promise).toBe true + + it 'dispatches to .BaseHTTPProvider', -> + spy = sinon.spy CommentProvider, 'BaseHttpProvider' + CommentProvider.XMLProvider('GET', '.', {}, '') + expect(spy).toHaveBeenCalledWith 'GET', '.', 'document', {}, '' + CommentProvider.BaseHttpProvider.restore() + + describe '.TextProvider', -> + it 'produces a promise', -> + provider = CommentProvider.TextProvider('GET', '.') + expect(provider instanceof Promise).toBe true + + it 'dispatches to .BaseHTTPProvider', -> + spy = sinon.spy CommentProvider, 'BaseHttpProvider' + CommentProvider.TextProvider('GET', '.', {}, '') + expect(spy).toHaveBeenCalledWith 'GET', '.', 'text', {}, '' + CommentProvider.BaseHttpProvider.restore() + + describe 'instance CommentProvider', -> + provider = null + + beforeEach -> + provider = new CommentProvider() + + describe '.addStaticSource', -> + it 'accepts static source', -> + promise = {} + provider.addStaticSource(promise, CommentProvider.SOURCE_XML) + expect(provider._staticSources[CommentProvider.SOURCE_XML][0]).toBe promise + + it 'rejects if provider is shut down', -> + provider = new CommentProvider() + provider.destroy() + expect( => provider.addStaticSource({}, CommentProvider.SOURCE_XML)).toThrow() + + describe '.addDynamicSource', -> + + + diff --git a/spec/parsers/AcfunFormat_spec.coffee b/spec/parsers/AcfunFormat_spec.coffee index ac71e8b..d55ebdf 100644 --- a/spec/parsers/AcfunFormat_spec.coffee +++ b/spec/parsers/AcfunFormat_spec.coffee @@ -1,16 +1,39 @@ 'use strict' describe 'AcfunFormat', -> - jasmine.getFixtures().fixturesPath = "test/" - it 'works', -> - json = readFixtures 'ACFun.json' - comments = AcfunParser(json) - expect(comments.length).toBe 155 - expect(comments[0]).toEqual - stime: 98200 - color: 16777215 - mode: 1 - size: 25 - hash: 'guest' - date: 1315564729 - position: 'absolute' - text: '我谢了你的爱' + jasmine.getFixtures().fixturesPath = "test/synthetic/" + textfix = (text) -> text.replace(/\ /g, "\u00a0") + + it 'provides json parser', -> + expect(typeof AcfunFormat.JSONParser).toBe "function" + + describe '.JSONParser', -> + raw = readFixtures 'AcfunFormat.json' + parser = data = null + + beforeEach -> + parser = new AcfunFormat.JSONParser() + data = JSON.parse(raw) + + it 'can parse one', -> + expect(parser.parseOne(data[0])).toEqual + stime: 1000 + color: 16763904 + mode: 5 + size: 25 + hash: 'guest' + date: 1315736602.0 + position: 'absolute' + text: textfix 'This is just some test.' + + it 'can parse list', -> + comments = parser.parseMany(data) + expect(comments.length).toBe 2 + expect(comments[0]).toEqual + stime: 1000 + color: 16763904 + mode: 5 + size: 25 + hash: 'guest' + date: 1315736602.0 + position: 'absolute' + text: textfix 'This is just some test.' diff --git a/spec/parsers/BilibiliFormat_spec.coffee b/spec/parsers/BilibiliFormat_spec.coffee index ca3e54f..2c6ae19 100644 --- a/spec/parsers/BilibiliFormat_spec.coffee +++ b/spec/parsers/BilibiliFormat_spec.coffee @@ -1,35 +1,124 @@ 'use strict' describe 'BilibiliFormat', -> jasmine.getFixtures().fixturesPath = "test/" - it 'parses normal comments', -> - # TODO: Update testing to pass in an XML object instead of - # relying on the unsafe innerHTML. - xml_text = readFixtures 'av207527.xml' - comments = BilibiliParser(null, xml_text) - expect(comments.length).toBe 12546 - expect(comments[0]).toEqual - stime: 15105 - size: 25 - color: 16777215 - mode: 1 - date: 1388314569 - pool: 0 - position: 'absolute' - dbid: 364586099 - hash: '1a87dd40' - border: false - text: '关了弹幕瞬间好多了' - - it 'parses scripting comments', -> - xml_text = readFixtures 'scripting/tsubasa.xml' - comments = BilibiliParser(null, xml_text) - expect(comments.length).toBe 654 - expect(comments[0].mode).toEqual 7 - expect(comments[653].mode).toEqual 8 - - it 'parses advanced comments', -> - xml_text = readFixtures 'boss.xml' - comments = BilibiliParser(null, xml_text) - expect(comments.length).toBe 1000 - expect(comments[0].mode).toEqual 7 - expect(comments[0].motion).not.toBe null + + it 'provides xml parser', -> + expect(typeof BilibiliFormat.XMLParser).toBe 'function' + + it 'provides text parser', -> + expect(typeof BilibiliFormat.TextParser).toBe 'function' + + describe '.XMLParser', -> + parser = null + document = null + + beforeAll -> + xmltext = readFixtures 'av207527.xml' + document = (new DOMParser()).parseFromString xmltext, "application/xml" + beforeEach -> + parser = new BilibiliFormat.XMLParser() + + it 'has sane defaults', -> + expect(parser._attemptFix).toBe true + expect(parser._logBadComments).toBe true + + it 'can be configured', -> + parser = new BilibiliFormat.XMLParser + attemptFix: false + logBadComments: false + expect(parser._attemptFix).toBe false + expect(parser._logBadComments).toBe false + + it 'only accepts xml documents', -> + expect(parser.parseOne "foo").toBe null + expect(parser.parseMany "foo").toBe null + + it 'can parse one', -> + expect(parser.parseOne document.getElementsByTagName('d')[0]).toEqual + stime: 15105 + size: 25 + color: 16777215 + mode: 1 + date: 1388314569 + pool: 0 + position: 'absolute' + dbid: 364586099 + hash: '1a87dd40' + border: false + text: '关了弹幕瞬间好多了' + + it 'can parse many', -> + comments = parser.parseMany document + expect(comments.length).toBe 12546 + expect(comments[0]).toEqual + stime: 15105 + size: 25 + color: 16777215 + mode: 1 + date: 1388314569 + pool: 0 + position: 'absolute' + dbid: 364586099 + hash: '1a87dd40' + border: false + text: '关了弹幕瞬间好多了' + + it 'can parse scripting', -> + xmltext = readFixtures 'scripting/tsubasa.xml' + comments = parser.parseMany (new DOMParser()).parseFromString xmltext, 'application/xml' + expect(comments.length).toBe 654 + expect(comments[0].mode).toEqual 7 + expect(comments[653].mode).toEqual 8 + + it 'can parse advanced', -> + xmltext = readFixtures 'boss.xml' + comments = parser.parseMany (new DOMParser()).parseFromString xmltext, 'application/xml' + expect(comments.length).toBe 1000 + expect(comments[0].mode).toEqual 7 + expect(comments[0].motion).not.toBe null + + describe '.TextParser', -> + parser = null + xmltext = null + + beforeAll -> + xmltext = readFixtures 'av207527.xml' + beforeEach -> + parser = new BilibiliFormat.TextParser() + + it 'has sane defaults', -> + expect(parser._allowInsecureDomParsing).toBe true + expect(parser._attemptEscaping).toBe true + + it 'can be configured', -> + parser = new BilibiliFormat.TextParser + allowInsecureDomParsing: false + attemptEscaping: false + expect(parser._allowInsecureDomParsing).toBe false + expect(parser._attemptEscaping).toBe false + + it 'propagates parameters', -> + parser = new BilibiliFormat.TextParser + attemptFix: false + logBadComments: false + allowInsecureDomParsing: true + expect(parser._xmlParser instanceof BilibiliFormat.XMLParser).toBe true + expect(parser._xmlParser._attemptFix).toBe false + expect(parser._xmlParser._logBadComments).toBe false + + it 'can parse many (insecure dom parsing)', -> + comments = parser.parseMany xmltext + expect(comments.length).toBe 12546 + expect(comments[0]).toEqual + stime: 15105 + size: 25 + color: 16777215 + mode: 1 + date: 1388314569 + pool: 0 + position: 'absolute' + dbid: 364586099 + hash: '1a87dd40' + border: false + text: '关了弹幕瞬间好多了' + diff --git a/src/Array.js b/src/Array.js index 4fde615..3a81b7a 100644 --- a/src/Array.js +++ b/src/Array.js @@ -3,43 +3,69 @@ * @license MIT * @author Jim Chen */ -var BinArray = (function(){ - var BinArray = {}; - BinArray.bsearch = function(arr, what, how){ - if(arr.length === 0) { - return 0; - } - if(how(what,arr[0]) < 0) { - return 0; - } - if(how(what,arr[arr.length - 1]) >=0) { - return arr.length; - } - var low =0; - var i = 0; - var count = 0; - var high = arr.length - 1; - while(low<=high){ - i = Math.floor((high + low + 1)/2); - count++; - if(how(what,arr[i-1])>=0 && how(what,arr[i])<0){ - return i; - } - if(how(what,arr[i-1])<0){ - high = i-1; - }else if(how(what,arr[i])>=0){ - low = i; - }else { - console.error('Program Error'); - } - if(count > 1500) { console.error('Too many run cycles.'); } - } - return -1; // Never actually run - }; - BinArray.binsert = function(arr, what, how){ - var index = BinArray.bsearch(arr,what,how); - arr.splice(index,0,what); - return index; - }; - return BinArray; +var BinArray = (function( ) { + + var BinArray = {}; + + /** + * Performs binary search on the array + * Note: The array MUST ALREADY BE SORTED. Some cases will fail but we don't + * guarantee that we can catch all cases. + * + * @param arr - array to search on + * @param what - element to search for (may not be present) + * @param how - function comparator (a, b). Returns positive value if a > b + * @return index of the element (or index of the element if it were in the array) + **/ + BinArray.bsearch = function (arr, what, how) { + if (!Array.isArray(arr)) { + throw new Error('Bsearch can only be run on arrays'); + } + if (arr.length === 0) { + return 0; + } + if (how(what,arr[0]) < 0) { + return 0; + } + if (how(what,arr[arr.length - 1]) >= 0) { + return arr.length; + } + var low = 0; + var i = 0; + var count = 0; + var high = arr.length - 1; + while (low <= high) { + i = Math.floor((high + low + 1)/2); + count++; + if (how(what,arr[i-1]) >= 0 && how(what,arr[i]) < 0) { + return i; + } else if (how(what,arr[i-1]) < 0) { + high = i-1; + } else if (how(what,arr[i]) >= 0) { + low = i; + } else { + throw new Error('Program Error. Inconsistent comparator or unsorted array!'); + } + if (count > 1500) { + throw new Error('Iteration depth exceeded. Inconsistent comparator or astronomical dataset!'); + } + } + return -1; + }; + + /** + * Insert an element into its position in the array signified by bsearch + * + * @param arr - array to insert into + * @param what - element to insert + * @param how - comparator (see bsearch) + * @return index that the element was inserted to. + **/ + BinArray.binsert = function (arr, what, how) { + var index = BinArray.bsearch(arr,what,how); + arr.splice(index,0,what); + return index; + }; + + return BinArray; })(); diff --git a/src/CommentCanvasLibrary.js b/src/CommentCanvasLibrary.js deleted file mode 100644 index 2418afc..0000000 --- a/src/CommentCanvasLibrary.js +++ /dev/null @@ -1,198 +0,0 @@ -/****** -* Comment Canvas Core For HTML5 VideoPlayers -* Author : Jim Chen -* Licensing : MIT License -******/ -Array.prototype.remove = function(obj){ - for(var a = 0; a < this.length;a++) - if(this[a] == obj){ - this.splice(a,1); - break; - } -}; -Array.prototype.bsearch = function(what,how){ - if(this.length == 0) return 0; - if(how(what,this[0]) < 0) return 0; - if(how(what,this[this.length - 1]) >=0) return this.length; - var low =0; - var i = 0; - var count = 0; - var high = this.length - 1; - while(low<=high){ - i = Math.floor((high + low + 1)/2); - count++; - if(how(what,this[i-1])>=0 && how(what,this[i])<0){ - return i; - }else if(how(what,this[i-1])<0){ - high = i-1; - }else if(how(what,this[i])>=0){ - low = i; - }else - console.error('Program Error'); - if(count > 1500) console.error('Too many run cycles.'); - } - return -1; -}; -Array.prototype.binsert = function(what,how){ - this.splice(this.bsearch(what,how),0,what); -}; -function CommentCore(stage){ - function Comment(data){ - this.position = {x:0,y:0}; - this.width = 0; - this.height = 0; - this.parent = null; - this.ttl = 4000; - this.dur = 4000; - this.data = data; - this.canvas = document.createElement('canvas'); - var context = this.canvas.getContext('2d'); - context.font = "bold " + data.size + "px " + data.font; - context.fillStyle = data.color; - context.strokeStyle = "#000000"; - context.globalAlpha = data.alpha; - context.textBaseline = "top"; - this.width = context.measureText(data.text).width; - //Measure the height - this.height = data.size; - context.strokeText(data.text,0,0); - context.fillText(data.text,0,0); - }; - Comment.prototype.draw = function(){ - var ctx = this.parent.getContext("2d"); - if((this.data.mode == 4 || this.data.mode == 5 || this.data.mode == 7) && this.data.alphaFrom != null && this.data.alphaTo != null){ - ctx.globalAlpha = (this.data.alphaFrom - this.data.alphaTo) * (this.ttl/this.dur) + this.data.alphaTo; - } - //Border problem - if(this.data.border == true){ - ctx.strokeStyle="#00ffff"; - ctx.strokeRect(this.position.x,this.position.y,this.width,this.height); - ctx.strokeRect(this.position.x-0.5,this.position.y-0.5,this.width+1,this.height+1); - ctx.strokeStyle="#000000"; - } - ctx.drawImage(this.canvas,this.position.x,this.position.y); - ctx.globalAlpha = 1;//Reset - }; - //End comment Definition - - function TimeKeeper(tick){ - var _timer = 0; - var _lastTick = 0; - this.interval = tick; - this.isRunning = false; - this.refobj = null;//Reference Object - this.onTick = function(){ - var elapsed = new Date().getTime() - _lastTick; - _lastTick = new Date().getTime(); - if(this.onTimer != null) - this.onTimer(elapsed,this.refobj); - }; - this.start = function(){ - if(this.isRunning) - return; - _lastTick = new Date().getTime(); - var _self = this; - _timer = window.setInterval(function(){_self.onTick();},this.interval); - this.isRunning = true; - }; - this.stop = function(){ - window.clearInterval(_timer); - _timer = 0; - this.isRunning = false; - } - } - //End TimeKeeper - - function CommentManager(stage){ - this.stage = stage; - this.scaleFactor = 1; - this.time = new TimeKeeper(10); - this.timeline = [];//Timeline is filled with Pre-Rendered Comment Data - this.runline = []; - this.position = 0; - this.filter = null; - this.csa = { - scroll: new CommentSpaceAllocator(0,0), - top:new TopCommentSpaceAllocator(0,0), - bottom:new BottomCommentSpaceAllocator(0,0), - reverse:new ReverseCommentSpaceAllocator(0,0), - scrollbtm:new BottomScrollCommentSpaceAllocator(0,0) - }; - var cmObj = this; - this.time.refobj = cmObj; - this.time.onTimer = function(elapsed,ref){ - ref.render(elapsed); - }; - //End - this.setBounds(); - }; - CommentManager.prototype.start = function(){ - this.time.start(); - }; - CommentManager.prototype.stop = function(){ - this.time.stop(); - }; - CommentManager.prototype.setBounds = function(){ - for(var comAlloc in this.csa){ - this.csa[comAlloc].setBounds(this.stage.width,this.stage.height); - } - }; - CommentManager.prototype.render = function (timePassed){ - if(this.runline.length > 0) - this.stage.getContext('2d').clearRect(0,0,this.stage.width,this.stage.height);//Clear - for(var i=0;i b.stime) return 1; - else return 0; - }); - }; - CommentManager.prototype.sendComment = function(data){ - var cmt = new Comment(data); - cmt.parent = this.stage; - switch(cmt.data.mode){ - default: - case 1:{this.csa.scroll.add(cmt);}break; - case 2:{this.csa.scrollbtm.add(cmt);}break; - case 4:{this.csa.bottom.add(cmt);}break; - case 5:{this.csa.top.add(cmt);}break; - case 6:{this.csa.reverse.add(cmt);}break; - } - this.runline.push(cmt); - }; - CommentManager.prototype.finish = function(cmt){ - switch(cmt.data.mode){ - default: - case 1:{this.csa.scroll.remove(cmt);}break; - case 2:{this.csa.scrollbtm.remove(cmt);}break; - case 4:{this.csa.bottom.remove(cmt);}break; - case 5:{this.csa.top.remove(cmt);}break; - case 6:{this.csa.reverse.remove(cmt);}break; - case 7:break; - } - }; - //Do the core stuff now - this.cm = new CommentManager(stage); -} diff --git a/src/CommentCanvasSpaceAllocator.js b/src/CommentCanvasSpaceAllocator.js deleted file mode 100644 index 1537695..0000000 --- a/src/CommentCanvasSpaceAllocator.js +++ /dev/null @@ -1,233 +0,0 @@ -/** -Comment Space Allocators Classes -Licensed Under MIT License -You may create your own. -**/ -function CommentSpaceAllocator(w,h){ - this.width = w; - this.height = h; - this.dur = 4000; - this.pools = [[]]; - this.pool = this.pools[0]; - this.setBounds = function(w,h){this.width = w;this.height = h;}; - this.add = function(cmt){ - if(cmt.height >= this.height){ - cmt.cindex = this.pools.indexOf(this.pool); - cmt.position.y = 0; - }else{ - cmt.cindex = this.pools.indexOf(this.pool); - cmt.position.y = this.setY(cmt); - } - }; - this.remove = function(cmt){ - var tpool = this.pools[cmt.cindex]; - tpool.remove(cmt); - }; - this.validateCmt = function(cmt){ - cmt.bottom = cmt.position.y + cmt.height; - cmt.y = cmt.position.y; - cmt.x = cmt.position.x; - cmt.right = cmt.x + cmt.width; - cmt.top = cmt.y; - cmt.left = cmt.x; - return cmt; - }; - this.setY = function(cmt,index){ - if(!index) - var index = 0; - cmt = this.validateCmt(cmt); - if(this.pools.length <= index){ - this.pools.push([]); - } - this.pool = this.pools[index]; - if(this.pool.length == 0){ - this.pool.push(cmt); - return 0; - } - else if(this.vCheck(0,cmt)){ - this.pool.binsert(cmt,function(a,b){ - if(a.bottom < b.bottom){ - return -1; - }else if (a.bottom == b.bottom){ - return 0; - }else{return 1;} - }); - return cmt.y; - } - var y=0; - for(var k=0;k this.height){ - break; - } - if(this.vCheck(y,cmt)){ - this.pool.binsert(cmt,function(a,b){ - if(a.bottom < b.bottom){ - return -1; - }else if (a.bottom == b.bottom){ - return 0; - }else{return 1;} - }); - return cmt.y; - } - } - this.setY(cmt,index+1); - }; - this.vCheck = function(y,cmt){ - var bottom = y + cmt.height; - var right = cmt.x + cmt.width; - this.validateCmt(cmt); - for(var i=0;i bottom || this.pool[i].bottom < y) - continue; - else if(this.pool[i].right < cmt.x || this.pool[i].x > right){ - if(this.getEnd(this.pool[i]) < this.getMiddle(cmt)) - continue; - else - return false; - }else{ - return false;} - } - cmt.y = y; - cmt.bottom = cmt.height + y; - return true; - }; - this.getEnd = function(cmt){ - return cmt.data.stime + cmt.ttl; - }; - this.getMiddle = function(cmt){ - return cmt.data.stime + (cmt.ttl / 2); - }; -} -function TopCommentSpaceAllocator(w,h){ - var csa = new CommentSpaceAllocator(w,h); - csa.add = function (cmt){ - csa.validateCmt(cmt); - cmt.position.x = (csa.width - cmt.width)/2; - if(cmt.height >= csa.height){ - cmt.cindex = csa.pools.indexOf(csa.pool); - cmt.position.y = 0; - }else{ - cmt.cindex = csa.pools.indexOf(csa.pool); - cmt.position.y = csa.setY(cmt); - } - }; - csa.vCheck = function(y,cmt){ - var bottom = y + cmt.height; - for(var i=0;i bottom || c.bottom < y){ - continue; - }else{ - return false; - } - } - cmt.y = y; - cmt.bottom = cmt.bottom + y; - return true; - }; - this.setBounds = function(w,h){csa.setBounds(w,h);}; - this.add = function(what){csa.add(what);}; - this.remove = function(d){csa.remove(d);}; -} -function BottomCommentSpaceAllocator(w,h){ - var csa = new CommentSpaceAllocator(w,h); - csa.add = function (cmt){ - cmt.style.top = ""; - cmt.style.bottom = "0px"; - csa.validateCmt(cmt); - cmt.style.left = (csa.width - cmt.width)/2 + "px"; - if(cmt.height >= csa.height){ - cmt.cindex = csa.pools.indexOf(csa.pool); - cmt.style.bottom = "0px"; - }else{ - cmt.cindex = csa.pools.indexOf(csa.pool); - cmt.style.bottom = csa.setY(cmt) + "px"; - } - }; - csa.validateCmt = function(cmt){ - cmt.y = csa.height - (cmt.offsetTop + cmt.offsetHeight); - cmt.bottom = cmt.y + cmt.offsetHeight; - cmt.x = cmt.offsetLeft; - cmt.right = cmt.offsetLeft + cmt.offsetWidth; - cmt.height = cmt.offsetHeight; - cmt.width = cmt.offsetWidth; - cmt.top = cmt.y; - cmt.left = cmt.offsetLeft; - return cmt; - }; - csa.vCheck = function(y,cmt){ - var bottom = y + cmt.height; - for(var i=0;i bottom || c.bottom < y){ - continue; - }else{ - return false; - } - } - cmt.y = y; - cmt.bottom = cmt.bottom + y; - return true; - }; - this.setBounds = function(w,h){csa.setBounds(w,h);}; - this.add = function(what){csa.add(what);}; - this.remove = function(d){csa.remove(d);}; -} -function ReverseCommentSpaceAllocator(w,h){ - var csa= new CommentSpaceAllocator(w,h); - csa.vCheck = function(y,cmt){ - var bottom = y + cmt.height; - var right = cmt.x + cmt.width; - this.validateCmt(cmt); - for(var i=0;i bottom || c.bottom < y) - continue; - else if(c.x > right || c.right < cmt.x){ - if(this.getEnd(c) < this.getMiddle(cmt)) - continue; - else - return false; - }else{ - return false;} - } - cmt.y = y; - cmt.bottom = cmt.height + y; - return true; - } - this.setBounds = function(w,h){csa.setBounds(w,h);}; - this.add = function(what){csa.add(what);}; - this.remove = function(d){csa.remove(d);}; -} -function BottomScrollCommentSpaceAllocator(w,h){ - var csa = new CommentSpaceAllocator(w,h); - csa.validateCmt = function(cmt){ - cmt.y = csa.height - (cmt.offsetTop + cmt.offsetHeight); - cmt.bottom = cmt.y + cmt.offsetHeight; - cmt.x = cmt.offsetLeft; - cmt.right = cmt.offsetLeft + cmt.offsetWidth; - cmt.height = cmt.offsetHeight; - cmt.width = cmt.offsetWidth; - cmt.top = cmt.y; - cmt.left = cmt.offsetLeft; - return cmt; - }; - csa.add = function (cmt){ - cmt.style.top = ""; - cmt.style.bottom = "0px"; - csa.validateCmt(cmt); - cmt.style.left = csa.width + "px"; - if(cmt.height >= csa.height){ - cmt.cindex = csa.pools.indexOf(csa.pool); - cmt.style.bottom = "0px"; - }else{ - cmt.cindex = csa.pools.indexOf(csa.pool); - cmt.style.bottom = csa.setY(cmt) + "px"; - } - }; - this.setBounds = function(w,h){csa.setBounds(w,h);}; - this.add = function(what){csa.add(what);}; - this.remove = function(d){csa.remove(d);}; -} \ No newline at end of file diff --git a/src/CommentCoreLibrary.js b/src/CommentCoreLibrary.js deleted file mode 100644 index b515d79..0000000 --- a/src/CommentCoreLibrary.js +++ /dev/null @@ -1,295 +0,0 @@ -/*! - * Comment Core Library CommentManager - * @license MIT - * @author Jim Chen - * - * Copyright (c) 2014 Jim Chen - */ -var CommentManager = (function() { - var getRotMatrix = function(yrot, zrot) { - // Courtesy of @StarBrilliant, re-adapted to look better - var DEG2RAD = Math.PI/180; - var yr = yrot * DEG2RAD; - var zr = zrot * DEG2RAD; - var COS = Math.cos; - var SIN = Math.sin; - var matrix = [ - COS(yr) * COS(zr) , COS(yr) * SIN(zr) , SIN(yr) , 0, - (-SIN(zr)) , COS(zr) , 0 , 0, - (-SIN(yr) * COS(zr)) , (-SIN(yr) * SIN(zr)) , COS(yr) , 0, - 0 , 0 , 0 , 1 - ]; - // CSS does not recognize scientific notation (e.g. 1e-6), truncating it. - for(var i = 0; i < matrix.length;i++){ - if(Math.abs(matrix[i]) < 0.000001){ - matrix[i] = 0; - } - } - return "matrix3d(" + matrix.join(",") + ")"; - }; - - function CommentManager(stageObject){ - var __timer = 0; - - this._listeners = {}; - this._lastPosition = 0; - - this.stage = stageObject; - this.options = { - global:{ - opacity:1, - scale:1, - className:"cmt" - }, - scroll:{ - opacity:1, - scale:1 - }, - limit: 0 - }; - this.timeline = []; - this.runline = []; - this.position = 0; - this.limiter = 0; - this.filter = null; - this.csa = { - scroll: new CommentSpaceAllocator(0,0), - top:new AnchorCommentSpaceAllocator(0,0), - bottom:new AnchorCommentSpaceAllocator(0,0), - reverse:new CommentSpaceAllocator(0,0), - scrollbtm:new CommentSpaceAllocator(0,0) - }; - - /** Precompute the offset width **/ - this.width = this.stage.offsetWidth; - this.height = this.stage.offsetHeight; - this.startTimer = function(){ - if(__timer > 0) - return; - var lastTPos = new Date().getTime(); - var cmMgr = this; - __timer = window.setInterval(function(){ - var elapsed = new Date().getTime() - lastTPos; - lastTPos = new Date().getTime(); - cmMgr.onTimerEvent(elapsed,cmMgr); - },10); - }; - this.stopTimer = function(){ - window.clearInterval(__timer); - __timer = 0; - }; - } - - /** Public **/ - CommentManager.prototype.stop = function(){ - this.stopTimer(); - }; - - CommentManager.prototype.start = function(){ - this.startTimer(); - }; - - CommentManager.prototype.seek = function(time){ - this.position = BinArray.bsearch(this.timeline, time, function(a,b){ - if(a < b.stime) return -1 - else if(a > b.stime) return 1; - else return 0; - }); - }; - - CommentManager.prototype.validate = function(cmt){ - if(cmt == null) - return false; - return this.filter.doValidate(cmt); - }; - - CommentManager.prototype.load = function(a){ - this.timeline = a; - this.timeline.sort(function(a,b){ - if(a.stime > b.stime) return 2; - else if(a.stime < b.stime) return -2; - else{ - if(a.date > b.date) return 1; - else if(a.date < b.date) return -1; - else if(a.dbid != null && b.dbid != null){ - if(a.dbid > b.dbid) return 1; - else if(a.dbid < b.dbid) return -1; - return 0; - }else - return 0; - } - }); - this.dispatchEvent("load"); - }; - - CommentManager.prototype.insert = function(c){ - var index = BinArray.binsert(this.timeline, c, function(a,b){ - if(a.stime > b.stime) return 2; - else if(a.stime < b.stime) return -2; - else{ - if(a.date > b.date) return 1; - else if(a.date < b.date) return -1; - else if(a.dbid != null && b.dbid != null){ - if(a.dbid > b.dbid) return 1; - else if(a.dbid < b.dbid) return -1; - return 0; - }else - return 0; - } - }); - if(index <= this.position){ - this.position++; - } - this.dispatchEvent("insert"); - }; - - CommentManager.prototype.clear = function(){ - while(this.runline.length > 0){ - this.runline[0].finish(); - } - this.dispatchEvent("clear"); - }; - - CommentManager.prototype.setBounds = function(){ - this.width = this.stage.offsetWidth; - this.height= this.stage.offsetHeight; - this.dispatchEvent("resize"); - for(var comAlloc in this.csa){ - this.csa[comAlloc].setBounds(this.width,this.height); - } - // Update 3d perspective - this.stage.style.perspective = this.width * Math.tan(40 * Math.PI/180) / 2 + "px"; - this.stage.style.webkitPerspective = this.width * Math.tan(40 * Math.PI/180) / 2 + "px"; - }; - CommentManager.prototype.init = function(){ - this.setBounds(); - if(this.filter == null) { - this.filter = new CommentFilter(); //Only create a filter if none exist - } - }; - CommentManager.prototype.time = function(time){ - time = time - 1; - if(this.position >= this.timeline.length || Math.abs(this._lastPosition - time) >= 2000){ - this.seek(time); - this._lastPosition = time; - if(this.timeline.length <= this.position) { - return; - } - }else{ - this._lastPosition = time; - } - for(;this.position < this.timeline.length;this.position++){ - if(this.timeline[this.position]['stime']<=time){ - if(this.options.limit > 0 && this.runline.length > this.limiter) { - continue; // Skip comments but still move the position pointer - } else if(this.validate(this.timeline[this.position])){ - this.send(this.timeline[this.position]); - } - }else{ - break; - } - } - }; - CommentManager.prototype.rescale = function(){ - - }; - CommentManager.prototype.send = function(data){ - if(data.mode === 8){ - console.log(data); - if(this.scripting){ - console.log(this.scripting.eval(data.code)); - } - return; - } - if(this.filter != null){ - data = this.filter.doModify(data); - if(data == null) return; - } - if(data.mode === 1 || data.mode === 2 || data.mode === 6){ - var cmt = new ScrollComment(this, data); - }else{ - var cmt = new CoreComment(this, data); - } - switch(cmt.mode){ - case 1:cmt.align = 0;break; - case 2:cmt.align = 2;break; - case 4:cmt.align = 2;break; - case 5:cmt.align = 0;break; - case 6:cmt.align = 1;break; - } - cmt.init(); - this.stage.appendChild(cmt.dom); - switch(cmt.mode){ - default: - case 1:{this.csa.scroll.add(cmt);}break; - case 2:{this.csa.scrollbtm.add(cmt);}break; - case 4:{this.csa.bottom.add(cmt);}break; - case 5:{this.csa.top.add(cmt);}break; - case 6:{this.csa.reverse.add(cmt);}break; - case 17: - case 7:{ - if(data.rY !== 0 || data.rZ !== 0){ - /** TODO: revise when browser manufacturers make up their mind on Transform APIs **/ - cmt.dom.style.transform = getRotMatrix(data.rY, data.rZ); - cmt.dom.style.webkitTransform = getRotMatrix(data.rY, data.rZ); - cmt.dom.style.OTransform = getRotMatrix(data.rY, data.rZ); - cmt.dom.style.MozTransform = getRotMatrix(data.rY, data.rZ); - cmt.dom.style.MSTransform = getRotMatrix(data.rY, data.rZ); - } - }break; - } - cmt.y = cmt.y; - this.dispatchEvent("enterComment", cmt); - this.runline.push(cmt); - }; - CommentManager.prototype.sendComment = function(data){ - console.log("CommentManager.sendComment is deprecated. Please use send instead"); - this.send(data); // Wrapper for Backwards Compatible APIs - }; - CommentManager.prototype.finish = function(cmt){ - this.dispatchEvent("exitComment", cmt); - this.stage.removeChild(cmt.dom); - var index = this.runline.indexOf(cmt); - if(index >= 0){ - this.runline.splice(index, 1); - } - switch(cmt.mode){ - default: - case 1:{this.csa.scroll.remove(cmt);}break; - case 2:{this.csa.scrollbtm.remove(cmt);}break; - case 4:{this.csa.bottom.remove(cmt);}break; - case 5:{this.csa.top.remove(cmt);}break; - case 6:{this.csa.reverse.remove(cmt);}break; - case 7:break; - } - }; - CommentManager.prototype.addEventListener = function(event, listener){ - if(typeof this._listeners[event] !== "undefined"){ - this._listeners[event].push(listener); - }else{ - this._listeners[event] = [listener]; - } - }; - CommentManager.prototype.dispatchEvent = function(event, data){ - if(typeof this._listeners[event] !== "undefined"){ - for(var i = 0; i < this._listeners[event].length; i++){ - try{ - this._listeners[event][i](data); - }catch(e){ - console.err(e.stack); - } - } - } - }; - /** Static Functions **/ - CommentManager.prototype.onTimerEvent = function(timePassed,cmObj){ - for(var i= 0;i < cmObj.runline.length; i++){ - var cmt = cmObj.runline[i]; - if(cmt.hold){ - continue; - } - cmt.time(timePassed); - } - }; - return CommentManager; -})(); diff --git a/src/CommentManager.js b/src/CommentManager.js new file mode 100644 index 0000000..7782b9a --- /dev/null +++ b/src/CommentManager.js @@ -0,0 +1,304 @@ +/*! + * Comment Core Library CommentManager + * @license MIT + * @author Jim Chen + * + * Copyright (c) 2014 Jim Chen + */ +var CommentManager = (function() { + var getRotMatrix = function (yrot, zrot) { + // Courtesy of @StarBrilliant, re-adapted to look better + var DEG2RAD = Math.PI/180; + var yr = yrot * DEG2RAD; + var zr = zrot * DEG2RAD; + var COS = Math.cos; + var SIN = Math.sin; + var matrix = [ + COS(yr) * COS(zr) , COS(yr) * SIN(zr) , SIN(yr) , 0, + (-SIN(zr)) , COS(zr) , 0 , 0, + (-SIN(yr) * COS(zr)) , (-SIN(yr) * SIN(zr)) , COS(yr) , 0, + 0 , 0 , 0 , 1 + ]; + // CSS does not recognize scientific notation (e.g. 1e-6), truncating it. + for (var i = 0; i < matrix.length;i++) { + if (Math.abs(matrix[i]) < 0.000001) { + matrix[i] = 0; + } + } + return "matrix3d(" + matrix.join(",") + ")"; + }; + + var _defaultComparator = function (a,b) { + if (a.stime > b.stime) { + return 2; + } else if (a.stime < b.stime) { + return -2; + } else { + if (a.date > b.date) { + return 1; + } else if (a.date < b.date) { + return -1; + } else if (a.dbid != null && b.dbid != null) { + if (a.dbid > b.dbid) { + return 1; + } else if (a.dbid < b.dbid) { + return -1; + } + return 0; + } else { + return 0; + } + } + }; + + function CommentManager(stageObject){ + var __timer = 0; + + this._listeners = {}; + this._lastPosition = 0; + + this.stage = stageObject; + this.options = { + global:{ + opacity:1, + scale:1, + className:"cmt" + }, + scroll:{ + opacity:1, + scale:1 + }, + limit: 0 + }; + this.timeline = []; + this.runline = []; + this.position = 0; + this.limiter = 0; + this.filter = null; + this.csa = { + scroll: new CommentSpaceAllocator(0,0), + top: new AnchorCommentSpaceAllocator(0,0), + bottom: new AnchorCommentSpaceAllocator(0,0), + reverse: new CommentSpaceAllocator(0,0), + scrollbtm: new CommentSpaceAllocator(0,0) + }; + + /** Precompute the offset width **/ + this.width = this.stage.offsetWidth; + this.height = this.stage.offsetHeight; + this.startTimer = function () { + if (__timer > 0) { + return; + } + var lastTPos = new Date().getTime(); + var cmMgr = this; + __timer = window.setInterval(function () { + var elapsed = new Date().getTime() - lastTPos; + lastTPos = new Date().getTime(); + cmMgr.onTimerEvent(elapsed,cmMgr); + },10); + }; + this.stopTimer = function () { + window.clearInterval(__timer); + __timer = 0; + }; + } + + /** Public **/ + CommentManager.prototype.stop = function(){ + this.stopTimer(); + }; + + CommentManager.prototype.start = function(){ + this.startTimer(); + }; + + CommentManager.prototype.seek = function(time){ + this.position = BinArray.bsearch(this.timeline, time, function(a,b){ + if (a < b.stime) { + return -1 + } else if(a > b.stime) { + return 1; + } else { + return 0; + } + }); + }; + + CommentManager.prototype.validate = function(cmt){ + if (cmt == null) { + return false; + } + return this.filter.doValidate(cmt); + }; + + CommentManager.prototype.load = function(a){ + this.timeline = a; + this.timeline.sort(_defaultComparator); + this.dispatchEvent("load"); + }; + + CommentManager.prototype.insert = function(c){ + var index = BinArray.binsert(this.timeline, c, _defaultComparator); + if (index <= this.position) { + this.position++; + } + this.dispatchEvent("insert"); + }; + + CommentManager.prototype.clear = function () { + while (this.runline.length > 0) { + this.runline[0].finish(); + } + this.dispatchEvent("clear"); + }; + + CommentManager.prototype.setBounds = function () { + this.width = this.stage.offsetWidth; + this.height= this.stage.offsetHeight; + this.dispatchEvent("resize"); + for (var comAlloc in this.csa) { + this.csa[comAlloc].setBounds(this.width,this.height); + } + // Update 3d perspective + this.stage.style.perspective = this.width * Math.tan(40 * Math.PI/180) / 2 + "px"; + this.stage.style.webkitPerspective = this.width * Math.tan(40 * Math.PI/180) / 2 + "px"; + }; + + CommentManager.prototype.init = function () { + this.setBounds(); + if (this.filter == null) { + this.filter = new CommentFilter(); //Only create a filter if none exist + } + }; + + CommentManager.prototype.time = function (time) { + time = time - 1; + if (this.position >= this.timeline.length || Math.abs(this._lastPosition - time) >= 2000) { + this.seek(time); + this._lastPosition = time; + if (this.timeline.length <= this.position) { + return; + } + } else { + this._lastPosition = time; + } + for (;this.position < this.timeline.length;this.position++) { + if (this.timeline[this.position]['stime']<=time) { + if (this.options.limit > 0 && this.runline.length > this.limiter) { + continue; // Skip comments but still move the position pointer + } else if (this.validate(this.timeline[this.position])) { + this.send(this.timeline[this.position]); + } + } else { + break; + } + } + }; + + CommentManager.prototype.rescale = function () { + + }; + + CommentManager.prototype.send = function (data) { + if (data.mode === 8) { + console.log(data); + if (this.scripting) { + console.log(this.scripting.eval(data.code)); + } + return; + } + if (this.filter != null) { + data = this.filter.doModify(data); + if (data == null) { + return; + } + } + if (data.mode === 1 || data.mode === 2 || data.mode === 6) { + var cmt = new ScrollComment(this, data); + } else { + var cmt = new CoreComment(this, data); + } + switch (cmt.mode) { + case 1:cmt.align = 0;break; + case 2:cmt.align = 2;break; + case 4:cmt.align = 2;break; + case 5:cmt.align = 0;break; + case 6:cmt.align = 1;break; + } + cmt.init(); + this.stage.appendChild(cmt.dom); + switch (cmt.mode) { + default: + case 1:{this.csa.scroll.add(cmt);}break; + case 2:{this.csa.scrollbtm.add(cmt);}break; + case 4:{this.csa.bottom.add(cmt);}break; + case 5:{this.csa.top.add(cmt);}break; + case 6:{this.csa.reverse.add(cmt);}break; + case 17: + case 7:{ + if (data.rY !== 0 || data.rZ !== 0) { + /** TODO: Move this logic into CoreComment instead! **/ + /** TODO: revise when browser manufacturers make up their mind on Transform APIs **/ + cmt.dom.style.transform = getRotMatrix(data.rY, data.rZ); + cmt.dom.style.webkitTransform = getRotMatrix(data.rY, data.rZ); + cmt.dom.style.OTransform = getRotMatrix(data.rY, data.rZ); + cmt.dom.style.MozTransform = getRotMatrix(data.rY, data.rZ); + cmt.dom.style.MSTransform = getRotMatrix(data.rY, data.rZ); + } + }break; + } + cmt.y = cmt.y; + this.dispatchEvent("enterComment", cmt); + this.runline.push(cmt); + }; + + CommentManager.prototype.finish = function (cmt) { + this.dispatchEvent("exitComment", cmt); + this.stage.removeChild(cmt.dom); + var index = this.runline.indexOf(cmt); + if (index >= 0) { + this.runline.splice(index, 1); + } + switch (cmt.mode) { + default: + case 1: {this.csa.scroll.remove(cmt);} break; + case 2: {this.csa.scrollbtm.remove(cmt);} break; + case 4: {this.csa.bottom.remove(cmt);} break; + case 5: {this.csa.top.remove(cmt);} break; + case 6: {this.csa.reverse.remove(cmt);} break; + case 7: break; + } + }; + + CommentManager.prototype.addEventListener = function (event, listener) { + if (typeof this._listeners[event] !== "undefined") { + this._listeners[event].push(listener); + } else { + this._listeners[event] = [listener]; + } + }; + + CommentManager.prototype.dispatchEvent = function (event, data) { + if (typeof this._listeners[event] !== "undefined") { + for (var i = 0; i < this._listeners[event].length; i++) { + try { + this._listeners[event][i](data); + } catch (e) { + console.err(e.stack); + } + } + } + }; + + /** Static Functions **/ + CommentManager.prototype.onTimerEvent = function (timePassed,cmObj) { + for (var i= 0;i < cmObj.runline.length; i++) { + var cmt = cmObj.runline[i]; + cmt.time(timePassed); + } + }; + + return CommentManager; + +})(); diff --git a/src/CommentProvider.js b/src/CommentProvider.js index 1981ed5..da27a46 100644 --- a/src/CommentProvider.js +++ b/src/CommentProvider.js @@ -5,10 +5,340 @@ * @author Jim Chen **/ -var CommentProvider = (function(){ - var Provider = function(urlbase){ - - } - - return Provider; -}); +var CommentProvider = (function () { + + function CommentProvider () { + this._started = false; + this._destroyed = false; + this._staticSources = {}; + this._dynamicSources = {}; + this._parsers = {} + this._targets = []; + } + + CommentProvider.SOURCE_JSON = 'JSON'; + CommentProvider.SOURCE_XML = 'XML'; + CommentProvider.SOURCE_TEXT = 'TEXT'; + + /** + * Provider for HTTP content. This returns a promise that resolves to TEXT. + * + * @param method - HTTP method to use + * @param url - Base URL + * @param responseType - type of response expected. + * @param args - Arguments for query string. Note: This is only used when + * method is POST or PUT + * @param body - Text body content. If not provided will omit a body + * @return Promise that resolves or rejects based on the success or failure + * of the request + **/ + CommentProvider.BaseHttpProvider = function (method, url, responseType, args, body) { + return new Promise(function (resolve, reject) { + var xhr = new XMLHttpRequest(); + var uri = url; + if (args && (method === 'POST' || method === 'PUT')) { + uri += '?'; + var argsArray = []; + for (var key in args) { + if (args.hasOwnProperty(key)) { + argsArray.push(encodeURIComponent(key) + + '=' + encodeURIComponent(args[key])); + } + } + uri += argsArray.join('&'); + } + + xhr.responseType = typeof responseType === "string" ? + responseType : ""; + xhr.onload = function () { + if (this.status >= 200 && this.status < 300) { + resolve(this.response); + } else { + reject(new Error(this.status + " " + this.statusText)); + } + }; + + xhr.onerror = function () { + reject(new Error(this.status + " " + this.statusText)); + } + + xhr.open(method, uri); + if (typeof body !== 'undefined') { + xhr.send(body); + } else { + xhr.send(); + } + }); + }; + + /** + * Provider for JSON content. This returns a promise that resolves to JSON. + * + * @param method - HTTP method to use + * @param url - Base URL + * @param args - Arguments for query string. Note: This is only used when + * method is POST or PUT + * @param body - Text body content. If not provided will omit a body + * @return Promise that resolves or rejects based on the success or failure + * of the request + **/ + CommentProvider.JSONProvider = function (method, url, args, body) { + return CommentProvider.BaseHttpProvider( + method, url, "json", args, body).then(function (response) { + return response; + }); + }; + + /** + * Provider for XML content. This returns a promise that resolves to Document. + * + * @param method - HTTP method to use + * @param url - Base URL + * @param args - Arguments for query string. Note: This is only used when + * method is POST or PUT + * @param body - Text body content. If not provided will omit a body + * @return Promise that resolves or rejects based on the success or failure + * of the request + **/ + CommentProvider.XMLProvider = function (method, url, args, body) { + return CommentProvider.BaseHttpProvider( + method, url, "document", args, body).then(function (response) { + return response; + }); + }; + + /** + * Provider for text content. This returns a promise that resolves to Text. + * + * @param method - HTTP method to use + * @param url - Base URL + * @param args - Arguments for query string. Note: This is only used when + * method is POST or PUT + * @param body - Text body content. If not provided will omit a body + * @return Promise that resolves or rejects based on the success or failure + * of the request + **/ + CommentProvider.TextProvider = function (method, url, args, body) { + return CommentProvider.BaseHttpProvider( + method, url, "text", args, body).then(function (response) { + return response.text; + }); + }; + + /** + * Attaches a static source to the corresponding type. + * NOTE: Multiple static sources will race to determine the initial comment + * list so it is imperative that they all parse to the SAME content. + * + * @param source - Promise that resolves to one of the supported types + * @param type - Type that the provider resolves to + * @return this + **/ + CommentProvider.prototype.addStaticSource = function (source, type) { + if (this._destroyed) { + throw new Error( + 'Comment provider has been destroyed, ' + + 'cannot attach more sources.'); + } + if (!(type in this._staticSources)) { + this._staticSources[type] = []; + } + this._staticSources[type].push(source); + return this; + }; + + /** + * Attaches a dynamic source to the corresponding type + * NOTE: Multiple dynamic sources will collectively provide comment data. + * + * @param source - Listenable that resolves to one of the supported types + * @param type - Type that the provider resolves to + * @return this + **/ + CommentProvider.prototype.addDynamicSource = function (source, type) { + if (this._destroyed) { + throw new Error( + 'Comment provider has been destroyed, ' + + 'cannot attach more sources.'); + } + if (!(type in this._dynamicSources)) { + this._dynamicSources[type] = []; + } + this._dynamicSources[type].push(source); + return this; + }; + + /** + * Attaches a target comment manager so that we can stream comments to it + * + * @param commentManager - Comment Manager instance to attach to + * @return this + **/ + CommentProvider.prototype.addTarget = function (commentManager) { + if (this._destroyed) { + throw new Error( + 'Comment provider has been destroyed, ' + +'cannot attach more targets.'); + } + if (!(commentManager instanceof CommentManager)) { + throw new Error( + 'Expected the target to be an instance of CommentManager.'); + } + this._targets.push(commentManager); + return this; + }; + + /** + * Adds a parser for an incoming data type. If multiple parsers are added, + * parsers added later take precedence. + * + * @param parser - Parser spec compliant parser + * @param type - Type that the provider resolves to + * @return this + **/ + CommentProvider.prototype.addParser = function (parser, type) { + if (this._destroyed) { + throw new Error( + 'Comment provider has been destroyed, ' + + 'cannot attach more parsers.'); + } + if (!(type in this._parsers)) { + this._parsers[type] = []; + } + this._parsers[type].unshift(parser); + return this; + }; + + CommentProvider.prototype.applyParsersOne = function (data, type) { + return new Promise(function (resolve, reject) { + if (!(type in this._parsers)) { + reject(new Error('No parsers defined for "' + type + '"')); + return;s + } + for (var i = 0; i < this._parsers[type].length; i++) { + var output = null; + try { + output = this._parsers[type][i].parseOne(data); + } catch (e) { + // TODO: log this failure + console.error(e); + } + if (output !== null) { + resolve(output); + return; + } + } + reject(new Error("Ran out of parsers for they target type")); + }.bind(this)); + }; + + CommentProvider.prototype.applyParsersList = function (data, type) { + return new Promise(function (resolve, reject) { + if (!(type in this._parsers)) { + reject(new Error('No parsers defined for "' + type + '"')); + return; + } + for (var i = 0; i < this._parsers[type].length; i++) { + var output = null; + try { + output = this._parsers[type][i].parseMany(data); + } catch (e) { + // TODO: log this failure + console.error(e); + } + if (output !== null) { + resolve(output); + return; + } + } + reject(new Error("Ran out of parsers for the target type")); + }.bind(this)); + }; + + /** + * Reloads static comments + * + * @return Promise that is resolved when the static sources have been + * loaded + */ + CommentProvider.prototype.load = function () { + if (this._destroyed) { + throw new Error('Cannot load sources on a destroyed provider.'); + } + var promises = []; + // TODO: This race logic needs to be rethought to provide redundancy + for (var type in this._staticSources) { + promises.push(Promise.race(this._staticSources[type]) + .then(function (data) { + return this.applyParsersList(data, type); + }.bind(this))); + } + return Promise.race(promises).then(function (commentList) { + for (var i = 0; i < this._targets.length; i++) { + this._targets[i].load(commentList); + } + return Promise.resolve(commentList); + }.bind(this)); + }; + + /** + * Commit the changes and boot up the provider + * + * @return Promise that is resolved when all the static sources are loaded + * and all the dynamic sources are hooked up + **/ + CommentProvider.prototype.start = function () { + if (this._destroyed) { + throw new Error('Cannot start a provider that has been destroyed.'); + } + this._started = true; + return this.load().then(function (commentList) { + // Bind the dynamic sources + for (var type in this._dynamicSources) { + this._dynamicSources[type].foreach(function (source) { + source.addEventListener('receive', function (data) { + for (var i = 0; i < this._targets.length; i++) { + this._targets[i].send( + this.applyParserOne(data, type)); + } + }.bind(this)); + s}.bind(this)); + } + return Promise.resolve(commentList); + }.bind(this)); + }; + + /** + * Send out comments to both dynamic sources and POST targets. + * + * @param commentData - commentData to be sent to the server. Object. + * @param requireAll - Do we require that all servers to accept the comment + * for the promise to resolve. Defaults to true. If + * false, the returned promise will resolve as long as a + * single target accepts. + * @return Promise that is resolved when the server accepts or rejects the + * comment. Dynamic sources will decide based on their promise while + * POST targets are considered accepted if they return a successful + * HTTP response code. + **/ + CommentProvider.prototype.send = function (commentData, requireAll) { + throw new Error('Not implemented'); + }; + + /** + * Stop providing dynamic comments to the targets + * + * @return Promise that is resolved when all bindings between dynamic + * sources have been successfully unloaded. + **/ + CommentProvider.prototype.destroy = function () { + if (this._destroyed) { + return Promise.resolve(); + } + // TODO: implement debinding for sources + this._destroyed = true; + return Promise.resolve(); + }; + + return CommentProvider; +})(); diff --git a/src/core/Comment.js b/src/core/Comment.js index 3abdfb6..37fa44d 100644 --- a/src/core/Comment.js +++ b/src/core/Comment.js @@ -17,6 +17,7 @@ var CoreComment = (function () { this._alphaMotion = null; this.absolute = true; this.align = 0; + this.axis = 0; this._alpha = 1; this._size = 25; this._color = 0xffffff; @@ -94,6 +95,12 @@ var CoreComment = (function () { if (init.hasOwnProperty("shadow")) { this._shadow = init["shadow"]; } + if (init.hasOwnProperty("align")) { + this.align = init["align"]; + } + if (init.hasOwnProperty("axis")) { + this.axis = init["axis"]; + } if (init.hasOwnProperty("position")) { if (init["position"] === "relative") { this.absolute = false; @@ -142,11 +149,21 @@ var CoreComment = (function () { Object.defineProperty(CoreComment.prototype, "x", { get: function () { if (this._x === null || this._x === undefined) { - if (this.align % 2 === 0) { - this._x = this.dom.offsetLeft; + if (this.axis % 2 === 0) { + if (this.align % 2 === 0) { + this._x = this.dom.offsetLeft; + } + else { + this._x = this.dom.offsetLeft + this.width; + } } else { - this._x = this.parent.width - this.dom.offsetLeft - this.width; + if (this.align % 2 === 0) { + this._x = this.parent.width - this.dom.offsetLeft; + } + else { + this._x = this.parent.width - this.dom.offsetLeft - this.width; + } } } if (!this.absolute) { @@ -159,11 +176,11 @@ var CoreComment = (function () { if (!this.absolute) { this._x *= this.parent.width; } - if (this.align % 2 === 0) { - this.dom.style.left = this._x + "px"; + if (this.axis % 2 === 0) { + this.dom.style.left = (this._x + (this.align % 2 === 0 ? 0 : -this.width)) + "px"; } else { - this.dom.style.right = this._x + "px"; + this.dom.style.right = (this._x + (this.align % 2 === 0 ? -this.width : 0)) + "px"; } }, enumerable: true, @@ -172,11 +189,21 @@ var CoreComment = (function () { Object.defineProperty(CoreComment.prototype, "y", { get: function () { if (this._y === null || this._y === undefined) { - if (this.align < 2) { - this._y = this.dom.offsetTop; + if (this.axis < 2) { + if (this.align < 2) { + this._y = this.dom.offsetTop; + } + else { + this._y = this.dom.offsetTop + this.height; + } } else { - this._y = this.parent.height - this.dom.offsetTop - this.height; + if (this.align < 2) { + this._y = this.parent.height - this.dom.offsetTop; + } + else { + this._y = this.parent.height - this.dom.offsetTop - this.height; + } } } if (!this.absolute) { @@ -189,11 +216,11 @@ var CoreComment = (function () { if (!this.absolute) { this._y *= this.parent.height; } - if (this.align < 2) { - this.dom.style.top = this._y + "px"; + if (this.axis < 2) { + this.dom.style.top = (this._y + (this.align < 2 ? 0 : -this.height)) + "px"; } else { - this.dom.style.bottom = this._y + "px"; + this.dom.style.bottom = (this._y + (this.align < 2 ? -this.height : 0)) + "px"; } }, enumerable: true, @@ -201,14 +228,16 @@ var CoreComment = (function () { }); Object.defineProperty(CoreComment.prototype, "bottom", { get: function () { - return this.y + this.height; + var sameDirection = Math.floor(this.axis / 2) === Math.floor(this.align / 2); + return this.y + (sameDirection ? this.height : 0); }, enumerable: true, configurable: true }); Object.defineProperty(CoreComment.prototype, "right", { get: function () { - return this.x + this.width; + var sameDirection = this.axis % 2 === this.align % 2; + return this.x + (sameDirection ? this.width : 0); }, enumerable: true, configurable: true diff --git a/src/core/Comment.js.map b/src/core/Comment.js.map index 2f00df3..fd956b7 100644 --- a/src/core/Comment.js.map +++ b/src/core/Comment.js.map @@ -1 +1 @@ -{"version":3,"file":"Comment.js","sourceRoot":"","sources":["Comment.ts"],"names":[],"mappings":";;;;;AAQA;IA0CI,qBAAY,MAAsB,EAAE,IAAgB;QAAhB,oBAAgB,GAAhB,SAAgB;QAtC7C,SAAI,GAAU,CAAC,CAAC;QAChB,UAAK,GAAU,CAAC,CAAC;QACjB,SAAI,GAAU,EAAE,CAAC;QACjB,QAAG,GAAU,IAAI,CAAC;QAClB,QAAG,GAAU,IAAI,CAAC;QAClB,WAAM,GAAU,CAAC,CAAC,CAAC;QAEnB,WAAM,GAAiB,EAAE,CAAC;QAC1B,YAAO,GAAW,IAAI,CAAC;QAItB,iBAAY,GAAU,IAAI,CAAC;QAQ5B,aAAQ,GAAW,IAAI,CAAC;QAKxB,UAAK,GAAU,CAAC,CAAC;QACjB,WAAM,GAAU,CAAC,CAAC;QAClB,UAAK,GAAU,EAAE,CAAC;QAGjB,WAAM,GAAU,QAAQ,CAAC;QACzB,YAAO,GAAW,KAAK,CAAC;QACxB,YAAO,GAAW,IAAI,CAAC;QACvB,UAAK,GAAU,EAAE,CAAC;QAMtB,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC;YACV,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;QAC7D,CAAC;QAAC,IAAI,CAAC,CAAC;YACJ,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACzB,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;YAC/B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC;QAC/B,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;YAC9B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;QAC7B,CAAC;QAAC,IAAI,CAAC,CAAC;YACJ,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC;QAClB,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YAC7B,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC;YACvB,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;QACxB,CAAC;QACD,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC;QAC7C,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC;QAC7C,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;YAC9B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;QAC7B,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;YAChC,IAAI,CAAC,YAAY,GAAG,EAAE,CAAC;YACvB,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;YACrB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC;YAC7B,IAAI,IAAI,GAAG,CAAC,CAAC;YACb,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;gBAC7C,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;gBAC7B,IAAI,MAAM,GAAG,CAAC,CAAC;gBACf,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBAC9B,IAAI,CAAC,GAAa,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACvC,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,MAAM,CAAC,CAAC;oBACjC,EAAE,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,IAAI,IAAI,CAAC,CAAC,MAAM,KAAK,SAAS,CAAC,CAAC,CAAC;wBAC9C,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,GAAG,WAAW,CAAC,MAAM,CAAC;oBACxD,CAAC;gBACL,CAAC;gBACD,IAAI,IAAI,MAAM,CAAC;gBACf,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YAC/B,CAAC;YACD,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;QACxB,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;YAC/B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC;QAChC,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;YAC9B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;QAC9B,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;YAChC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC;QAClC,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YACjC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC;QAClC,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;YAC/B,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC;QACtC,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;YAC9B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;QAC9B,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;YAC3B,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC;QACxB,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;YAC3B,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC;QACxB,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;YAChC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC;QAClC,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;YAClC,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,KAAK,UAAU,CAAC,CAAC,CAAC;gBAClC,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;gBACtB,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC;oBAChB,OAAO,CAAC,IAAI,CAAC,0CAA0C,CAAC,CAAC;gBAC7D,CAAC;YACL,CAAC;QACL,CAAC;IACL,CAAC;IAMM,0BAAI,GAAX,UAAY,OAAuB;QAAvB,uBAAuB,GAAvB,cAAuB;QAC/B,EAAE,CAAC,CAAC,OAAO,KAAK,IAAI,CAAC,CAAC,CAAC;YACnB,IAAI,CAAC,GAAG,GAAoB,OAAO,CAAC,GAAG,CAAC;QAC5C,CAAC;QAAC,IAAI,CAAC,CAAC;YACJ,IAAI,CAAC,GAAG,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;QAC7C,CAAC;QACD,IAAI,CAAC,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,CAAC;QAC1D,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;QACzD,IAAI,CAAC,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,IAAI,CAAC;QACjC,IAAI,CAAC,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC;QAC/B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;QACvB,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,IAAI,QAAQ,CAAC,CAAC,CAAC;YAC1B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;QAC7B,CAAC;QACD,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC;QAC3B,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;YACf,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC;QAC/B,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,KAAK,EAAE,CAAC,CAAC,CAAC;YACpB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;QAC3B,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,EAAE,KAAK,SAAS,CAAC,CAAC,CAAC;YACxB,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;QACrB,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,EAAE,KAAK,SAAS,CAAC,CAAC,CAAC;YACxB,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;QACrB,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,KAAK,CAAC,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC;YAC9D,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;QAC7B,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;YAEzB,IAAI,CAAC,OAAO,EAAE,CAAC;QACnB,CAAC;IACL,CAAC;IAED,sBAAI,0BAAC;aAAL;YACI,EAAE,CAAC,CAAC,IAAI,CAAC,EAAE,KAAK,IAAI,IAAI,IAAI,CAAC,EAAE,KAAK,SAAS,CAAC,CAAC,CAAC;gBAC5C,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;oBACvB,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC;gBAClC,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC;gBACnE,CAAC;YACL,CAAC;YACD,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBACjB,MAAM,CAAC,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;YACvC,CAAC;YACD,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC;QACnB,CAAC;aA8DD,UAAM,CAAQ;YACV,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;YACZ,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBACjB,IAAI,CAAC,EAAE,IAAI,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;YACjC,CAAC;YACD,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;gBACvB,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,IAAI,GAAG,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC;YACzC,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC;YAC1C,CAAC;QACL,CAAC;;;OAxEA;IAED,sBAAI,0BAAC;aAAL;YACI,EAAE,CAAC,CAAC,IAAI,CAAC,EAAE,KAAK,IAAI,IAAI,IAAI,CAAC,EAAE,KAAK,SAAS,CAAC,CAAC,CAAC;gBAC5C,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC;oBACjB,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC;gBACjC,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC;gBACpE,CAAC;YACL,CAAC;YACD,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBACjB,MAAM,CAAC,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC;YACxC,CAAC;YACD,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC;QACnB,CAAC;aA4DD,UAAM,CAAQ;YACV,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;YACZ,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBACjB,IAAI,CAAC,EAAE,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC;YAClC,CAAC;YACD,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC;gBACjB,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,GAAG,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC;YACxC,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC;YAC3C,CAAC;QACL,CAAC;;;OAtEA;IAED,sBAAI,+BAAM;aAAV;YACI,MAAM,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC;QAChC,CAAC;;;OAAA;IAED,sBAAI,8BAAK;aAAT;YACI,MAAM,CAAC,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC;QAC/B,CAAC;;;OAAA;IAED,sBAAI,8BAAK;aAAT;YACI,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,KAAK,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC,CAAC,CAAC;gBACpD,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC;YACvC,CAAC;YACD,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC;QACvB,CAAC;aAyDD,UAAU,CAAQ;YACd,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;YAChB,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QAC9C,CAAC;;;OA5DA;IAED,sBAAI,+BAAM;aAAV;YACI,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,KAAK,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,CAAC,CAAC;gBACtD,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,GAAG,CAAC,YAAY,CAAC;YACzC,CAAC;YACD,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC;QACxB,CAAC;aAuDD,UAAW,CAAQ;YACf,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;YACjB,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QAChD,CAAC;;;OA1DA;IAED,sBAAI,6BAAI;aAAR;YACI,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC;QACtB,CAAC;aAwDD,UAAS,CAAQ;YACb,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;YACf,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,QAAQ,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;QAChD,CAAC;;;OA3DA;IAED,sBAAI,8BAAK;aAAT;YACI,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC;QACvB,CAAC;aAyDD,UAAU,CAAQ;YACd,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;YAChB,IAAI,KAAK,GAAU,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC;YAClC,KAAK,GAAG,KAAK,CAAC,MAAM,IAAI,CAAC,GAAG,KAAK,GAAG,IAAI,KAAK,CAAC,CAAC,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;YACtF,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,KAAK,GAAG,GAAG,GAAG,KAAK,CAAC;YACnC,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC;gBACpB,IAAI,CAAC,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,GAAG,UAAU,CAAC;YAC3E,CAAC;QACL,CAAC;;;OAjEA;IAED,sBAAI,8BAAK;aAAT;YACI,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC;QACvB,CAAC;aA+DD,UAAU,CAAQ;YACd,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;YAChB,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,OAAO,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC;QAC5F,CAAC;;;OAlEA;IAED,sBAAI,+BAAM;aAAV;YACI,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC;QACxB,CAAC;aAgED,UAAW,CAAS;YAChB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;YACjB,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;gBACf,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,mBAAmB,CAAC;YAChD,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC;YACnC,CAAC;QACL,CAAC;;;OAvEA;IAED,sBAAI,+BAAM;aAAV;YACI,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC;QACxB,CAAC;aAqED,UAAW,CAAS;YAChB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;YACjB,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;gBAChB,IAAI,CAAC,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,GAAG,WAAW,CAAC;YAC5E,CAAC;QACL,CAAC;;;OA1EA;IAED,sBAAI,6BAAI;aAAR;YACI,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC;QACtB,CAAC;aAwED,UAAS,CAAQ;YACb,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;YACf,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;gBACxB,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC;YAC3C,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,GAAG,EAAE,CAAC;YACnC,CAAC;QACL,CAAC;;;OA/EA;IAuFM,0BAAI,GAAX,UAAY,IAAW;QACnB,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;QACjB,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;YACf,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACjB,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;YACf,IAAI,CAAC,MAAM,EAAE,CAAC;QAClB,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;YAChB,IAAI,CAAC,MAAM,EAAE,CAAC;QAClB,CAAC;IACL,CAAC;IAMM,4BAAM,GAAb;QACI,IAAI,CAAC,OAAO,EAAE,CAAC;IACnB,CAAC;IAKM,gCAAU,GAAjB;QACI,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC;QACf,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC;QACf,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;IACxB,CAAC;IAOO,iCAAW,GAAnB,UAAoB,aAAoB,EAAE,IAAW;QACjD,GAAG,CAAC,CAAC,IAAI,IAAI,IAAI,aAAa,CAAC,CAAC,CAAC;YAC7B,EAAE,CAAC,CAAC,aAAa,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gBACrC,IAAI,CAAC,GAAa,aAAa,CAAC,IAAI,CAAC,CAAC;gBACtC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,GAAG,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC;YACtG,CAAC;QACL,CAAC;IACL,CAAC;IAMM,6BAAO,GAAd;QACI,EAAE,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC;YACpB,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC;QACtI,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC;YAC3B,MAAM,CAAC;QACX,CAAC;QACD,IAAI,GAAG,GAAU,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACvC,IAAI,IAAI,GAAU,CAAC,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC,GAAG,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;QACxE,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,IAAI,CAAC,CAAC;QACrD,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,GAAG,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;YACpD,IAAI,CAAC,UAAU,EAAE,CAAC;YAClB,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC;gBACxC,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;YAC7C,CAAC;YACD,MAAM,CAAC;QACX,CAAC;IACL,CAAC;IAKM,4BAAM,GAAb;QACI,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;IAC7B,CAAC;IAMM,8BAAQ,GAAf;QACI,MAAM,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,KAAK,EAAE,GAAG,EAAE,IAAI,CAAC,GAAG,EAAE,GAAG,EAAE,IAAI,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,CAAC,IAAI,EAAE,GAAG,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IACzG,CAAC;IAjZa,kBAAM,GAAY,UAAU,CAAQ,EAAE,CAAQ,EAAE,CAAQ,EAAE,CAAQ;QAC5E,MAAM,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IACzB,CAAC,CAAC;IAgZN,kBAAC;AAAD,CAAC,AAnZD,IAmZC;AAED;IAA4B,iCAAW;IACnC,uBAAY,MAAsB,EAAE,IAAW;QAC3C,kBAAM,MAAM,EAAE,IAAI,CAAC,CAAC;QACpB,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC;QAC7C,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC;IACjD,CAAC;IAED,sBAAI,gCAAK;aAAT,UAAU,CAAQ;YACd,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;YAChB,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,OAAO,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,EACvF,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC;QACjD,CAAC;;;OAAA;IAEM,4BAAI,GAAX,UAAY,OAAuB;QAAvB,uBAAuB,GAAvB,cAAuB;QAC/B,gBAAK,CAAC,IAAI,YAAC,OAAO,CAAC,CAAC;QACpB,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;QAC3B,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC;YACzC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;QAC7B,CAAC;QACD,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;IACzB,CAAC;IAEM,8BAAM,GAAb;QACI,IAAI,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC;IACnF,CAAC;IACL,oBAAC;AAAD,CAAC,AAzBD,CAA4B,WAAW,GAyBtC"} \ No newline at end of file +{"version":3,"file":"Comment.js","sourceRoot":"","sources":["Comment.ts"],"names":[],"mappings":";;;;;AAQA;IA+CI,qBAAY,MAAsB,EAAE,IAAgB;QAAhB,oBAAgB,GAAhB,SAAgB;QA3C7C,SAAI,GAAU,CAAC,CAAC;QAChB,UAAK,GAAU,CAAC,CAAC;QACjB,SAAI,GAAU,EAAE,CAAC;QACjB,QAAG,GAAU,IAAI,CAAC;QAClB,QAAG,GAAU,IAAI,CAAC;QAClB,WAAM,GAAU,CAAC,CAAC,CAAC;QAEnB,WAAM,GAAiB,EAAE,CAAC;QAC1B,YAAO,GAAW,IAAI,CAAC;QAItB,iBAAY,GAAU,IAAI,CAAC;QAQ5B,aAAQ,GAAW,IAAI,CAAC;QAKxB,UAAK,GAAU,CAAC,CAAC;QAKjB,SAAI,GAAU,CAAC,CAAC;QAChB,WAAM,GAAU,CAAC,CAAC;QAClB,UAAK,GAAU,EAAE,CAAC;QAGjB,WAAM,GAAU,QAAQ,CAAC;QACzB,YAAO,GAAW,KAAK,CAAC;QACxB,YAAO,GAAW,IAAI,CAAC;QACvB,UAAK,GAAU,EAAE,CAAC;QAMtB,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC;YACV,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;QAC7D,CAAC;QAAC,IAAI,CAAC,CAAC;YACJ,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;QACzB,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;YAC/B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC;QAC/B,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;YAC9B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;QAC7B,CAAC;QAAC,IAAI,CAAC,CAAC;YACJ,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC;QAClB,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YAC7B,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC;YACvB,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC;QACxB,CAAC;QACD,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC;QAC7C,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC;QAC7C,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;YAC9B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;QAC7B,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;YAChC,IAAI,CAAC,YAAY,GAAG,EAAE,CAAC;YACvB,IAAI,CAAC,UAAU,GAAG,EAAE,CAAC;YACrB,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC;YAC7B,IAAI,IAAI,GAAG,CAAC,CAAC;YACb,GAAG,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;gBAC7C,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;gBAC7B,IAAI,MAAM,GAAG,CAAC,CAAC;gBACf,GAAG,CAAC,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBAC9B,IAAI,CAAC,GAAa,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;oBACvC,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,GAAG,EAAE,MAAM,CAAC,CAAC;oBACjC,EAAE,CAAC,CAAC,CAAC,CAAC,MAAM,KAAK,IAAI,IAAI,CAAC,CAAC,MAAM,KAAK,SAAS,CAAC,CAAC,CAAC;wBAC9C,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,GAAG,WAAW,CAAC,MAAM,CAAC;oBACxD,CAAC;gBACL,CAAC;gBACD,IAAI,IAAI,MAAM,CAAC;gBACf,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YAC/B,CAAC;YACD,IAAI,CAAC,UAAU,GAAG,CAAC,CAAC;QACxB,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;YAC/B,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC;QAChC,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;YAC9B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;QAC9B,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;YAChC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC;QAClC,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC;YACjC,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC;QAClC,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;YAC/B,IAAI,CAAC,YAAY,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC;QACtC,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;YAC9B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;QAC9B,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;YAC3B,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC;QACxB,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;YAC3B,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,CAAC;QACxB,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC;YAChC,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,QAAQ,CAAC,CAAC;QAClC,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC;YAC/B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,OAAO,CAAC,CAAC;QAC/B,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC;YAC9B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC;QAC7B,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;YAClC,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,KAAK,UAAU,CAAC,CAAC,CAAC;gBAClC,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;gBACtB,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC;oBAChB,OAAO,CAAC,IAAI,CAAC,0CAA0C,CAAC,CAAC;gBAC7D,CAAC;YACL,CAAC;QACL,CAAC;IACL,CAAC;IAMM,0BAAI,GAAX,UAAY,OAAuB;QAAvB,uBAAuB,GAAvB,cAAuB;QAC/B,EAAE,CAAC,CAAC,OAAO,KAAK,IAAI,CAAC,CAAC,CAAC;YACnB,IAAI,CAAC,GAAG,GAAoB,OAAO,CAAC,GAAG,CAAC;QAC5C,CAAC;QAAC,IAAI,CAAC,CAAC;YACJ,IAAI,CAAC,GAAG,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;QAC7C,CAAC;QACD,IAAI,CAAC,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,CAAC;QAC1D,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC,QAAQ,CAAC,cAAc,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;QACzD,IAAI,CAAC,GAAG,CAAC,WAAW,GAAG,IAAI,CAAC,IAAI,CAAC;QACjC,IAAI,CAAC,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,IAAI,CAAC;QAC/B,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;QACvB,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,IAAI,QAAQ,CAAC,CAAC,CAAC;YAC1B,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;QAC7B,CAAC;QACD,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC;QAC3B,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;YACf,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,OAAO,CAAC;QAC/B,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,KAAK,EAAE,CAAC,CAAC,CAAC;YACpB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,KAAK,CAAC;QAC3B,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,EAAE,KAAK,SAAS,CAAC,CAAC,CAAC;YACxB,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;QACrB,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,EAAE,KAAK,SAAS,CAAC,CAAC,CAAC;YACxB,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE,CAAC;QACrB,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,KAAK,CAAC,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC;YAC9D,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;QAC7B,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;YAEzB,IAAI,CAAC,OAAO,EAAE,CAAC;QACnB,CAAC;IACL,CAAC;IAED,sBAAI,0BAAC;aAAL;YACI,EAAE,CAAC,CAAC,IAAI,CAAC,EAAE,KAAK,IAAI,IAAI,IAAI,CAAC,EAAE,KAAK,SAAS,CAAC,CAAC,CAAC;gBAC5C,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;oBACtB,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;wBACvB,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC;oBAClC,CAAC;oBAAC,IAAI,CAAC,CAAC;wBACJ,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC;oBAC/C,CAAC;gBACL,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;wBACvB,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,UAAU,CAAC;oBACtD,CAAC;oBAAC,IAAI,CAAC,CAAC;wBACJ,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,GAAG,CAAC,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC;oBACnE,CAAC;gBACL,CAAC;YACL,CAAC;YACD,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBACjB,MAAM,CAAC,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;YACvC,CAAC;YACD,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC;QACnB,CAAC;aAwED,UAAM,CAAQ;YACV,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;YACZ,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBACjB,IAAI,CAAC,EAAE,IAAI,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;YACjC,CAAC;YACD,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;gBACtB,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,IAAI,GAAG,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,KAAK,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,GAAG,IAAI,CAAC;YACtF,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,KAAK,GAAG,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,KAAK,GAAG,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;YACvF,CAAC;QACL,CAAC;;;OAlFA;IAED,sBAAI,0BAAC;aAAL;YACI,EAAE,CAAC,CAAC,IAAI,CAAC,EAAE,KAAK,IAAI,IAAI,IAAI,CAAC,EAAE,KAAK,SAAS,CAAC,CAAC,CAAC;gBAC5C,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC;oBAChB,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC;wBACjB,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC;oBACjC,CAAC;oBAAC,IAAI,CAAC,CAAC;wBACJ,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC;oBAC/C,CAAC;gBACL,CAAC;gBAAC,IAAI,CAAC,CAAC;oBACJ,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC,CAAC;wBACjB,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,SAAS,CAAC;oBACtD,CAAC;oBAAC,IAAI,CAAC,CAAC;wBACJ,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC;oBACpE,CAAC;gBACL,CAAC;YACL,CAAC;YACD,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBACjB,MAAM,CAAC,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC;YACxC,CAAC;YACD,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC;QACnB,CAAC;aA8DD,UAAM,CAAQ;YACV,IAAI,CAAC,EAAE,GAAG,CAAC,CAAC;YACZ,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;gBACjB,IAAI,CAAC,EAAE,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC;YAClC,CAAC;YACD,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC,CAAC,CAAC;gBAChB,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,GAAG,GAAG,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,KAAK,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC;YAChF,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,IAAI,CAAC,EAAE,GAAG,CAAC,IAAI,CAAC,KAAK,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC;YACnF,CAAC;QACL,CAAC;;;OAxEA;IAED,sBAAI,+BAAM;aAAV;YACI,IAAI,aAAa,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,GAAG,CAAC,CAAC,KAAK,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC;YAC7E,MAAM,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,aAAa,GAAG,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC;QACtD,CAAC;;;OAAA;IAED,sBAAI,8BAAK;aAAT;YACI,IAAI,aAAa,GAAG,IAAI,CAAC,IAAI,GAAG,CAAC,KAAK,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;YACrD,MAAM,CAAC,IAAI,CAAC,CAAC,GAAG,CAAC,aAAa,GAAG,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC,CAAC;QACrD,CAAC;;;OAAA;IAED,sBAAI,8BAAK;aAAT;YACI,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,KAAK,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC,CAAC,CAAC;gBACpD,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,WAAW,CAAC;YACvC,CAAC;YACD,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC;QACvB,CAAC;aAyDD,UAAU,CAAQ;YACd,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;YAChB,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QAC9C,CAAC;;;OA5DA;IAED,sBAAI,+BAAM;aAAV;YACI,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,KAAK,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,CAAC,CAAC;gBACtD,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,GAAG,CAAC,YAAY,CAAC;YACzC,CAAC;YACD,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC;QACxB,CAAC;aAuDD,UAAW,CAAQ;YACf,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;YACjB,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;QAChD,CAAC;;;OA1DA;IAED,sBAAI,6BAAI;aAAR;YACI,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC;QACtB,CAAC;aAwDD,UAAS,CAAQ;YACb,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;YACf,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,QAAQ,GAAG,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC;QAChD,CAAC;;;OA3DA;IAED,sBAAI,8BAAK;aAAT;YACI,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC;QACvB,CAAC;aAyDD,UAAU,CAAQ;YACd,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;YAChB,IAAI,KAAK,GAAU,CAAC,CAAC,QAAQ,CAAC,EAAE,CAAC,CAAC;YAClC,KAAK,GAAG,KAAK,CAAC,MAAM,IAAI,CAAC,GAAG,KAAK,GAAG,IAAI,KAAK,CAAC,CAAC,GAAG,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,GAAG,KAAK,CAAC;YACtF,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,KAAK,GAAG,GAAG,GAAG,KAAK,CAAC;YACnC,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC;gBACpB,IAAI,CAAC,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,GAAG,UAAU,CAAC;YAC3E,CAAC;QACL,CAAC;;;OAjEA;IAED,sBAAI,8BAAK;aAAT;YACI,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC;QACvB,CAAC;aA+DD,UAAU,CAAQ;YACd,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;YAChB,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,OAAO,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC;QAC5F,CAAC;;;OAlEA;IAED,sBAAI,+BAAM;aAAV;YACI,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC;QACxB,CAAC;aAgED,UAAW,CAAS;YAChB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;YACjB,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;gBACf,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,mBAAmB,CAAC;YAChD,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC;YACnC,CAAC;QACL,CAAC;;;OAvEA;IAED,sBAAI,+BAAM;aAAV;YACI,MAAM,CAAC,IAAI,CAAC,OAAO,CAAC;QACxB,CAAC;aAqED,UAAW,CAAS;YAChB,IAAI,CAAC,OAAO,GAAG,CAAC,CAAC;YACjB,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;gBAChB,IAAI,CAAC,GAAG,CAAC,SAAS,GAAG,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,SAAS,GAAG,WAAW,CAAC;YAC5E,CAAC;QACL,CAAC;;;OA1EA;IAED,sBAAI,6BAAI;aAAR;YACI,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC;QACtB,CAAC;aAwED,UAAS,CAAQ;YACb,IAAI,CAAC,KAAK,GAAG,CAAC,CAAC;YACf,EAAE,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC;gBACxB,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,GAAG,IAAI,CAAC,KAAK,CAAC;YAC3C,CAAC;YAAC,IAAI,CAAC,CAAC;gBACJ,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,UAAU,GAAG,EAAE,CAAC;YACnC,CAAC;QACL,CAAC;;;OA/EA;IAuFM,0BAAI,GAAX,UAAY,IAAW;QACnB,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC;QACjB,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC,CAAC,CAAC;YACf,IAAI,CAAC,GAAG,GAAG,CAAC,CAAC;QACjB,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC;YACf,IAAI,CAAC,MAAM,EAAE,CAAC;QAClB,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;YAChB,IAAI,CAAC,MAAM,EAAE,CAAC;QAClB,CAAC;IACL,CAAC;IAMM,4BAAM,GAAb;QACI,IAAI,CAAC,OAAO,EAAE,CAAC;IACnB,CAAC;IAKM,gCAAU,GAAjB;QACI,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC;QACf,IAAI,CAAC,EAAE,GAAG,IAAI,CAAC;QACf,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACnB,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC;IACxB,CAAC;IAOO,iCAAW,GAAnB,UAAoB,aAAoB,EAAE,IAAW;QACjD,GAAG,CAAC,CAAC,IAAI,IAAI,IAAI,aAAa,CAAC,CAAC,CAAC;YAC7B,EAAE,CAAC,CAAC,aAAa,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;gBACrC,IAAI,CAAC,GAAa,aAAa,CAAC,IAAI,CAAC,CAAC;gBACtC,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,GAAG,CAAC,CAAC,KAAK,EAAE,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC;YACtG,CAAC;QACL,CAAC;IACL,CAAC;IAMM,6BAAO,GAAd;QACI,EAAE,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC;YACpB,IAAI,CAAC,KAAK,GAAG,CAAC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC,GAAG,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC;QACtI,CAAC;QACD,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC;YAC3B,MAAM,CAAC;QACX,CAAC;QACD,IAAI,GAAG,GAAU,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC;QACvC,IAAI,IAAI,GAAU,CAAC,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC,GAAG,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;QACxE,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,IAAI,CAAC,CAAC;QACrD,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,GAAG,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;YACpD,IAAI,CAAC,UAAU,EAAE,CAAC;YAClB,EAAE,CAAC,CAAC,IAAI,CAAC,UAAU,IAAI,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC;gBACxC,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC;YAC7C,CAAC;YACD,MAAM,CAAC;QACX,CAAC;IACL,CAAC;IAKM,4BAAM,GAAb;QACI,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;IAC7B,CAAC;IAMM,8BAAQ,GAAf;QACI,MAAM,CAAC,CAAC,GAAG,EAAE,IAAI,CAAC,KAAK,EAAE,GAAG,EAAE,IAAI,CAAC,GAAG,EAAE,GAAG,EAAE,IAAI,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,IAAI,CAAC,IAAI,EAAE,GAAG,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IACzG,CAAC;IA9aa,kBAAM,GAAY,UAAU,CAAQ,EAAE,CAAQ,EAAE,CAAQ,EAAE,CAAQ;QAC5E,MAAM,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IACzB,CAAC,CAAC;IA6aN,kBAAC;AAAD,CAAC,AAhbD,IAgbC;AAED;IAA4B,iCAAW;IACnC,uBAAY,MAAsB,EAAE,IAAW;QAC3C,kBAAM,MAAM,EAAE,IAAI,CAAC,CAAC;QACpB,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC;QAC7C,IAAI,CAAC,GAAG,IAAI,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC;IACjD,CAAC;IAED,sBAAI,gCAAK;aAAT,UAAU,CAAQ;YACd,IAAI,CAAC,MAAM,GAAG,CAAC,CAAC;YAChB,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,OAAO,GAAG,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,EAAE,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,EACvF,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,GAAG,EAAE,CAAC;QACjD,CAAC;;;OAAA;IAEM,4BAAI,GAAX,UAAY,OAAuB;QAAvB,uBAAuB,GAAvB,cAAuB;QAC/B,gBAAK,CAAC,IAAI,YAAC,OAAO,CAAC,CAAC;QACpB,IAAI,CAAC,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC;QAC3B,EAAE,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC;YACzC,IAAI,CAAC,KAAK,GAAG,IAAI,CAAC,MAAM,CAAC;QAC7B,CAAC;QACD,IAAI,CAAC,QAAQ,GAAG,IAAI,CAAC;IACzB,CAAC;IAEM,8BAAM,GAAb;QACI,IAAI,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC;IACnF,CAAC;IACL,oBAAC;AAAD,CAAC,AAzBD,CAA4B,WAAW,GAyBtC"} \ No newline at end of file diff --git a/src/core/Comment.ts b/src/core/Comment.ts index 362fcf7..f656c49 100644 --- a/src/core/Comment.ts +++ b/src/core/Comment.ts @@ -36,6 +36,11 @@ class CoreComment implements IComment { * @type {number} 0=tl, 2=bl, 1=tr, 3=br */ public align:number = 0; + /** + * Axis + * @type {number} 0=dr, 1=dl, 2=ur, 3=ul + */ + public axis:number = 0; public _alpha:number = 1; public _size:number = 25; private _width:number; @@ -118,6 +123,12 @@ class CoreComment implements IComment { if (init.hasOwnProperty("shadow")) { this._shadow = init["shadow"]; } + if (init.hasOwnProperty("align")) { + this.align = init["align"]; + } + if (init.hasOwnProperty("axis")) { + this.axis = init["axis"]; + } if (init.hasOwnProperty("position")) { if (init["position"] === "relative") { this.absolute = false; @@ -170,10 +181,18 @@ class CoreComment implements IComment { get x():number { if (this._x === null || this._x === undefined) { - if (this.align % 2 === 0) { - this._x = this.dom.offsetLeft; + if (this.axis % 2 === 0) { + if (this.align % 2 === 0) { + this._x = this.dom.offsetLeft; + } else { + this._x = this.dom.offsetLeft + this.width; + } } else { - this._x = this.parent.width - this.dom.offsetLeft - this.width; + if (this.align % 2 === 0) { + this._x = this.parent.width - this.dom.offsetLeft; + } else { + this._x = this.parent.width - this.dom.offsetLeft - this.width; + } } } if (!this.absolute) { @@ -184,10 +203,18 @@ class CoreComment implements IComment { get y():number { if (this._y === null || this._y === undefined) { - if (this.align < 2) { - this._y = this.dom.offsetTop; + if (this.axis < 2) { + if (this.align < 2) { + this._y = this.dom.offsetTop; + } else { + this._y = this.dom.offsetTop + this.height; + } } else { - this._y = this.parent.height - this.dom.offsetTop - this.height; + if (this.align < 2) { + this._y = this.parent.height - this.dom.offsetTop; + } else { + this._y = this.parent.height - this.dom.offsetTop - this.height; + } } } if (!this.absolute) { @@ -197,11 +224,13 @@ class CoreComment implements IComment { } get bottom():number { - return this.y + this.height; + var sameDirection = Math.floor(this.axis / 2) === Math.floor(this.align / 2); + return this.y + (sameDirection ? this.height : 0); } get right():number { - return this.x + this.width; + var sameDirection = this.axis % 2 === this.align % 2; + return this.x + (sameDirection ? this.width : 0); } get width():number { @@ -247,10 +276,10 @@ class CoreComment implements IComment { if (!this.absolute) { this._x *= this.parent.width; } - if (this.align % 2 === 0) { - this.dom.style.left = this._x + "px"; + if (this.axis % 2 === 0) { + this.dom.style.left = (this._x + (this.align % 2 === 0 ? 0 : -this.width)) + "px"; } else { - this.dom.style.right = this._x + "px"; + this.dom.style.right = (this._x + (this.align % 2 === 0 ? -this.width : 0)) + "px"; } } @@ -259,10 +288,10 @@ class CoreComment implements IComment { if (!this.absolute) { this._y *= this.parent.height; } - if (this.align < 2) { - this.dom.style.top = this._y + "px"; + if (this.axis < 2) { + this.dom.style.top = (this._y + (this.align < 2 ? 0 : -this.height)) + "px"; } else { - this.dom.style.bottom = this._y + "px"; + this.dom.style.bottom = (this._y + (this.align < 2 ? -this.height : 0)) + "px"; } } diff --git a/src/core/CommentCoreLibrary.ts b/src/core/CommentManager.ts similarity index 100% rename from src/core/CommentCoreLibrary.ts rename to src/core/CommentManager.ts diff --git a/src/extend/ass2dm.js b/src/extend/ass2dm.js deleted file mode 100644 index 22d08f1..0000000 --- a/src/extend/ass2dm.js +++ /dev/null @@ -1,121 +0,0 @@ -/** - *Subtitles File Parser Unit - * - * Licensed Under MIT License - * Transforms an ASS file into a readable array for the CommentCoreLibrary - * - * With reference from (https://github.com/spiegeleixxl/html5-ass-subtitles/) -***/ - -function parseASS(input, config) { - var state = 0; - var linecounter = 0; - var resizeFactor = 1; - var captions = {}; - // initializing captions array - var info = {}; - var styles = {}; - var timeline = []; - // split the assfile by newlines. - var assfile = input.split('\n'); - var comments=""; - - for (var linecount=0; linecount < assfile.length; linecount++){ - if (assfile[linecount].indexOf('[Script Info]') === 0){ - state = 1; - } else if (assfile[linecount].indexOf('[V4+ Styles]')=== 0){ - state = 2; - console.log(config); - if ((info['PlayResX'] || info['PlayResY']) && (config.width || config.height)){ - resizeFactor = parseInt(info['PlayResY']) / config.height; - console.log(resizeFactor); - } - } else if (assfile[linecount].indexOf('[Events]')=== 0){ - state = 3; - } else if (state == 1){ - if (assfile[linecount].indexOf(';') !== 0){ - if (assfile[linecount].indexOf(':') > -1){ - var infoLine = assfile[linecount].split(':'); - info[infoLine[0].trim()] = infoLine[1].trim(); - } - } else { - comments = comments + assfile[linecount] + "\n"; - } - } else if (state == 2){ - if (assfile[linecount].indexOf('Style:')=== 0){ - var styleparts = assfile[linecount].split(':')[1].split(','); - var stylename = styleparts[0].trim(); - - var style = {}; - style['stylename'] = styleparts[0].trim(); - style['fontname'] = styleparts[1]; - style['fontsize'] = parseFloat(styleparts[2]) * resizeFactor; - style['color1'] = styleparts[3].replace(/^&H00/, "#"); - style['color2'] = styleparts[4].replace(/^&H00/, "#"); - style['border-color'] = styleparts[5]; - style['shadow-color'] = styleparts[6]; - style['bold'] = styleparts[7]; - style['italic'] = styleparts[8]; - style['underline'] = styleparts[9]; - style['strikeout'] = styleparts[10]; - style['fontscalex'] = styleparts[11]; - style['fontscaley'] = styleparts[12]; - style['spacing'] = styleparts[13]; - style['angle'] = styleparts[14]; - - style['borderstyle'] = styleparts[15]; - style['outline'] = parseFloat(styleparts[16])*resizeFactor; - style['shadow'] = parseFloat(styleparts[17])*resizeFactor; - style['alignment'] = styleparts[18]; - style['marginleft'] = parseFloat(styleparts[19])*resizeFactor; - style['marginright'] = parseFloat(styleparts[20])*resizeFactor; - style['marginvertical'] = parseFloat(styleparts[21])*resizeFactor; - style['encoding'] = styleparts[22]; - - styles[style.stylename] = style; - } - } else if (state == 3){ - if (assfile[linecount].indexOf('Dialogue:')=== 0){ - var lineparts = assfile[linecount].split(','); - var st = lineparts[1].trim().split(':'); - var et = lineparts[2].trim().split(':'); - var stime = st[0]*60*60 + st[1]*60 + parseFloat(st[2]); - var etime = et[0]*60*60 + et[1]*60 + parseFloat(et[2]); - var comment = { - 'stime' : Math.round(stime * 1000), - 'dur': Math.round((etime - stime) * 1000), - 'ttl': Math.round((etime - stime) * 1000), - 'mode': 4, - 'size': styles[lineparts[3]]['fontsize'] * resizeFactor, - 'color': styles[lineparts[3]]['color1'], - 'font': styles[lineparts[3]]['fontname'], - 'margin': styles[lineparts[3]]['marginleft'] + "px " + styles[lineparts[3]]['marginvertical'] + "px " + styles[lineparts[3]]['marginright'] + "px " + styles[lineparts[3]]['marginvertical'] + "px", - 'style' : lineparts[3], - 'pool': 15, - 'actor' : lineparts[4], - 'marginleft' : lineparts[5], - 'marginright' : lineparts[6], - 'marginvertical' : lineparts[7], - 'effect' : lineparts[8] - } - for (var z = 0; z < 9; z++) { lineparts.shift(); } - comment.text = lineparts.join(','); - comment.text = comment.text.replace(/{[^}]+}/gi,""); - /* - captions['lines'][linecounter]['asstags'] = ""; - var matches = captions['lines'][linecounter]['text'].match(/{[^}]+}/g); - for (var z in matches){ - if (matches[z].startsWith("{\\")){ - captions['lines'][linecounter]['asstags'] = captions['lines'][linecounter]['asstags'] + matches[z] + " "; - } - } - captions['lines'][linecounter]['text'] = captions['lines'][linecounter]['text'].replace(/{[^}]+}/gi,""); - */ - timeline.push(comment); - linecounter = linecounter+1; - } - } - } - console.log(styles); - return timeline; -} diff --git a/src/extend/fefx.js b/src/extend/fefx.js deleted file mode 100644 index d5be2ad..0000000 --- a/src/extend/fefx.js +++ /dev/null @@ -1,38 +0,0 @@ -/** -Fefx - Filter Effects library -Licensed Under MIT License - Some fefx library to enhance dm readability or just generally enhance user experience -**/ -var fefx = { - center_dim:function(cmt){ - if(cmt.data.mode != 1 && cmt.data.mode !=2) - return cmt;//Pass through all comments aside scrollers - var cmtPos = cmt.ttl / cmt.dur; - if(cmtPos > 0.3 && cmtPos < 0.7) - return cmt;//Pass Centers - if(cmtPos - 0.3 > 0) - cmt.style.opacity = 0.8 * (cmtPos - 0.7) / 0.3 + 0.2; - else - cmt.style.opacity = 0.8 * (1 - cmtPos/0.3) + 0.2; - return cmt; - }, - center_speedup:function(cmt){ - if(cmt.data.mode != 1 && cmt.data.mode !=2) - return cmt;//Pass through all comments aside scrollers - var cmtPos = cmt.ttl / cmt.dur; - if(cmtPos > 0.2 && cmtPos < 0.8) - cmt.ttl -= 10; - return cmt; - }, - offset_dim:function(cmt){ - /** Does not work yet, we need to fetch some comment stage parameters **/ - if(cmt.data.mode != 1 && cmt.data.mode !=2) return cmt; - if(cmt.offsetRight > 60 && cmt.offsetLeft > 60){ - cmt.style.opacity = 0.2; - return cmt; - }else{ - cmt.style.opacity = 1; - } - return cmt; - }, -} diff --git a/src/extend/lrc2dm.js b/src/extend/lrc2dm.js deleted file mode 100644 index 3571f93..0000000 --- a/src/extend/lrc2dm.js +++ /dev/null @@ -1,12 +0,0 @@ -/** -Lyrics File Parser Unit -Licensed Under MIT License - Transforms a Lyrics file into a readable array for the CommentCoreLibrary -**/ -function LyricsFile(){ - this.input = function(str){ - //Read and parse lyrics - var lines = str.split("\n"); - - } -} \ No newline at end of file diff --git a/src/extend/remote/CCSend.js b/src/extend/remote/CCSend.js deleted file mode 100644 index f86807c..0000000 --- a/src/extend/remote/CCSend.js +++ /dev/null @@ -1,14 +0,0 @@ -function CommentSend (server){ - var INST = { - url : server.url, - key : "" - }; - this.pack = function ( comment ) { - return comment; - }; - this.send = function ( msg ) { - /** Compresses the message into a neat package and sends **/ - var comment = this.pack( msg ); - - }; -} diff --git a/src/extend/remote/RConnect.js b/src/extend/remote/RConnect.js deleted file mode 100644 index 349d359..0000000 --- a/src/extend/remote/RConnect.js +++ /dev/null @@ -1,67 +0,0 @@ -/** -* Remote Connection -* Ver 1.0 Author Jabbany -* Part of the CommentCoreLibrary -**/ -function RConnect(){ - this.socket = null; - this.mode = 'websocket'; - /** - * States - * -1 : Not Connected - * 0 : Closed - * 1 : Connected - * 2 : Connecting - **/ - this.state = -1; - - this.hooks = { - 'onopen':[this.hookOpen], - 'onclose':[this.hookClose], - 'message':[] - }; - this.hookOpen = function(){ - if(this.socket.readyState == 1) - this.state = 1; //Connected - }; -} -RConnect.prototype.dispatchEvent = function(eventName,obj){ - for(var f in this.hooks[eventName]){ - if(obj!=null) - f(obj); - else - f(); - }; - return;//All events dispatched -}; - -RConnect.prototype.establish = function (server,authCode){ - if(this.mode != 'websocket') - return false; - try{ - this.socket = new WebSocket(server); - }catch(e){ - console.log('WebSocket not supported or disabled. Fallback to normal request'); - this.mode = 'fallback'; - return false; - } - if(this.socket != null){ - //Socket is setup - try{ - var inst = this; - this.socket.onopen = function(){ - inst.dispatchEvent('onopen'); - }; - this.socket.onclose = function(){ - inst.dispatchEvent('onclose'); - }; - this.socket.onmessage = function(msg){ - inst.dispatchEvent('message',msg); - }; - }catch(e){ - console.log('Bind failed'); - return false; - } - } - return true; -} \ No newline at end of file diff --git a/src/extend/remote/ReadMe.md b/src/extend/remote/ReadMe.md deleted file mode 100644 index f4c3e92..0000000 --- a/src/extend/remote/ReadMe.md +++ /dev/null @@ -1,14 +0,0 @@ -# Remote Server -The CommentCoreLibrary-Remote section is an implementation of a websocket based remote communicating service. -This opens up the possibility of realtime comments/messages broadcasted through the hosting network. This is essential -for advanced features such as online user count and comment/filter streaming or comment sending. - -## Details -Included are implementations of the service module. Included also is a Node.js Javascript serverside implementation. - -# 远程同步协议 -CommentCoreLibrary还将包含一套远程通讯协议,它将通过WebSockets技术实现与服务器的即时通讯。这将为实时评论和聊天室等功能 -打下基础。一些搞基功能,如在线人数统计,将在此环境下更好的实现。 - -## 详情 -此文件夹内还包括一个Node.js实现的服务器端。 \ No newline at end of file diff --git a/src/extend/remote/server/server.js b/src/extend/remote/server/server.js deleted file mode 100644 index 54c6a62..0000000 --- a/src/extend/remote/server/server.js +++ /dev/null @@ -1 +0,0 @@ -/** Nodejs serverside backend **/ diff --git a/src/filter/SimpleFilter.js b/src/filter/SimpleFilter.js index 9424bb7..6fa6c1a 100644 --- a/src/filter/SimpleFilter.js +++ b/src/filter/SimpleFilter.js @@ -3,7 +3,7 @@ * @license MIT * @author Jim Chen */ -function CommentFilter(){ +function CommentFilter() { this.modifiers = []; this.runtime = null; this.allowTypes = { diff --git a/src/parsers/AcfunFormat.js b/src/parsers/AcfunFormat.js index 56be367..42157ef 100644 --- a/src/parsers/AcfunFormat.js +++ b/src/parsers/AcfunFormat.js @@ -1,97 +1,228 @@ -/** +/** * AcFun Format Parser + * Takes in JSON and parses it based on current documentation for AcFun comments * @license MIT License - * An alternative format comment parser - */ -function AcfunParser(jsond){ - var list = []; - try{ - var jsondt = JSON.parse(jsond); - }catch(e){ - console.log('Error: Could not parse json list!'); - return []; - } - for(var i=0;i 0){ - data.stime = parseFloat(xc[0]) * 1000; - data.color = parseInt(xc[1]) - data.mode = parseInt(xc[2]); - data.size = parseInt(xc[3]); - data.hash = xc[4]; - data.date = parseInt(xc[5]); - data.position = "absolute"; - if(data.mode != 7){ - data.text = jsondt[i].m.replace(/(\/n|\\n|\n|\r\n|\\r)/g,"\n"); - data.text = data.text.replace(/\r/g,"\n"); - data.text = data.text.replace(/\s/g,"\u00a0"); - }else{ - data.text = jsondt[i].m; - } - if(data.mode == 7){ - //High level positioned dm - try{ - var x = JSON.parse(data.text); - }catch(e){ - console.log('[Err] Error parsing internal data for comment'); - console.log('[Dbg] ' + data.text); - continue; - } - data.position = "relative"; - data.text = x.n; /*.replace(/\r/g,"\n");*/ - data.text = data.text.replace(/\ /g,"\u00a0"); - if(x.a != null){ - data.opacity = x.a; - }else{ - data.opacity = 1; - } - if(x.p != null){ - data.x = x.p.x / 1000; // relative position - data.y = x.p.y / 1000; - }else{ - data.x = 0; - data.y = 0; - } - data.shadow = x.b; - data.dur = 4000; - if(x.l != null) - data.moveDelay = x.l * 1000; - if(x.z != null && x.z.length > 0){ - data.movable = true; - data.motion = []; - var moveDuration = 0; - var last = {x:data.x, y:data.y, alpha:data.opacity, color:data.color}; - for(var m = 0; m < x.z.length; m++){ - var dur = x.z[m].l != null ? (x.z[m].l * 1000) : 500; - moveDuration += dur; - var motion = { - x:{from:last.x, to:x.z[m].x/1000, dur: dur, delay: 0}, - y:{from:last.y, to:x.z[m].y/1000, dur: dur, delay: 0} - }; - last.x = motion.x.to; - last.y = motion.y.to; - if(x.z[m].t !== last.alpha){ - motion.alpha = {from:last.alpha, to:x.z[m].t, dur: dur, delay: 0}; - last.alpha = motion.alpha.to; - } - if(x.z[m].c != null && x.z[m].c !== last.color){ - motion.color = {from:last.color, to:x.z[m].c, dur: dur, delay: 0}; - last.color = motion.color.to; - } - data.motion.push(motion); - } - data.dur = moveDuration + (data.moveDelay ? data.moveDelay : 0); - } - if(x.r != null && x.k != null){ - data.rX = x.r; - data.rY = x.k; - } - - } - list.push(data); - } - } - return list; -} + **/ +var AcfunFormat = (function () { + var AcfunFormat = {}; + + AcfunFormat.JSONParser = function (params) { + this._logBadComments = true; + this._logNotImplemented = false; + if (typeof params === 'object') { + this._logBadComments = params.logBadComments === false ? false : true; + this._logNotImplemented = params.logNotImplemented === true ? true : false; + } + }; + + AcfunFormat.JSONParser.prototype.parseOne = function (comment) { + // Read a comment and generate a correct comment object + var data = {}; + if (typeof comment !== 'object' || comment == null || !comment.hasOwnProperty('c')) { + // This cannot be parsed. The comment contains no config data + return null; + } + var config = comment['c'].split(','); + if (config.length >= 6) { + data.stime = parseFloat(config[0]) * 1000; + data.color = parseInt(config[1]) + data.mode = parseInt(config[2]); + data.size = parseInt(config[3]); + data.hash = config[4]; + data.date = parseInt(config[5]); + data.position = "absolute"; + if (data.mode !== 7) { + // Do some text normalization on low complexity comments + data.text = comment.m.replace(/(\/n|\\n|\n|\r\n|\\r)/g,"\n"); + data.text = data.text.replace(/\r/g,"\n"); + data.text = data.text.replace(/\s/g,"\u00a0"); + } else { + try { + var x = JSON.parse(comment.m); + } catch (e) { + if (this._logBadComments) { + console.warn('Error parsing internal data for comment'); + console.log('[Dbg] ' + data.text); + } + return null; // Can't actually parse this! + } + data.position = "relative"; + data.text = x.n; /*.replace(/\r/g,"\n");*/ + data.text = data.text.replace(/\ /g,"\u00a0"); + if (typeof x.a === 'number') { + data.opacity = x.a; + } else { + data.opacity = 1; + } + if (typeof x.p === 'object') { + // Relative position + data.x = x.p.x / 1000; + data.y = x.p.y / 1000; + } else { + data.x = 0; + data.y = 0; + } + if (typeof x.c === 'number') { + switch (x.c) { + case 0: data.align = 0; break; + case 2: data.align = 1; break; + case 6: data.align = 2; break; + case 8: data.align = 3; break; + default: + if (this._logNotImplemented) { + console.log('Cannot handle aligning to center! AlignMode=' + x.c); + } + } + } + // Use default axis + data.axis = 0; + data.shadow = x.b; + data.dur = 4000; + if (typeof x.l === 'number') { + data.dur = x.l * 1000; + } + if (x.z != null && x.z.length > 0) { + data.movable = true; + data.motion = []; + var moveDuration = 0; + var last = { + x: data.x, + y: data.y, + alpha: data.opacity, + color: data.color + }; + for (var m = 0; m < x.z.length; m++) { + var dur = x.z[m].l != null ? (x.z[m].l * 1000) : 500; + moveDuration += dur; + var motion = {}; + if (x.z[m].hasOwnProperty('rx') && typeof x.z[m].rx === 'number') { + // TODO: Support this + if (this._logNotImplemented) { + console.log('Encountered animated x-axis rotation. Ignoring.'); + } + } + if (x.z[m].hasOwnProperty('e') && typeof x.z[m].e === 'number') { + // TODO: Support this + if (this._logNotImplemented) { + console.log('Encountered animated y-axis rotation. Ignoring.'); + } + } + if (x.z[m].hasOwnProperty('d') && typeof x.z[m].d === 'number') { + // TODO: Support this + if (this._logNotImplemented) { + console.log('Encountered animated z-axis rotation. Ignoring.'); + } + } + if (x.z[m].hasOwnProperty('x') && typeof x.z[m].x === 'number') { + motion.x = { + from: last.x, + to: x.z[m].x / 1000, + dur: dur, + delay: 0 + }; + } + if (x.z[m].hasOwnProperty('y') && typeof x.z[m].y === 'number') { + motion.y = { + from: last.y, + to: x.z[m].y / 1000, + dur: dur, + delay: 0 + }; + } + last.x = motion.hasOwnProperty('x') ? motion.x.to : last.x; + last.y = motion.hasOwnProperty('y') ? motion.y.to : last.y; + if (x.z[m].hasOwnProperty('t') && + typeof x.z[m].t === 'number' && + x.z[m].t !== last.alpha) { + motion.alpha = { + from: last.alpha, + to: x.z[m].t, + dur: dur, + delay: 0 + }; + last.alpha = motion.alpha.to; + } + if (x.z[m].hasOwnProperty('c') && + typeof x.z[m].c === 'number' && + x.z[m].c !== last.color) { + motion.color = { + from: last.color, + to:x.z[m].c, + dur: dur, + delay: 0 + }; + last.color = motion.color.to; + } + data.motion.push(motion); + } + data.dur = moveDuration + (data.moveDelay ? data.moveDelay : 0); + } + if (x.hasOwnProperty('w')) { + if (x.w.hasOwnProperty('f')) { + data.font = x.w.f; + } + if (x.w.hasOwnProperty('l') && Array.isArray(x.w.l)) { + if (x.w.l.length > 0) { + // Filters + if (this._logNotImplemented) { + console.log('[Dbg] Filters not supported! ' + + JSON.stringify(x.w.l)); + } + } + } + } + if (x.r != null && x.k != null) { + data.rX = x.r; + data.rY = x.k; + } + + } + return data; + } else { + // Not enough arguments. + if (this._logBadComments) { + console.warn('Dropping this comment due to insufficient parameters. Got: ' + config.length); + console.log('[Dbg] ' + comment['c']); + } + return null; + } + }; + + AcfunFormat.JSONParser.prototype.parseMany = function (comments) { + if (!Array.isArray(comments)) { + return null; + } + var list = []; + for (var i = 0; i < comments.length; i++) { + var comment = this.parseOne(comments[i]); + if (comment !== null) { + list.push(comment); + } + } + return list; + }; + + AcfunFormat.TextParser = function (param) { + this._jsonParser = new AcfunFormat.JSONParser(param); + } + + AcfunFormat.TextParser.prototype.parseOne = function (comment) { + try { + return this._jsonParser.parseOne(JSON.parse(comment)); + } catch (e) { + console.warn(e); + return null; + } + } + + AcfunFormat.TextParser.prototype.parseMany = function (comment) { + try { + return this._jsonParser.parseMany(JSON.parse(comment)); + } catch (e) { + console.warn(e); + return null; + } + } + + return AcfunFormat; +})(); diff --git a/src/parsers/BilibiliFormat.js b/src/parsers/BilibiliFormat.js index ba75b95..02632f4 100644 --- a/src/parsers/BilibiliFormat.js +++ b/src/parsers/BilibiliFormat.js @@ -1,180 +1,304 @@ /** * Bilibili Format Parser - * @license MIT License * Takes in an XMLDoc/LooseXMLDoc and parses that into a Generic Comment List + * @license MIT License **/ -function BilibiliParser(xmlDoc, text, warn){ - function format(string){ - // Format the comment text to be JSON Valid. - return string.replace(/\t/,"\\t"); - } - - function formatmode7(text) { - if (text.charAt(0) == '[') switch (text.charAt(text.length - 1)) { - case ']': - return text; - case '"': - return text + ']'; - case ',': - return text.substring(0, text.length - 1) + '"]'; - default: - return formatmode7(text.substring(0, text.length - 1)); - }; - if (text.charAt(0) !== '[') return text; - }; - - if(xmlDoc !== null){ - var elems = xmlDoc.getElementsByTagName('d'); - }else{ - if(!document || !document.createElement){ - // Maybe we are in a restricted context? Bail. - return []; - } - if(warn){ - if(!confirm("XML Parse Error. \n Allow tag soup parsing?\n[WARNING: This is unsafe.]")){ - return []; - } - }else{ - // TODO: Make this safer in the future - text = text.replace(new RegExp("= 7){ - obj.rZ = parseInt(adv[5], 10); - obj.rY = parseInt(adv[6], 10); - } - obj.motion = []; - obj.movable = false; - if(adv.length >= 11){ - obj.movable = true; - var singleStepDur = 500; - var motion = { - x:{from: obj.x, to:parseFloat(adv[7]), dur:singleStepDur, delay:0}, - y:{from: obj.y, to:parseFloat(adv[8]), dur:singleStepDur, delay:0}, - }; - if(adv[9] !== ''){ - singleStepDur = parseInt(adv[9], 10); - motion.x.dur = singleStepDur; - motion.y.dur = singleStepDur; - } - if(adv[10] !== ''){ - motion.x.delay = parseInt(adv[10], 10); - motion.y.delay = parseInt(adv[10], 10); - } - if(adv.length > 11){ - obj.shadow = adv[11]; - if(obj.shadow === "true"){ - obj.shadow = true; - } - if(obj.shadow === "false"){ - obj.shadow = false; - } - if(adv[12] != null){ - obj.font = adv[12]; - } - if(adv.length > 14){ - // Support for Bilibili Advanced Paths - if(obj.position === "relative"){ - console.log("Cannot mix relative and absolute positioning"); - obj.position = "absolute"; - } - var path = adv[14]; - var lastPoint = {x:motion.x.from, y:motion.y.from}; - var pathMotion = []; - var regex = new RegExp("([a-zA-Z])\\s*(\\d+)[, ](\\d+)","g"); - var counts = path.split(/[a-zA-Z]/).length - 1; - var m = regex.exec(path); - while(m !== null){ - switch(m[1]){ - case "M":{ - lastPoint.x = parseInt(m[2],10); - lastPoint.y = parseInt(m[3],10); - }break; - case "L":{ - pathMotion.push({ - "x":{"from":lastPoint.x, "to":parseInt(m[2],10), "dur": singleStepDur / counts, "delay": 0}, - "y":{"from":lastPoint.y, "to":parseInt(m[3],10), "dur": singleStepDur / counts, "delay": 0} - }); - lastPoint.x = parseInt(m[2],10); - lastPoint.y = parseInt(m[3],10); - }break; - } - m = regex.exec(path); - } - motion = null; - obj.motion = pathMotion; - } - } - if(motion !== null){ - obj.motion.push(motion); - } - } - obj.dur = 2500; - if(adv[3] < 12){ - obj.dur = adv[3] * 1000; - } - var tmp = adv[2].split('-'); - if(tmp != null && tmp.length>1){ - var alphaFrom = parseFloat(tmp[0]); - var alphaTo = parseFloat(tmp[1]); - obj.opacity = alphaFrom; - if(alphaFrom !== alphaTo){ - obj.alpha = {from:alphaFrom, to:alphaTo} - } - } - }catch(e){ - console.log('[Err] Error occurred in JSON parsing'); - console.log('[Dbg] ' + text); - } - }else if(obj.mode == 8){ - obj.code = text; //Code comments are special - } - } - if(obj.text != null) - obj.text = obj.text.replace(/\u25a0/g,"\u2588"); - tlist.push(obj); - } - } - return tlist; -} +var BilibiliFormat = (function () { + var BilibiliFormat = {}; + + // Fix comments to be valid + var _format = function (text) { + return text.replace(/\t/,"\\t"); + }; + + // Fix Mode7 comments when they are bad + var _formatmode7 = function (text) { + if (text.charAt(0) === '[') { + switch (text.charAt(text.length - 1)) { + case ']': + return text; + case '"': + return text + ']'; + case ',': + return text.substring(0, text.length - 1) + '"]'; + default: + return _formatmode7(text.substring(0, text.length - 1)); + } + } else { + return text; + } + }; + + // Try to escape unsafe HTML code. DO NOT trust that this handles all cases + // Please do not allow insecure DOM parsing unless you can trust your input source. + var _escapeUnsafe = function (text) { + text = text.replace(new RegExp("= 7) { + comment.rZ = parseInt(extendedParams[5], 10); + comment.rY = parseInt(extendedParams[6], 10); + } + comment.motion = []; + comment.movable = false; + if (extendedParams.length >= 11) { + comment.movable = true; + var singleStepDur = 500; + var motion = { + 'x': { + 'from': comment.x, + 'to': parseFloat(extendedParams[7]), + 'dur': singleStepDur, + 'delay': 0 + }, + 'y': { + 'from': comment.y, + 'to': parseFloat(extendedParams[8]), + 'dur': singleStepDur, + 'delay': 0 + } + }; + if (extendedParams[9] !== '') { + singleStepDur = parseInt(extendedParams[9], 10); + motion.x.dur = singleStepDur; + motion.y.dur = singleStepDur; + } + if (extendedParams[10] !== '') { + motion.x.delay = parseInt(extendedParams[10], 10); + motion.y.delay = parseInt(extendedParams[10], 10); + } + if (extendedParams.length > 11) { + comment.shadow = (extendedParams[11] !== 'false'); + if (extendedParams[12] != null) { + comment.font = extendedParams[12]; + } + if (extendedParams.length > 14) { + // Support for Bilibili advanced Paths + if (comment.position === 'relative') { + if (this._logBadComments) { + console.warn('Cannot mix relative and absolute positioning!'); + } + comment.position = 'absolute'; + } + var path = extendedParams[14]; + var lastPoint = { + x: motion.x.from, + y: motion.y.from + }; + var pathMotion = []; + var regex = new RegExp("([a-zA-Z])\\s*(\\d+)[, ](\\d+)",'g'); + var counts = path.split(/[a-zA-Z]/).length - 1; + var m = regex.exec(path); + while (m !== null) { + switch (m[1]) { + case 'M': { + lastPoint.x = parseInt(m[2],10); + lastPoint.y = parseInt(m[3],10); + } + break; + case 'L': { + pathMotion.push({ + 'x': { + 'from': lastPoint.x, + 'to': parseInt(m[2],10), + 'dur': singleStepDur / counts, + 'delay': 0 + }, + 'y': { + 'from': lastPoint.y, + 'to': parseInt(m[3],10), + 'dur': singleStepDur / counts, + 'delay': 0 + } + }); + lastPoint.x = parseInt(m[2],10); + lastPoint.y = parseInt(m[3],10); + } + break; + } + m = regex.exec(path); + } + motion = null; + comment.motion = pathMotion; + } + } + if (motion !== null) { + comment.motion.push(motion); + } + } + comment.dur = 2500; + if (extendedParams[3] < 12) { + comment.dur = extendedParams[3] * 1000; + } + var tmp = extendedParams[2].split('-'); + if (tmp != null && tmp.length > 1) { + var alphaFrom = parseFloat(tmp[0]); + var alphaTo = parseFloat(tmp[1]); + comment.opacity = alphaFrom; + if (alphaFrom !== alphaTo) { + comment.alpha = { + 'from':alphaFrom, + 'to':alphaTo + }; + } + } + } catch (e) { + if (this._logBadComments) { + console.warn('Error occurred in JSON parsing. Could not parse comment.'); + console.log('[DEBUG] ' + text); + } + } + } else if(comment.mode === 8) { + comment.code = text; // Code comments are special. Treat them that way. + } else { + if (this._logBadComments) { + console.warn('Unknown comment type : ' + comment.mode + '. Not doing further parsing.'); + console.log('[DEBUG] ' + text); + } + } + } + if (comment.text !== null && typeof comment.text === 'string') { + comment.text = comment.text.replace(/\u25a0/g,"\u2588"); + } + return comment; + }; + + BilibiliFormat.XMLParser.prototype.parseMany = function (xmldoc) { + var elements = []; + try { + elements = xmldoc.getElementsByTagName('d'); + } catch (e) { + // TODO: handle XMLDOC errors. + return null; // Bail, I can't handle + } + var commentList = []; + for (var i = 0; i < elements.length; i++) { + var comment = this.parseOne(elements[i]); + if (comment !== null) { + commentList.push(comment); + } + } + return commentList; + }; + + BilibiliFormat.TextParser = function (params) { + this._allowInsecureDomParsing = true; + this._attemptEscaping = true; + this._canSecureParse = false; + if (typeof params === 'object') { + this._allowInsecureDomParsing = params.allowInsecureDomParsing === false ? false : true; + this._attemptEscaping = params.attemptEscaping === false ? false : true; + } + if (typeof document === 'undefined' || !document || !document.createElement) { + // We can't rely on innerHTML anyways. Maybe we're in a restricted context (i.e. node). + this._allowInsecureDomParsing = false; + } + if (typeof DOMParser !== 'undefined' && DOMParser !== null) { + this._canSecureNativeParse = true; + } + if (this._allowInsecureDomParsing || this._canSecureNativeParse) { + this._xmlParser = new BilibiliFormat.XMLParser(params); + } + }; + + BilibiliFormat.TextParser.prototype.parseOne = function (comment) { + // Attempt to parse a single tokenized tag + if (this._allowInsecureDomParsing) { + var source = comment; + if (this._attemptEscaping) { + source = _escapeUnsafe(source); + } + var temp = document.createElement('div'); + temp.innerHTML = source; + var tags = temp.getElementsByTagName('d'); + if (tags.length !== 1) { + return null; // Can't parse, delegate + } else { + return this._xmlParser.parseOne(tags[0]); + } + } else if (this._canSecureNativeParse) { + var domParser = new DOMParser(); + return this._xmlParser.parseOne( + domParser.parseFromString(comment, 'application/xml')); + } else { + throw new Error('Secure native js parsing not implemented yet.'); + } + }; + + BilibiliFormat.TextParser.prototype.parseMany = function (comment) { + // Attempt to parse a comment list + if (this._allowInsecureDomParsing) { + var source = comment; + if (this._attemptEscaping) { + source = _escapeUnsafe(source); + } + var temp = document.createElement('div'); + temp.innerHTML = source; + return this._xmlParser.parseMany(temp); + } else if (this._canSecureNativeParse) { + var domParser = new DOMParser(); + return this._xmlParser.parseMany( + domParser.parseFromString(comment, 'application/xml')); + } else { + throw new Error('Secure native js parsing not implemented yet.'); + } + }; + + return BilibiliFormat; +})(); diff --git a/src/parsers/CommonDanmakuFormat.js b/src/parsers/CommonDanmakuFormat.js new file mode 100644 index 0000000..1d709d4 --- /dev/null +++ b/src/parsers/CommonDanmakuFormat.js @@ -0,0 +1,59 @@ +/** + * CommonDanmakuFormat Parser + * Example parser for parsing comments that the CCL can accept directly. + * @license MIT + * @author Jim Chen + **/ + +var CommonDanmakuFormat = (function () { + var CommonDanmakuFormat = {}; + var _check = function () { + // Sanity check to see if we should be parsing these comments or not + if (comment.mode !== "number"|| typeof comment.stime !== "number") { + return false; + } + if (comment.mode === 8 && !(typeof comment.code === "string")) { + return false; + } + if (typeof comment.text !== "string") { + return false; + } + return true; + }; + + CommonDanmakuFormat.JSONParser = function () { }; + CommonDanmakuFormat.JSONParser.prototype.parseOne = function (comment) { + // Refuse to parse the comment does not pass sanity check + return _check(comment) ? comment : null; + }; + + CommonDanmakuFormat.JSONParser.prototype.parseMany = function (comments) { + // Refuse to parse if any comment does not pass sanity check + return comments.every(_check) ? comments : null; + }; + + CommonDanmakuFormat.XMLParser = function () { }; + CommonDanmakuFormat.XMLParser.prototype.parseOne = function (comment) { + var data = {} + data.stime = parseInt(comment.getAttribute('stime')); + data.mode = parseInt(comment.getAttribute('mode')); + data.size = parseInt(comment.getAttribute('size')); + data.color = parseInt(comment.getAttribute('color')); + data.text = comment.textContent; + return data; + }; + + CommonDanmakuFormat.XMLParser.prototype.parseMany = function (comments) { + var comments = comments.getElementsByTagName('comment'); + var commentList = []; + for (var i = 0; i < comments.length; i++) { + var comment = this.parseOne(comments[i]); + if (comment !== null) { + commentList.push(comment); + } + } + return commentList; + }; + + return CommonDanmakuFormat; +})(); diff --git a/test/Readme.md b/test/Readme.md index 8213827..a67ce9f 100644 --- a/test/Readme.md +++ b/test/Readme.md @@ -91,3 +91,7 @@ * `scripting/*.biliscript` 测试代码弹幕的各种小脚本 + +* `synthetic/*` + + 人造弹幕文件,目标是测试到所有的属性的解析 diff --git a/test/ac940133.json b/test/ac940133.json index 089db72..c6d7a0b 100644 --- a/test/ac940133.json +++ b/test/ac940133.json @@ -1 +1 @@ -[{"c":"12,16738047,7,1,211467,1386243465755","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"12,16738047,7,80,211467,1386243465156","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"12,16738047,7,1,211467,1386243466879","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":475},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.2},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"12,16738047,7,1,211467,1386243456020","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":525},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":0.6},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243455474","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":2.4},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12,16738047,7,1,211467,1386243464618","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":525},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.6},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243462003","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":350},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":4.7},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243454543","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":200},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":0},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"13.1,16738047,7,80,211467,1386243467485","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":250},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"13.5,16738047,7,80,211467,1386243467198","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":300},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"13.9,16738047,7,80,211467,1386243468035","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":350},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"18.1,16738047,7,1,211467,1386243474063","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":475},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":0},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"14.3,16738047,7,80,211467,1386243468298","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"12.6,16738047,7,80,211467,1386243459090","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":525},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"12.7,16738047,7,1,211467,1386243453722","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":3.2},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243460349","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":3.6},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"11.3,16738047,7,80,211467,1386243451626","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"12.2,16738047,7,80,211467,1386243465988","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":475},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"12,16738047,7,1,211467,1386243466579","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.4},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243460629","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":350},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":1.2},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"11.7,16738047,7,80,211467,1386243452327","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":550,\"x\":350},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"12.7,16738047,7,1,211467,1386243462277","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":4.4},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"15.9,16738047,7,80,211467,1386243469140","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"12,16738047,7,1,211467,1386243456900","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":475},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":0.2},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"15.5,16738047,7,80,211467,1386243469731","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"15.1,16738047,7,80,211467,1386243470077","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"10.9,16738047,7,80,211467,1386243450942","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":450,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"16.7,16738047,7,80,211467,1386243470592","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"12.7,16738047,7,80,211467,1386243453166","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":200},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"12.7,16738047,7,1,211467,1386243458266","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":2.4},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243460039","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":300},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":0.8},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"10.1,16738047,7,80,211467,1386243449333","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":350,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"9.7,16738047,7,80,211467,1386243448522","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":300,\"x\":600},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"12.7,16738047,7,1,211467,1386243461155","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":2},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"9.3,16738047,7,80,211467,1386243447729","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":250,\"x\":650},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"16.3,16738047,7,80,211467,1386243470850","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"8.9,16738047,7,1,211467,1386243447182","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":200,\"x\":700},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.7,16738047,7,80,211467,1386243446311","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":475,\"x\":525},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"8.9,16738047,7,80,211467,1386243445561","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":200,\"x\":700},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"17.4,16738047,7,80,211467,1386243471132","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":350},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"8.5,16738047,7,1,211467,1386243445003","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":475,\"x\":525},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.2},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.9,16738047,7,1,211467,1386243444147","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":250,\"x\":650},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.4},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"17.9,16738047,7,1,211467,1386243471735","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":0.4},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"8.9,16738047,7,1,211467,1386243443340","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":2.4},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243457688","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":250},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":0.4},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12,16738047,7,1,211467,1386243463390","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":0.4},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"8.5,16738047,7,1,211467,1386243442786","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":475,\"x\":525},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.2},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.9,16738047,7,1,211467,1386243441706","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":350,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":1.2},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243462564","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":4},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"8.5,16738047,7,80,211467,1386243441179","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":450,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"8.9,16738047,7,1,211467,1386243440379","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":400,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":1.6},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.7,16738047,7,80,211467,1386243439649","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":475,\"x\":525},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"8.9,16738047,7,80,211467,1386243438837","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"8.5,16738047,7,1,211467,1386243438220","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.4},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"12.4,16738047,7,80,211467,1386243464344","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"12.7,16738047,7,1,211467,1386243461447","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":300},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":5.1},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"8.9,16738047,7,1,211467,1386243437412","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":450,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":2},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.9,16738047,7,80,211467,1386243436518","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"17.9,16738047,7,1,211467,1386243472008","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":0},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"8.1,16738047,7,80,211467,1386243435721","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":600},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"8.5,16738047,7,80,211467,1386243435190","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":450,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"17.9,16738047,7,80,211467,1386243472578","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"10.5,16738047,7,80,211467,1386243450125","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":400,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"8.9,16738047,7,1,211467,1386243434402","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":300,\"x\":600},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.8},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"18.1,16738047,7,80,211467,1386243473788","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":475},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"8.5,16738047,7,1,211467,1386243433555","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":450,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.5,16738047,7,1,211467,1386243432820","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.4},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"12.6,16738047,7,80,211467,1386243464072","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":525},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"17.8,16738047,7,80,211467,1386243472813","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":300},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"8.5,16738047,7,1,211467,1386243432024","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":450,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.9,16738047,7,1,211467,1386243431452","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":550,\"x\":350},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":2.8},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243463111","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":1.6},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"14.7,16738047,7,80,211467,1386243468869","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"19.5,16738047,7,80,211467,1386243477015","m":"{\"f\":6,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.3},{\"l\":0.5},{\"t\":0,\"l\":0.3}],\"e\":6}"},{"c":"7.7,16738047,7,80,211467,1386243429766","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":450,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"7.3,16738047,7,80,211467,1386243430588","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":400,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"5.7,16738047,7,80,211467,1386243426266","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":200,\"x\":300},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"5.3,16738047,7,1,211467,1386243425989","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":250,\"x\":350},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.8},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"19.5,16738047,7,80,211467,1386243476482","m":"{\"f\":1,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"perfect\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"t\":1,\"l\":0.3},{\"l\":0.5},{\"t\":0,\"l\":0.3}],\"e\":1}"},{"c":"4,16777215,7,99,211467,1386243475231","m":"{\"f\":1,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":900,\"x\":100},\"c\":4,\"n\":\"→\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,false]],\"b\":true},\"z\":[{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1}],\"e\":1}"},{"c":"4.4,16777215,7,99,211467,1386243422566","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"2\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.3}],\"e\":6}"},{"c":"18.3,16738047,7,80,211467,1386243474608","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"6.9,16738047,7,80,211467,1386243428942","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":350,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"6.5,16738047,7,80,211467,1386243428255","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":300,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"4.8,16777215,7,99,211467,1386243423131","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"1\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.3}],\"e\":6}"},{"c":"4,16777215,7,99,211467,1386243474913","m":"{\"f\":1,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":100,\"x\":100},\"c\":4,\"n\":\"→\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,false]],\"b\":true},\"z\":[{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1}],\"e\":1}"},{"c":"5.3,16738047,7,80,211467,1386243427972","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":150,\"x\":250},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"5.3,16738047,7,1,211467,1386243427441","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":600},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":2.8},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.2,16777215,7,99,211467,1386243427178","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.3,16738047,7,1,211467,1386243426623","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":150,\"x\":250},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.3,16738047,7,1,211467,1386243423738","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":200,\"x\":300},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.4},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"17.1,16738047,7,80,211467,1386243473188","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"5.3,16738047,7,1,211467,1386243424928","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":450,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":2.4},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"4,16777215,7,99,211467,1386243423411","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"3\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.3}],\"e\":6}"},{"c":"4,16777215,7,99,211467,1386243476227","m":"{\"f\":1,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":100,\"x\":870},\"c\":4,\"n\":\"←\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,false]],\"b\":true},\"z\":[{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1}],\"e\":1}"},{"c":"5.3,16738047,7,1,211467,1386243425415","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":400,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":2},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"4,16777215,7,99,211467,1386243475903","m":"{\"f\":1,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":900,\"x\":870},\"c\":4,\"n\":\"←\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,false]],\"b\":true},\"z\":[{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1}],\"e\":1}"},{"c":"5.3,16738047,7,1,211467,1386243424685","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":300,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":1.2},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.3,16738047,7,1,211467,1386243424373","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":350,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":1.6},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.2,16777215,7,99,211467,1386243321","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"18.361,16776960,4,25,671152,1386228346","m":"BGM-CARAMELLDANSEN(ウッーウッーウ)"},{"c":"5.2,16777215,7,99,211467,1386243321","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243427178","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243321","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243321","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243321","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243321","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"40.9,16724787,7,25,8603,1386252760147","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"41.09900000000001,0,7,25,8603,1386252760145","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.199000000000005,0,7,25,8603,1386252760145","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.1,16724787,7,25,8603,1386252760144","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.599,0,7,25,8603,1386252760143","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"40.79900000000001,0,7,25,8603,1386252760142","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"40.699000000000005,0,7,25,8603,1386252760141","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.39900000000001,0,7,25,8603,1386252760140","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"40.89900000000001,0,7,25,8603,1386252760139","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.29900000000001,0,7,25,8603,1386252759239","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"40.99900000000001,0,7,25,8603,1386252759238","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"40.499,0,7,25,8603,1386252755277","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.098,0,7,25,8603,1386252755028","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"40.79799999999995,0,7,25,8603,1386252754538","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"40.898,0,7,25,8603,1386252754536","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.29799999999995,0,7,25,8603,1386252754536","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"40.498,0,7,25,8603,1386252754535","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.5,16724787,7,25,8603,1386252754535","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.698,0,7,25,8603,1386252754534","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"40.598,0,7,25,8603,1386252754534","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.198,0,7,25,8603,1386252754533","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.398,0,7,25,8603,1386252754532","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"40.998,0,7,25,8603,1386252754532","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.6,16724787,7,25,8603,1386252754531","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"39.7,16724787,7,25,8603,1386252754528","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"39.8,16724787,7,25,8603,1386252754525","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.4,16724787,7,25,8603,1386252754523","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.3,16724787,7,25,8603,1386252754522","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"39.99900000000001,0,7,25,8603,1386252754520","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"40.09900000000001,0,7,25,8603,1386252754519","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"40.1,16724787,7,25,8603,1386252753310","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.199000000000005,0,7,25,8603,1386252751522","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.9,16724787,7,25,8603,1386252751522","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40,16724787,7,25,8603,1386252751521","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.2,16724787,7,25,8603,1386252751521","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.29900000000001,0,7,25,8603,1386252751520","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.89900000000001,0,7,25,8603,1386252751519","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.797999999999995,0,7,25,8603,1386252751519","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"40.098,0,7,25,8603,1386252751037","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.499,0,7,25,8603,1386252751036","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.599,0,7,25,8603,1386252751036","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.79900000000001,0,7,25,8603,1386252750330","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.699000000000005,0,7,25,8603,1386252750329","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"40.39900000000001,0,7,25,8603,1386252750329","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.898,0,7,25,8603,1386252749619","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.498,0,7,25,8603,1386252749618","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.698,0,7,25,8603,1386252749617","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"40.398,0,7,25,8603,1386252749617","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.598,0,7,25,8603,1386252749616","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"40.198,0,7,25,8603,1386252749616","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"40.297999999999995,0,7,25,8603,1386252749615","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.4,16724787,7,25,8603,1386252749007","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"38.8,16724787,7,25,8603,1386252745619","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"38.6,16724787,7,25,8603,1386252745618","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"38.5,16724787,7,25,8603,1386252745345","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"39.998,0,7,25,8603,1386252745345","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.7,16724787,7,25,8603,1386252744837","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"39.3,16724787,7,25,8603,1386252742089","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"39.2,16724787,7,25,8603,1386252741848","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"39.29900000000001,0,7,25,8603,1386252741847","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.99900000000001,0,7,25,8603,1386252741541","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.09900000000001,0,7,25,8603,1386252741540","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.1,16724787,7,25,8603,1386252741538","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"39.199000000000005,0,7,25,8603,1386252737592","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.9,16724787,7,25,8603,1386252737591","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"39,16724787,7,25,8603,1386252737590","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"38.89900000000001,0,7,25,8603,1386252737589","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.39900000000001,0,7,25,8603,1386252737588","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.699000000000005,0,7,25,8603,1386252737588","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.79900000000001,0,7,25,8603,1386252737587","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.599,0,7,25,8603,1386252737586","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.499,0,7,25,8603,1386252737586","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.398,0,7,25,8603,1386252737585","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.198,0,7,25,8603,1386252736984","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.598,0,7,25,8603,1386252736983","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.29799999999995,0,7,25,8603,1386252736982","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.898,0,7,25,8603,1386252736171","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.79799999999995,0,7,25,8603,1386252736170","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.098,0,7,25,8603,1386252736170","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.698,0,7,25,8603,1386252733575","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.5,16724787,7,25,8603,1386252733575","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"38.998,0,7,25,8603,1386252733574","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.498,0,7,25,8603,1386252733574","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38,16724787,7,25,8603,1386252733573","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"38.2,16724787,7,25,8603,1386252733573","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"38.3,16724787,7,25,8603,1386252733060","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"37.7,16724787,7,25,8603,1386252733060","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"37.8,16724787,7,25,8603,1386252733059","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"38.4,16724787,7,25,8603,1386252732775","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"37.6,16724787,7,25,8603,1386252732775","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"37.9,16724787,7,25,8603,1386252732774","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"38.1,16724787,7,25,8603,1386252732773","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"37.699000000000005,0,7,25,8603,1386252732772","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.39900000000001,0,7,25,8603,1386252731518","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"37.89900000000001,0,7,25,8603,1386252731517","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.29900000000001,0,7,25,8603,1386252729206","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"37.99900000000001,0,7,25,8603,1386252729205","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.09900000000001,0,7,25,8603,1386252729205","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.199000000000005,0,7,25,8603,1386252729204","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.297999999999995,0,7,25,8603,1386252729204","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.898,0,7,25,8603,1386252729202","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.797999999999995,0,7,25,8603,1386252729201","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.098,0,7,25,8603,1386252729199","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.499,0,7,25,8603,1386252728676","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"37.599,0,7,25,8603,1386252728675","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"37.79900000000001,0,7,25,8603,1386252728674","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.198,0,7,25,8603,1386252728418","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.998,0,7,25,8603,1386252728417","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.498,0,7,25,8603,1386252728416","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.698,0,7,25,8603,1386252728415","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.398,0,7,25,8603,1386252728414","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.598,0,7,25,8603,1386252728413","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41,16724787,7,25,8603,1386252769600","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.998,0,7,25,8603,1386252769601","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.4,16724787,7,25,8603,1386252769602","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.5,16724787,7,25,8603,1386252772693","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.6,16724787,7,25,8603,1386252773550","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.7,16724787,7,25,8603,1386252773552","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.8,16724787,7,25,8603,1386252774679","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"41.3,16724787,7,25,8603,1386252774680","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"41.2,16724787,7,25,8603,1386252774680","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.898,0,7,25,8603,1386252775166","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"46.297999999999995,0,7,25,8603,1386252775166","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"46.198,0,7,25,8603,1386252775167","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.598,0,7,25,8603,1386252775167","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.79900000000001,0,7,25,8603,1386252775168","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.398,0,7,25,8603,1386252775168","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.698,0,7,25,8603,1386252775169","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.498,0,7,25,8603,1386252775170","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.89900000000001,0,7,25,8603,1386252775170","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.39900000000001,0,7,25,8603,1386252775171","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.699000000000005,0,7,25,8603,1386252775172","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.599,0,7,25,8603,1386252775172","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.499,0,7,25,8603,1386252784443","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.098,0,7,25,8603,1386252784705","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.797999999999995,0,7,25,8603,1386252784706","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.9,3407667,7,25,8603,1386252786047","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46.1,3407667,7,25,8603,1386252786049","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46.199000000000005,0,7,25,8603,1386252786516","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.09900000000001,0,7,25,8603,1386252786516","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.29900000000001,0,7,25,8603,1386252786517","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.99900000000001,0,7,25,8603,1386252786518","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.3,3407667,7,25,8603,1386252786518","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46.2,3407667,7,25,8603,1386252786519","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46,3407667,7,25,8603,1386252788545","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"45.7,3407667,7,25,8603,1386252788793","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"45.8,3407667,7,25,8603,1386252789047","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46.4,3407667,7,25,8603,1386252794004","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"47.198,0,7,25,8603,1386252794006","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"46.598,0,7,25,8603,1386252794007","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"46.698,0,7,25,8603,1386252794008","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.398,0,7,25,8603,1386252794009","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"46.498,0,7,25,8603,1386252794010","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"46.998,0,7,25,8603,1386252794011","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.5,3407667,7,25,8603,1386252794011","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"45.6,3407667,7,25,8603,1386252794012","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46.79900000000001,0,7,25,8603,1386252794013","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.599,0,7,25,8603,1386252794014","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.499,0,7,25,8603,1386252794014","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.098,0,7,25,8603,1386252794015","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"46.79799999999995,0,7,25,8603,1386252794016","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"46.898,0,7,25,8603,1386252794016","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.29799999999995,0,7,25,8603,1386252794017","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.1,3407667,7,25,8603,1386252794018","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"47.199000000000005,0,7,25,8603,1386252794018","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.09900000000001,0,7,25,8603,1386252794166","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.99900000000001,0,7,25,8603,1386252794167","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.29900000000001,0,7,25,8603,1386252794167","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.89900000000001,0,7,25,8603,1386252794168","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.39900000000001,0,7,25,8603,1386252794169","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.699000000000005,0,7,25,8603,1386252794169","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.2,3407667,7,25,8603,1386252794170","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"47,3407667,7,25,8603,1386252794170","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46.9,3407667,7,25,8603,1386252797351","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"47.3,3407667,7,25,8603,1386252797896","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46.7,3407667,7,25,8603,1386252797897","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46.8,3407667,7,25,8603,1386252797898","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"48.398,0,7,25,8603,1386252797899","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.698,0,7,25,8603,1386252797900","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.498,0,7,25,8603,1386252797900","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.998,0,7,25,8603,1386252797900","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"46.5,3407667,7,25,8603,1386252797901","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46.6,3407667,7,25,8603,1386252797901","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"47.4,3407667,7,25,8603,1386252799270","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"48.198,0,7,25,8603,1386252799271","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.598,0,7,25,8603,1386252799272","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.297999999999995,0,7,25,8603,1386252799273","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.699000000000005,0,7,25,8603,1386252799275","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.79900000000001,0,7,25,8603,1386252799276","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.599,0,7,25,8603,1386252799276","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.499,0,7,25,8603,1386252799277","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.098,0,7,25,8603,1386252799278","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.797999999999995,0,7,25,8603,1386252799278","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.898,0,7,25,8603,1386252799279","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.39900000000001,0,7,25,8603,1386252801934","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.89900000000001,0,7,25,8603,1386252801935","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.29900000000001,0,7,25,8603,1386252803487","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.99900000000001,0,7,25,8603,1386252803488","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.3,3407667,7,25,8603,1386252803489","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"47.9,3407667,7,25,8603,1386252803489","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.2,3407667,7,25,8603,1386252803490","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48,3407667,7,25,8603,1386252803490","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.1,3407667,7,25,8603,1386252803491","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.199000000000005,0,7,25,8603,1386252803491","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.09900000000001,0,7,25,8603,1386252803492","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.7,3407667,7,25,8603,1386252803492","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"47.8,3407667,7,25,8603,1386252803493","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.4,3407667,7,25,8603,1386252803494","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"47.6,3407667,7,25,8603,1386252803494","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"47.5,3407667,7,25,8603,1386252803495","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49.29799999999995,0,7,25,8603,1386252803741","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.198,0,7,25,8603,1386252803742","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.598,0,7,25,8603,1386252803744","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.598,0,7,25,8603,1386252803744","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.398,0,7,25,8603,1386252806482","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.698,0,7,25,8603,1386252807194","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.498,0,7,25,8603,1386252807196","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.998,0,7,25,8603,1386252807197","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.79799999999995,0,7,25,8603,1386252807426","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.898,0,7,25,8603,1386252807427","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.098,0,7,25,8603,1386252807432","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.29900000000001,0,7,25,8603,1386252812357","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.89900000000001,0,7,25,8603,1386252812358","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.39900000000001,0,7,25,8603,1386252812359","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.699000000000005,0,7,25,8603,1386252813010","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.79900000000001,0,7,25,8603,1386252813011","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.599,0,7,25,8603,1386252813011","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.499,0,7,25,8603,1386252813011","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.199000000000005,0,7,25,8603,1386252813012","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.09900000000001,0,7,25,8603,1386252813013","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.99900000000001,0,7,25,8603,1386252813015","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.1,3407667,7,25,8603,1386252813022","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.6,3407667,7,25,8603,1386252816527","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49.4,3407667,7,25,8603,1386252816528","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.8,3407667,7,25,8603,1386252817239","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.7,3407667,7,25,8603,1386252817239","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49.3,3407667,7,25,8603,1386252817755","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49.2,3407667,7,25,8603,1386252817757","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49,3407667,7,25,8603,1386252817758","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.9,3407667,7,25,8603,1386252817759","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.5,3407667,7,25,8603,1386252817760","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"50.198,0,7,25,8603,1386252858639","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.598,0,7,25,8603,1386252858640","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.398,0,7,25,8603,1386252858640","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.698,0,7,25,8603,1386252858641","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.998,0,7,25,8603,1386252858641","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.498,0,7,25,8603,1386252858641","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.098,0,7,25,8603,1386252858642","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.797999999999995,0,7,25,8603,1386252858643","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.898,0,7,25,8603,1386252858644","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.297999999999995,0,7,25,8603,1386252858644","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.499,0,7,25,8603,1386252858645","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.89900000000001,0,7,25,8603,1386252863281","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.99900000000001,0,7,25,8603,1386252863281","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.29900000000001,0,7,25,8603,1386252863281","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.39900000000001,0,7,25,8603,1386252863282","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.699000000000005,0,7,25,8603,1386252863282","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.79900000000001,0,7,25,8603,1386252863286","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.599,0,7,25,8603,1386252863287","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.2,16737996,7,25,8603,1386252863287","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50,16737996,7,25,8603,1386252863288","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"49.9,16737996,7,25,8603,1386252863289","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.1,16737996,7,25,8603,1386252865984","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.199000000000005,0,7,25,8603,1386252866216","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.09900000000001,0,7,25,8603,1386252866216","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.3,16737996,7,25,8603,1386252867189","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.498,0,7,25,8603,1386252867190","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.998,0,7,25,8603,1386252867190","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.5,16737996,7,25,8603,1386252867427","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"49.6,16737996,7,25,8603,1386252867428","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.4,16737996,7,25,8603,1386252867428","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"49.8,16737996,7,25,8603,1386252870866","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"49.7,16737996,7,25,8603,1386252870868","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.598,0,7,25,8603,1386252871156","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.398,0,7,25,8603,1386252871157","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.698,0,7,25,8603,1386252871157","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.198,0,7,25,8603,1386252871386","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.29799999999995,0,7,25,8603,1386252877292","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.699000000000005,0,7,25,8603,1386252877293","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.599,0,7,25,8603,1386252877293","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.499,0,7,25,8603,1386252877294","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.79900000000001,0,7,25,8603,1386252877294","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.79799999999995,0,7,25,8603,1386252877295","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.098,0,7,25,8603,1386252877295","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.898,0,7,25,8603,1386252877296","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.39900000000001,0,7,25,8603,1386252877297","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.89900000000001,0,7,25,8603,1386252877298","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.99900000000001,0,7,25,8603,1386252877300","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.3,16737996,7,25,8603,1386252881616","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.2,16737996,7,25,8603,1386252881618","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51,16737996,7,25,8603,1386252881618","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.9,16737996,7,25,8603,1386252881619","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.1,16737996,7,25,8603,1386252881619","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.09900000000001,0,7,25,8603,1386252881620","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.29900000000001,0,7,25,8603,1386252881620","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.199000000000005,0,7,25,8603,1386252881621","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.8,16737996,7,25,8603,1386252881621","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.7,16737996,7,25,8603,1386252881622","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.4,16737996,7,25,8603,1386252881623","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.598,0,7,25,8603,1386252881683","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.398,0,7,25,8603,1386252881684","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.698,0,7,25,8603,1386252881684","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.498,0,7,25,8603,1386252882223","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.998,0,7,25,8603,1386252882224","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.5,16737996,7,25,8603,1386252882225","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.6,16737996,7,25,8603,1386252882225","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.797999999999995,0,7,25,8603,1386252886205","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.898,0,7,25,8603,1386252886206","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.297999999999995,0,7,25,8603,1386252886207","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.198,0,7,25,8603,1386252886208","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.098,0,7,25,8603,1386252886209","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.499,0,7,25,8603,1386252886210","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.599,0,7,25,8603,1386252886212","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.09900000000001,0,7,25,8603,1386252886214","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.99900000000001,0,7,25,8603,1386252886216","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.29900000000001,0,7,25,8603,1386252886217","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.89900000000001,0,7,25,8603,1386252886218","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.39900000000001,0,7,25,8603,1386252886219","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.699000000000005,0,7,25,8603,1386252886219","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.79900000000001,0,7,25,8603,1386252886220","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.199000000000005,0,7,25,8603,1386252886221","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.1,16737996,7,25,8603,1386252889788","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"51.9,16737996,7,25,8603,1386252889791","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52,16737996,7,25,8603,1386252890962","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"51.5,16737996,7,25,8603,1386252890963","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"51.6,16737996,7,25,8603,1386252890963","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.4,16737996,7,25,8603,1386252890964","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"51.8,16737996,7,25,8603,1386252890964","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.2,16737996,7,25,8603,1386252890965","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"51.7,16737996,7,25,8603,1386252890965","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.3,16737996,7,25,8603,1386252894678","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53.398,0,7,25,8603,1386252894679","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.698,0,7,25,8603,1386252895012","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.498,0,7,25,8603,1386252895013","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.998,0,7,25,8603,1386252895014","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.598,0,7,25,8603,1386252895520","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.599,0,7,25,8603,1386252895520","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.499,0,7,25,8603,1386252899277","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"53.098,0,7,25,8603,1386252899831","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.79799999999995,0,7,25,8603,1386252899832","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"53.29799999999995,0,7,25,8603,1386252899833","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.898,0,7,25,8603,1386252899833","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"53.198,0,7,25,8603,1386252899834","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"53.39900000000001,0,7,25,8603,1386252899835","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.699000000000005,0,7,25,8603,1386252910646","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.79900000000001,0,7,25,8603,1386252910881","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"53.1,16737996,7,25,8603,1386252921115","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53.199000000000005,0,7,25,8603,1386252921116","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"53.09900000000001,0,7,25,8603,1386252921117","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"53.29900000000001,0,7,25,8603,1386252921117","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.99900000000001,0,7,25,8603,1386252921118","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.89900000000001,0,7,25,8603,1386252921119","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.7,16737996,7,25,8603,1386252921119","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53.3,16737996,7,25,8603,1386252921120","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53.2,16737996,7,25,8603,1386252921120","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53,16737996,7,25,8603,1386252921121","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.9,16737996,7,25,8603,1386252921122","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.9,16737996,7,25,8603,1386252921122","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.8,16737996,7,25,8603,1386252925264","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53.4,16737996,7,25,8603,1386252925772","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"41.598,0,7,25,8603,1386252926087","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.398,0,7,25,8603,1386252926087","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.898,0,7,25,8603,1386252926088","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.698,0,7,25,8603,1386252926088","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.498,0,7,25,8603,1386252926089","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.998,0,7,25,8603,1386252926200","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.5,16737996,7,25,8603,1386252926201","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.6,16737996,7,25,8603,1386252930009","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"42.297999999999995,0,7,25,8603,1386252930010","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.198,0,7,25,8603,1386252930733","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.797999999999995,0,7,25,8603,1386252934798","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.89900000000001,0,7,25,8603,1386252935482","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"42.39900000000001,0,7,25,8603,1386252935482","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.699000000000005,0,7,25,8603,1386252935483","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.79900000000001,0,7,25,8603,1386252935714","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.599,0,7,25,8603,1386252935715","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.499,0,7,25,8603,1386252938519","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"42.098,0,7,25,8603,1386252939861","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42,39423,7,25,8603,1386252939862","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"41.9,39423,7,25,8603,1386252939863","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.1,39423,7,25,8603,1386252939863","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.199000000000005,0,7,25,8603,1386252939864","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"42.09900000000001,0,7,25,8603,1386252939864","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.99900000000001,0,7,25,8603,1386252939865","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"42.29900000000001,0,7,25,8603,1386252939865","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.5,39423,7,25,8603,1386252939866","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"41.6,39423,7,25,8603,1386252939866","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.4,39423,7,25,8603,1386252939867","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"41.8,39423,7,25,8603,1386252939867","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"41.7,39423,7,25,8603,1386252939868","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.3,39423,7,25,8603,1386252939868","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.2,39423,7,25,8603,1386252939869","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"43.198,0,7,25,8603,1386252939869","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.598,0,7,25,8603,1386252945969","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.398,0,7,25,8603,1386252946332","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.698,0,7,25,8603,1386252946333","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.498,0,7,25,8603,1386252946333","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.998,0,7,25,8603,1386252946334","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.79900000000001,0,7,25,8603,1386252946969","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"42.599,0,7,25,8603,1386252946970","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"42.499,0,7,25,8603,1386252949787","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.098,0,7,25,8603,1386252950330","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.79799999999995,0,7,25,8603,1386252950330","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.898,0,7,25,8603,1386252950331","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.29799999999995,0,7,25,8603,1386252950331","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.39900000000001,0,7,25,8603,1386252950332","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"42.699000000000005,0,7,25,8603,1386252950333","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"42.89900000000001,0,7,25,8603,1386252951126","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.2,39423,7,25,8603,1386252951126","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"43,39423,7,25,8603,1386252951127","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"43.09900000000001,0,7,25,8603,1386252951392","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.199000000000005,0,7,25,8603,1386252951393","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"42.9,39423,7,25,8603,1386252951393","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"43.1,39423,7,25,8603,1386252951590","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.99900000000001,0,7,25,8603,1386252951590","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.29900000000001,0,7,25,8603,1386252951591","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.4,39423,7,25,8603,1386252951809","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.8,39423,7,25,8603,1386252955034","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.7,39423,7,25,8603,1386252955035","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"43.3,39423,7,25,8603,1386252955035","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.6,39423,7,25,8603,1386252955037","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.5,39423,7,25,8603,1386252955959","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"44.297999999999995,0,7,25,8603,1386252955960","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.198,0,7,25,8603,1386252955962","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.598,0,7,25,8603,1386252955963","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.498,0,7,25,8603,1386252955965","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.398,0,7,25,8603,1386252955966","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.698,0,7,25,8603,1386252955966","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.998,0,7,25,8603,1386252955967","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.499,0,7,25,8603,1386252955968","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.098,0,7,25,8603,1386252959049","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.797999999999995,0,7,25,8603,1386252959304","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.898,0,7,25,8603,1386252959305","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.599,0,7,25,8603,1386252959306","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.79900000000001,0,7,25,8603,1386252959601","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.29900000000001,0,7,25,8603,1386252964254","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.89900000000001,0,7,25,8603,1386252964255","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.699000000000005,0,7,25,8603,1386252964256","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.39900000000001,0,7,25,8603,1386252968058","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44,39423,7,25,8603,1386252969083","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.9,39423,7,25,8603,1386252969083","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.1,39423,7,25,8603,1386252969084","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.199000000000005,0,7,25,8603,1386252969085","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.09900000000001,0,7,25,8603,1386252969085","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.99900000000001,0,7,25,8603,1386252969085","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.2,39423,7,25,8603,1386252969087","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.998,0,7,25,8603,1386252969087","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.4,39423,7,25,8603,1386252969087","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.5,39423,7,25,8603,1386252969088","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.6,39423,7,25,8603,1386252972979","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.8,39423,7,25,8603,1386252972981","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.7,39423,7,25,8603,1386252974053","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.3,39423,7,25,8603,1386252974054","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.398,0,7,25,8603,1386252974054","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.698,0,7,25,8603,1386252974055","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.498,0,7,25,8603,1386252974056","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.598,0,7,25,8603,1386252974056","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.29799999999995,0,7,25,8603,1386252974057","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.79900000000001,0,7,25,8603,1386252974057","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.599,0,7,25,8603,1386252974058","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.198,0,7,25,8603,1386252974059","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.499,0,7,25,8603,1386252974059","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.098,0,7,25,8603,1386252974059","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.79799999999995,0,7,25,8603,1386252974060","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.898,0,7,25,8603,1386252974060","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.39900000000001,0,7,25,8603,1386252974061","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.39900000000001,0,7,25,8603,1386252974061","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.699000000000005,0,7,25,8603,1386252977544","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.89900000000001,0,7,25,8603,1386252977545","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.29900000000001,0,7,25,8603,1386252977857","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.2,39423,7,25,8603,1386252977858","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45,39423,7,25,8603,1386252977859","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.9,39423,7,25,8603,1386252978865","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.1,39423,7,25,8603,1386252978866","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.199000000000005,0,7,25,8603,1386252978867","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.09900000000001,0,7,25,8603,1386252978868","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.99900000000001,0,7,25,8603,1386252978869","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.5,39423,7,25,8603,1386252978869","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.6,39423,7,25,8603,1386252978870","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.4,39423,7,25,8603,1386252978871","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.8,39423,7,25,8603,1386252978872","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.7,39423,7,25,8603,1386252981560","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.3,39423,7,25,8603,1386252981830","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"37.998,0,7,25,8603,1386252647","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.498,0,7,25,8603,1386252647","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.698,0,7,25,8603,1386252647","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.398,0,7,25,8603,1386252647","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.598,0,7,25,8603,1386252647","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.198,0,7,25,8603,1386252647","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.297999999999995,0,7,25,8603,1386252647","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.898,0,7,25,8603,1386252647","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.797999999999995,0,7,25,8603,1386252647","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.098,0,7,25,8603,1386252647","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.499,0,7,25,8603,1386252647","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"37.599,0,7,25,8603,1386252647","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"37.79900000000001,0,7,25,8603,1386252647","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"37.699000000000005,0,7,25,8603,1386252647","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.39900000000001,0,7,25,8603,1386252648","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"37.89900000000001,0,7,25,8603,1386252648","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.29900000000001,0,7,25,8603,1386252648","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"37.99900000000001,0,7,25,8603,1386252648","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.09900000000001,0,7,25,8603,1386252648","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.199000000000005,0,7,25,8603,1386252648","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.1,16724787,7,25,8603,1386252651","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":320},{\"l\":2}]}"},{"c":"37.9,16724787,7,25,8603,1386252652","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":230},{\"l\":2}]}"},{"c":"38,16724787,7,25,8603,1386252652","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":275},{\"l\":2}]}"},{"c":"38.2,16724787,7,25,8603,1386252652","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":365},{\"l\":2}]}"},{"c":"38.3,16724787,7,25,8603,1386252652","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":410},{\"l\":2}]}"},{"c":"37.7,16724787,7,25,8603,1386252652","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":140},{\"l\":2}]}"},{"c":"37.8,16724787,7,25,8603,1386252652","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":185},{\"l\":2}]}"},{"c":"38.4,16724787,7,25,8603,1386252652","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":455},{\"l\":2}]}"},{"c":"37.6,16724787,7,25,8603,1386252652","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":95},{\"l\":2}]}"},{"c":"37.5,16724787,7,25,8603,1386252652","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":50},{\"l\":2}]}"},{"c":"38.998,0,7,25,8603,1386252652","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.498,0,7,25,8603,1386252652","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.698,0,7,25,8603,1386252652","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.398,0,7,25,8603,1386252652","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.198,0,7,25,8603,1386252652","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.598,0,7,25,8603,1386252652","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.29799999999995,0,7,25,8603,1386252652","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.898,0,7,25,8603,1386252652","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.79799999999995,0,7,25,8603,1386252652","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.098,0,7,25,8603,1386252652","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.499,0,7,25,8603,1386252652","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.599,0,7,25,8603,1386252656","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.79900000000001,0,7,25,8603,1386252656","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.699000000000005,0,7,25,8603,1386252656","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"39.39900000000001,0,7,25,8603,1386252656","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.89900000000001,0,7,25,8603,1386252657","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"39.29900000000001,0,7,25,8603,1386252657","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.99900000000001,0,7,25,8603,1386252657","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"39.09900000000001,0,7,25,8603,1386252657","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"39.1,16724787,7,25,8603,1386252657","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":770},{\"l\":2}]}"},{"c":"39.199000000000005,0,7,25,8603,1386252657","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.9,16724787,7,25,8603,1386252657","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":680},{\"l\":2}]}"},{"c":"39,16724787,7,25,8603,1386252657","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":725},{\"l\":2}]}"},{"c":"48.898,0,7,25,8603,1386252726","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.79799999999995,0,7,25,8603,1386252726","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.098,0,7,25,8603,1386252727","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.499,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"48.599,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"48.79900000000001,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"48.699000000000005,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.39900000000001,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"48.89900000000001,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.29900000000001,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"48.99900000000001,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.09900000000001,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.199000000000005,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.1,3407667,7,25,8603,1386252733","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":770},{\"l\":2}]}"},{"c":"48.9,3407667,7,25,8603,1386252733","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":680},{\"l\":2}]}"},{"c":"49,3407667,7,25,8603,1386252733","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":725},{\"l\":2}]}"},{"c":"49.2,3407667,7,25,8603,1386252733","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":815},{\"l\":2}]}"},{"c":"49.3,3407667,7,25,8603,1386252733","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":860},{\"l\":2}]}"},{"c":"48.7,3407667,7,25,8603,1386252733","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":590},{\"l\":2}]}"},{"c":"48.8,3407667,7,25,8603,1386252733","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":635},{\"l\":2}]}"},{"c":"49.4,3407667,7,25,8603,1386252733","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":905},{\"l\":2}]}"},{"c":"48.6,3407667,7,25,8603,1386252733","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":545},{\"l\":2}]}"},{"c":"48.5,3407667,7,25,8603,1386252736","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":500},{\"l\":2}]}"},{"c":"49.998,0,7,25,8603,1386252777","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.498,0,7,25,8603,1386252777","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.698,0,7,25,8603,1386252777","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.398,0,7,25,8603,1386252777","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.598,0,7,25,8603,1386252777","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.198,0,7,25,8603,1386252777","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.297999999999995,0,7,25,8603,1386252777","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.898,0,7,25,8603,1386252777","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.797999999999995,0,7,25,8603,1386252777","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.098,0,7,25,8603,1386252777","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.499,0,7,25,8603,1386252778","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.599,0,7,25,8603,1386252782","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.79900000000001,0,7,25,8603,1386252782","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.699000000000005,0,7,25,8603,1386252782","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.39900000000001,0,7,25,8603,1386252782","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.89900000000001,0,7,25,8603,1386252782","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.29900000000001,0,7,25,8603,1386252782","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.99900000000001,0,7,25,8603,1386252782","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.09900000000001,0,7,25,8603,1386252782","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.199000000000005,0,7,25,8603,1386252782","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.1,16737996,7,25,8603,1386252782","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":320},{\"l\":2}]}"},{"c":"49.9,16737996,7,25,8603,1386252782","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":230},{\"l\":2}]}"},{"c":"50,16737996,7,25,8603,1386252782","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":275},{\"l\":2}]}"},{"c":"50.2,16737996,7,25,8603,1386252782","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":365},{\"l\":2}]}"},{"c":"50.3,16737996,7,25,8603,1386252786","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":410},{\"l\":2}]}"},{"c":"49.7,16737996,7,25,8603,1386252786","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":140},{\"l\":2}]}"},{"c":"49.8,16737996,7,25,8603,1386252786","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":185},{\"l\":2}]}"},{"c":"50.4,16737996,7,25,8603,1386252786","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":455},{\"l\":2}]}"},{"c":"49.6,16737996,7,25,8603,1386252786","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":95},{\"l\":2}]}"},{"c":"49.5,16737996,7,25,8603,1386252786","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":50},{\"l\":2}]}"},{"c":"50.998,0,7,25,8603,1386252786","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.498,0,7,25,8603,1386252786","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.698,0,7,25,8603,1386252786","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.398,0,7,25,8603,1386252786","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.598,0,7,25,8603,1386252786","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.198,0,7,25,8603,1386252791","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.29799999999995,0,7,25,8603,1386252796","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.898,0,7,25,8603,1386252796","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.098,0,7,25,8603,1386252796","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.79799999999995,0,7,25,8603,1386252796","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.79900000000001,0,7,25,8603,1386252796","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.499,0,7,25,8603,1386252796","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.599,0,7,25,8603,1386252796","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.699000000000005,0,7,25,8603,1386252796","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"51.39900000000001,0,7,25,8603,1386252796","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.89900000000001,0,7,25,8603,1386252796","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.99900000000001,0,7,25,8603,1386252797","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"51.199000000000005,0,7,25,8603,1386252797","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"51.09900000000001,0,7,25,8603,1386252797","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"51.1,16737996,7,25,8603,1386252797","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":770},{\"l\":2}]}"},{"c":"50.9,16737996,7,25,8603,1386252797","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":680},{\"l\":2}]}"},{"c":"51,16737996,7,25,8603,1386252797","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":725},{\"l\":2}]}"},{"c":"51.2,16737996,7,25,8603,1386252797","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":815},{\"l\":2}]}"},{"c":"51.3,16737996,7,25,8603,1386252797","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":860},{\"l\":2}]}"},{"c":"50.7,16737996,7,25,8603,1386252800","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":590},{\"l\":2}]}"},{"c":"50.8,16737996,7,25,8603,1386252800","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":635},{\"l\":2}]}"},{"c":"51.4,16737996,7,25,8603,1386252801","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":905},{\"l\":2}]}"},{"c":"50.6,16737996,7,25,8603,1386252801","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":545},{\"l\":2}]}"},{"c":"50.5,16737996,7,25,8603,1386252801","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":500},{\"l\":2}]}"},{"c":"51.998,0,7,25,8603,1386252801","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.498,0,7,25,8603,1386252801","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.698,0,7,25,8603,1386252801","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.398,0,7,25,8603,1386252801","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.598,0,7,25,8603,1386252801","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.198,0,7,25,8603,1386252801","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.297999999999995,0,7,25,8603,1386252801","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.898,0,7,25,8603,1386252801","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.797999999999995,0,7,25,8603,1386252801","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.098,0,7,25,8603,1386252805","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.499,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"51.599,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"51.79900000000001,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"51.699000000000005,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.39900000000001,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"51.89900000000001,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.29900000000001,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"51.99900000000001,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.09900000000001,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.199000000000005,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.1,16737996,7,25,8603,1386252806","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":320},{\"l\":2}]}"},{"c":"51.9,16737996,7,25,8603,1386252809","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":230},{\"l\":2}]}"},{"c":"52,16737996,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":275},{\"l\":2}]}"},{"c":"52.3,16737996,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":410},{\"l\":2}]}"},{"c":"51.7,16737996,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":140},{\"l\":2}]}"},{"c":"52.2,16737996,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":365},{\"l\":2}]}"},{"c":"51.8,16737996,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":185},{\"l\":2}]}"},{"c":"52.4,16737996,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":455},{\"l\":2}]}"},{"c":"51.6,16737996,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":95},{\"l\":2}]}"},{"c":"51.5,16737996,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":50},{\"l\":2}]}"},{"c":"52.998,0,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.498,0,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.698,0,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"53.398,0,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.598,0,7,25,8603,1386252815","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"53.198,0,7,25,8603,1386252815","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.898,0,7,25,8603,1386252815","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"53.29799999999995,0,7,25,8603,1386252815","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.79799999999995,0,7,25,8603,1386252815","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"53.098,0,7,25,8603,1386252815","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.499,0,7,25,8603,1386252815","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.599,0,7,25,8603,1386252815","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.79900000000001,0,7,25,8603,1386252815","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.699000000000005,0,7,25,8603,1386252815","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"53.39900000000001,0,7,25,8603,1386252819","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.89900000000001,0,7,25,8603,1386252840","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.99900000000001,0,7,25,8603,1386252840","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"53.29900000000001,0,7,25,8603,1386252840","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"53.09900000000001,0,7,25,8603,1386252840","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"53.199000000000005,0,7,25,8603,1386252840","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"53.1,16737996,7,25,8603,1386252840","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":770},{\"l\":2}]}"},{"c":"52.9,16737996,7,25,8603,1386252840","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":680},{\"l\":2}]}"},{"c":"53,16737996,7,25,8603,1386252840","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":725},{\"l\":2}]}"},{"c":"53.2,16737996,7,25,8603,1386252840","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":815},{\"l\":2}]}"},{"c":"53.3,16737996,7,25,8603,1386252840","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":860},{\"l\":2}]}"},{"c":"52.7,16737996,7,25,8603,1386252840","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":590},{\"l\":2}]}"},{"c":"52.8,16737996,7,25,8603,1386252840","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":635},{\"l\":2}]}"},{"c":"53.4,16737996,7,25,8603,1386252845","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":905},{\"l\":2}]}"},{"c":"52.6,16737996,7,25,8603,1386252845","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":545},{\"l\":2}]}"},{"c":"52.5,16737996,7,25,8603,1386252845","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":500},{\"l\":2}]}"},{"c":"41.998,0,7,25,8603,1386252845","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.498,0,7,25,8603,1386252845","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.698,0,7,25,8603,1386252845","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.398,0,7,25,8603,1386252845","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.598,0,7,25,8603,1386252845","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.198,0,7,25,8603,1386252845","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.297999999999995,0,7,25,8603,1386252846","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.898,0,7,25,8603,1386252846","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.699000000000005,0,7,25,8603,1386252884","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"43.89900000000001,0,7,25,8603,1386252884","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"44.29900000000001,0,7,25,8603,1386252884","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"43.99900000000001,0,7,25,8603,1386252884","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"44.09900000000001,0,7,25,8603,1386252884","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"44.199000000000005,0,7,25,8603,1386252884","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"44.1,39423,7,25,8603,1386252884","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":320},{\"l\":2}]}"},{"c":"43.9,39423,7,25,8603,1386252888","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":230},{\"l\":2}]}"},{"c":"44,39423,7,25,8603,1386252888","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":275},{\"l\":2}]}"},{"c":"44.2,39423,7,25,8603,1386252888","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":365},{\"l\":2}]}"},{"c":"44.3,39423,7,25,8603,1386252888","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":410},{\"l\":2}]}"},{"c":"43.7,39423,7,25,8603,1386252888","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":140},{\"l\":2}]}"},{"c":"43.8,39423,7,25,8603,1386252888","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":185},{\"l\":2}]}"},{"c":"43.6,39423,7,25,8603,1386252888","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":95},{\"l\":2}]}"},{"c":"43.5,39423,7,25,8603,1386252888","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":50},{\"l\":2}]}"},{"c":"44.4,39423,7,25,8603,1386252888","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":455},{\"l\":2}]}"},{"c":"44.998,0,7,25,8603,1386252888","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.498,0,7,25,8603,1386252888","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.698,0,7,25,8603,1386252889","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.398,0,7,25,8603,1386252889","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.598,0,7,25,8603,1386252893","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.898,0,7,25,8603,1386252893","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.29799999999995,0,7,25,8603,1386252893","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.79799999999995,0,7,25,8603,1386252893","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.098,0,7,25,8603,1386252893","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.198,0,7,25,8603,1386252893","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.499,0,7,25,8603,1386252893","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"44.599,0,7,25,8603,1386252893","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"44.79900000000001,0,7,25,8603,1386252893","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"44.699000000000005,0,7,25,8603,1386252893","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"45.39900000000001,0,7,25,8603,1386252893","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"44.89900000000001,0,7,25,8603,1386252897","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"45.29900000000001,0,7,25,8603,1386252897","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"44.99900000000001,0,7,25,8603,1386252897","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"45.09900000000001,0,7,25,8603,1386252897","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"45.199000000000005,0,7,25,8603,1386252897","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"45.1,39423,7,25,8603,1386252897","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":770},{\"l\":2}]}"},{"c":"44.9,39423,7,25,8603,1386252897","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":680},{\"l\":2}]}"},{"c":"45,39423,7,25,8603,1386252897","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":725},{\"l\":2}]}"},{"c":"45.2,39423,7,25,8603,1386252897","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":815},{\"l\":2}]}"},{"c":"45.3,39423,7,25,8603,1386252897","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":860},{\"l\":2}]}"},{"c":"44.7,39423,7,25,8603,1386252897","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":590},{\"l\":2}]}"},{"c":"44.8,39423,7,25,8603,1386252898","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":635},{\"l\":2}]}"},{"c":"45.4,39423,7,25,8603,1386252898","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":905},{\"l\":2}]}"},{"c":"44.6,39423,7,25,8603,1386252898","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":545},{\"l\":2}]}"},{"c":"44.5,39423,7,25,8603,1386252898","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":500},{\"l\":2}]}"},{"c":"38.3,16724787,7,25,8603,1386252652","m":"{\"z\":[{\"x\":410,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"38,16724787,7,25,8603,1386252652","m":"{\"z\":[{\"x\":275,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"39,16724787,7,25,8603,1386252657","m":"{\"z\":[{\"x\":725,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"38.9,16724787,7,25,8603,1386252657","m":"{\"z\":[{\"x\":680,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"39.1,16724787,7,25,8603,1386252657","m":"{\"z\":[{\"x\":770,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"37.5,16724787,7,25,8603,1386252652","m":"{\"z\":[{\"x\":50,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"38.2,16724787,7,25,8603,1386252652","m":"{\"z\":[{\"x\":365,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"38.1,16724787,7,25,8603,1386252651","m":"{\"z\":[{\"x\":320,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"37.6,16724787,7,25,8603,1386252652","m":"{\"z\":[{\"x\":95,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"37.9,16724787,7,25,8603,1386252652","m":"{\"z\":[{\"x\":230,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"37.8,16724787,7,25,8603,1386252652","m":"{\"z\":[{\"x\":185,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"37.7,16724787,7,25,8603,1386252652","m":"{\"z\":[{\"x\":140,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"38.4,16724787,7,25,8603,1386252652","m":"{\"z\":[{\"x\":455,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"49.199000000000005,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.09900000000001,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.99900000000001,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39,16724787,7,25,8603,1386252657","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"39.199000000000005,0,7,25,8603,1386252657","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.9,16724787,7,25,8603,1386252657","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"39.1,16724787,7,25,8603,1386252657","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"48.499,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.599,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.79900000000001,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.699000000000005,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.39900000000001,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.89900000000001,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.29900000000001,0,7,25,8603,1386252732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.1,3407667,7,25,8603,1386252733","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.9,3407667,7,25,8603,1386252733","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49,3407667,7,25,8603,1386252733","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49.2,3407667,7,25,8603,1386252733","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49.3,3407667,7,25,8603,1386252733","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.7,3407667,7,25,8603,1386252733","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.8,3407667,7,25,8603,1386252733","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.5,3407667,7,25,8603,1386252736","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.6,3407667,7,25,8603,1386252733","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49.4,3407667,7,25,8603,1386252733","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49.499,0,7,25,8603,1386252778","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.599,0,7,25,8603,1386252782","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.79900000000001,0,7,25,8603,1386252782","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.699000000000005,0,7,25,8603,1386252782","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.39900000000001,0,7,25,8603,1386252782","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.89900000000001,0,7,25,8603,1386252782","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.29900000000001,0,7,25,8603,1386252782","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.99900000000001,0,7,25,8603,1386252782","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.09900000000001,0,7,25,8603,1386252782","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.199000000000005,0,7,25,8603,1386252782","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.1,16737996,7,25,8603,1386252782","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"49.9,16737996,7,25,8603,1386252782","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50,16737996,7,25,8603,1386252782","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.2,16737996,7,25,8603,1386252782","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.3,16737996,7,25,8603,1386252786","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"49.7,16737996,7,25,8603,1386252786","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"49.8,16737996,7,25,8603,1386252786","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.4,16737996,7,25,8603,1386252786","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"49.6,16737996,7,25,8603,1386252786","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"49.5,16737996,7,25,8603,1386252786","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.79900000000001,0,7,25,8603,1386252796","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.499,0,7,25,8603,1386252796","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.599,0,7,25,8603,1386252796","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.699000000000005,0,7,25,8603,1386252796","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.39900000000001,0,7,25,8603,1386252796","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.89900000000001,0,7,25,8603,1386252796","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.99900000000001,0,7,25,8603,1386252797","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.199000000000005,0,7,25,8603,1386252797","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.09900000000001,0,7,25,8603,1386252797","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.1,16737996,7,25,8603,1386252797","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.9,16737996,7,25,8603,1386252797","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51,16737996,7,25,8603,1386252797","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.2,16737996,7,25,8603,1386252797","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"52.1,16737996,7,25,8603,1386252806","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.199000000000005,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.09900000000001,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.99900000000001,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.29900000000001,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.89900000000001,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.39900000000001,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.699000000000005,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.79900000000001,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.599,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.499,0,7,25,8603,1386252805","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.5,16737996,7,25,8603,1386252801","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.6,16737996,7,25,8603,1386252801","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.4,16737996,7,25,8603,1386252801","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.8,16737996,7,25,8603,1386252800","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.7,16737996,7,25,8603,1386252800","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.3,16737996,7,25,8603,1386252797","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.9,16737996,7,25,8603,1386252809","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52,16737996,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.3,16737996,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"51.7,16737996,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.2,16737996,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"51.8,16737996,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.4,16737996,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"51.6,16737996,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"51.5,16737996,7,25,8603,1386252810","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.499,0,7,25,8603,1386252815","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.599,0,7,25,8603,1386252815","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.79900000000001,0,7,25,8603,1386252815","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.699000000000005,0,7,25,8603,1386252815","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"53.39900000000001,0,7,25,8603,1386252819","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.89900000000001,0,7,25,8603,1386252840","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.99900000000001,0,7,25,8603,1386252840","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"53.29900000000001,0,7,25,8603,1386252840","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"53.09900000000001,0,7,25,8603,1386252840","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"53.199000000000005,0,7,25,8603,1386252840","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"53.1,16737996,7,25,8603,1386252840","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.9,16737996,7,25,8603,1386252840","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53,16737996,7,25,8603,1386252840","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53.2,16737996,7,25,8603,1386252840","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53.3,16737996,7,25,8603,1386252840","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.7,16737996,7,25,8603,1386252840","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.8,16737996,7,25,8603,1386252840","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53.4,16737996,7,25,8603,1386252845","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.6,16737996,7,25,8603,1386252845","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.5,16737996,7,25,8603,1386252845","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.699000000000005,0,7,25,8603,1386252884","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.89900000000001,0,7,25,8603,1386252884","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.29900000000001,0,7,25,8603,1386252884","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.99900000000001,0,7,25,8603,1386252884","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.09900000000001,0,7,25,8603,1386252884","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.199000000000005,0,7,25,8603,1386252884","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.1,39423,7,25,8603,1386252884","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.9,39423,7,25,8603,1386252888","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44,39423,7,25,8603,1386252888","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.2,39423,7,25,8603,1386252888","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.3,39423,7,25,8603,1386252888","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.7,39423,7,25,8603,1386252888","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.8,39423,7,25,8603,1386252888","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.6,39423,7,25,8603,1386252888","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.5,39423,7,25,8603,1386252888","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.4,39423,7,25,8603,1386252888","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.499,0,7,25,8603,1386252893","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.599,0,7,25,8603,1386252893","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.79900000000001,0,7,25,8603,1386252893","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.699000000000005,0,7,25,8603,1386252893","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.39900000000001,0,7,25,8603,1386252893","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.89900000000001,0,7,25,8603,1386252897","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.29900000000001,0,7,25,8603,1386252897","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.99900000000001,0,7,25,8603,1386252897","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.09900000000001,0,7,25,8603,1386252897","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.199000000000005,0,7,25,8603,1386252897","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.1,39423,7,25,8603,1386252897","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.9,39423,7,25,8603,1386252897","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45,39423,7,25,8603,1386252897","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.2,39423,7,25,8603,1386252897","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.3,39423,7,25,8603,1386252897","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.7,39423,7,25,8603,1386252897","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.8,39423,7,25,8603,1386252898","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.4,39423,7,25,8603,1386252898","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.6,39423,7,25,8603,1386252898","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.5,39423,7,25,8603,1386252898","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"20,16777215,7,10,8603,1386260044046","m":"{\"k\":0,\"n\":\"■\",\"z\":[{\"l\":16.5}],\"e\":0.5,\"p\":{\"y\":168,\"x\":110},\"f\":2,\"r\":15,\"t\":0,\"b\":false,\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true}}"},{"c":"20,16777215,7,10,8603,1386260044976","m":"{\"k\":0,\"n\":\"■\",\"z\":[{\"l\":16.5}],\"e\":0.5,\"p\":{\"y\":168,\"x\":200},\"f\":2,\"r\":-15,\"t\":0,\"b\":false,\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true}}"},{"c":"20,16777215,7,10,8603,1386259959","m":"{\"k\":0,\"n\":\"■\",\"z\":[{\"l\":16.5}],\"e\":0.5,\"p\":{\"y\":168,\"x\":200},\"f\":2,\"r\":-15,\"t\":0,\"b\":false,\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true}}"},{"c":"20,16777215,7,10,8603,1386259958","m":"{\"k\":0,\"n\":\"■\",\"z\":[{\"l\":16.5}],\"e\":0.5,\"p\":{\"y\":168,\"x\":110},\"f\":2,\"r\":15,\"t\":0,\"b\":false,\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true}}"},{"c":"20.004,16777215,7,10,8603,1386259957","m":"{\"k\":0,\"n\":\"■\",\"z\":[{\"l\":16.5}],\"e\":0.5,\"p\":{\"y\":168,\"x\":55},\"f\":2,\"r\":15,\"t\":0,\"b\":false,\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true}}"},{"c":"20.003,0,7,20,8603,1386259957","m":"{\"r\":-3,\"n\":\"ω\",\"t\":0,\"b\":false,\"e\":1.3,\"p\":{\"y\":140,\"x\":163},\"c\":4,\"l\":0,\"w\":{\"b\":false,\"f\":\"黑体\"},\"z\":[{\"l\":16.5}]}"},{"c":"20.003,0,7,10,8603,1386259957","m":"{\"c\":4,\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":103,\"x\":176},\"k\":0,\"f\":1.36,\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"l\":16.5}]}"},{"c":"20.003,0,7,10,8603,1386259957","m":"{\"c\":4,\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":107,\"x\":147},\"k\":0,\"f\":1.36,\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"l\":16.5}]}"},{"c":"20.002,16724736,7,50,8603,1386259956","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":119,\"x\":160},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"l\":16.5}]}"},{"c":"20.001,16777215,7,70,8603,1386259956","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":119,\"x\":160},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"19.998,16777215,7,80,8603,1386259955","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":119,\"x\":98},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"19.999,3394815,7,80,8603,1386259955","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"e\":1.3,\"p\":{\"y\":119,\"x\":123},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"19.999,16777215,7,99,8603,1386259955","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"e\":18,\"p\":{\"y\":395,\"x\":706},\"c\":4,\"f\":0.45,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"19.999,6710886,7,99,8603,1386259954","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"e\":18,\"p\":{\"y\":274,\"x\":500},\"c\":4,\"f\":0.8,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"20.003,13421772,7,90,8603,1386259954","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":303,\"x\":86},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,13421772,1,5,5,5,2,false,true]],\"b\":false},\"z\":[{\"l\":16.5}]}"},{"c":"20.003,10066329,7,80,8603,1386259954","m":"{\"n\":\"丨\",\"t\":0,\"b\":false,\"e\":0.2,\"p\":{\"y\":301,\"x\":86},\"c\":4,\"f\":1.3,\"l\":0,\"w\":{\"b\":false,\"f\":\"黑体\"},\"z\":[{\"l\":16.5}]}"},{"c":"0,16777215,1,25,4e4k1894355931,1386259954","m":"......"},{"c":"20.002,16764057,7,80,8603,1386259953","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"e\":1.3,\"p\":{\"y\":303,\"x\":86},\"c\":4,\"f\":1.3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"20.001,13369395,7,80,8603,1386259952","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"e\":1.3,\"p\":{\"y\":346,\"x\":86},\"c\":4,\"f\":1.3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"20,16711731,7,99,8603,1386259952","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"e\":1.3,\"p\":{\"y\":323,\"x\":87},\"c\":4,\"f\":1.3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"20,13421772,7,28,8603,1386259951","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":221},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"l\":16.5}]}"},{"c":"20,16777215,7,60,8603,1386259950","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":221},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,true]],\"b\":false},\"z\":[{\"l\":16.5}]}"},{"c":"19.999,16777215,7,99,8603,1386259950","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"e\":18,\"p\":{\"y\":395,\"x\":706},\"c\":4,\"f\":0.45,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"19.999,6710886,7,99,8603,1386259950","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"e\":18,\"p\":{\"y\":274,\"x\":500},\"c\":4,\"f\":0.8,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"20.003,13421772,7,90,8603,1386259950","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":303,\"x\":86},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,13421772,1,5,5,5,2,false,true]],\"b\":false},\"z\":[{\"l\":16.5}]}"},{"c":"20.003,10066329,7,80,8603,1386259949","m":"{\"n\":\"丨\",\"t\":0,\"b\":false,\"e\":0.2,\"p\":{\"y\":301,\"x\":86},\"c\":4,\"f\":1.3,\"l\":0,\"w\":{\"b\":false,\"f\":\"黑体\"},\"z\":[{\"l\":16.5}]}"},{"c":"20.002,16764057,7,80,8603,1386259948","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"e\":1.3,\"p\":{\"y\":303,\"x\":86},\"c\":4,\"f\":1.3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"20.001,13369395,7,80,8603,1386259948","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"e\":1.3,\"p\":{\"y\":346,\"x\":86},\"c\":4,\"f\":1.3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"20,16711731,7,99,8603,1386259948","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"e\":1.3,\"p\":{\"y\":323,\"x\":87},\"c\":4,\"f\":1.3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"22.2,16777215,7,30,8603,1386260281765","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"20.65,16777215,7,45,8603,1386260232337","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.251,16724787,7,35,8603,1386260232805","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.25,16777215,7,30,8603,1386260233135","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.3,16777215,7,45,8603,1386260233602","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.301,16724787,7,35,8603,1386260234775","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.3,16777215,7,30,8603,1386260235240","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.35,16777215,7,45,8603,1386260235950","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.35,16777215,7,30,8603,1386260236183","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.351000000000003,16724787,7,35,8603,1386260236651","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20,16777215,7,45,8603,1386260236887","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.001,16724787,7,35,8603,1386260236887","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20,16777215,7,30,8603,1386260237123","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.1,16777215,7,45,8603,1386260237358","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.1,16777215,7,30,8603,1386260238290","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"20.101000000000003,16724787,7,35,8603,1386260238511","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.201,16724787,7,35,8603,1386260239209","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.2,16777215,7,45,8603,1386260239442","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.3,16777215,7,45,8603,1386260239676","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.2,16777215,7,30,8603,1386260239907","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"20.301,16724787,7,35,8603,1386260240371","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.3,16777215,7,30,8603,1386260241074","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.4,16777215,7,45,8603,1386260241318","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.801,16724787,7,35,8603,1386260241547","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.4,16777215,7,30,8603,1386260241781","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"20.5,16777215,7,45,8603,1386260242483","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.5,16777215,7,30,8603,1386260243651","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"20.501,16724787,7,35,8603,1386260243885","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.601000000000003,16724787,7,35,8603,1386260244128","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.751,16724787,7,35,8603,1386260244129","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.6,16777215,7,30,8603,1386260244624","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.9,16777215,7,45,8603,1386260245067","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.75,16777215,7,45,8603,1386260245773","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.6,16777215,7,45,8603,1386260245774","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.901,16724787,7,35,8603,1386260246030","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.25,16777215,7,45,8603,1386260246479","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.75,16777215,7,30,8603,1386260246713","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.949999999999996,16777215,7,30,8603,1386260246948","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.9,16777215,7,30,8603,1386260247417","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.651,16724787,7,35,8603,1386260247650","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.799999999999997,16777215,7,30,8603,1386260248118","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.65,16777215,7,30,8603,1386260248581","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.949999999999996,16777215,7,45,8603,1386260249055","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.950999999999997,16724787,7,35,8603,1386260249757","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.401000000000003,16724787,7,35,8603,1386260250226","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"21.051,16724787,7,35,8603,1386260250460","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.799999999999997,16777215,7,45,8603,1386260250695","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"21,16777215,7,45,8603,1386260251863","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"21,16777215,7,30,8603,1386260252565","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"21.301,16724787,7,35,8603,1386260252800","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"21.051,16724787,7,35,8603,1386260253036","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"21.3,16777215,7,30,8603,1386260253040","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"21.200000000000003,16777215,7,45,8603,1386260253276","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"21.049999999999997,16777215,7,45,8603,1386260253743","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"21.201000000000004,16724787,7,35,8603,1386260254210","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"21.200000000000003,16777215,7,30,8603,1386260254211","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"21.049999999999997,16777215,7,45,8603,1386260254711","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"21.09999999999999,16777215,7,30,8603,1386260254941","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"21.1,16777215,7,45,8603,1386260256114","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"21.001,16724787,7,35,8603,1386260256350","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"21.100999999999996,16724787,7,35,8603,1386260256582","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"21.049999999999997,16777215,7,30,8603,1386260257052","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"21.09999999999999,16777215,7,45,8603,1386260257519","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"21.3,16777215,7,45,8603,1386260257747","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"21.049999999999997,16777215,7,30,8603,1386260257984","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"21.101000000000003,16724787,7,35,8603,1386260258219","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"21.1,16777215,7,30,8603,1386260259625","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.601,16724787,7,35,8603,1386260259855","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.251,16724787,7,35,8603,1386260260090","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.6,16777215,7,30,8603,1386260260557","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.55,16777215,7,45,8603,1386260261033","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.551,16724787,7,35,8603,1386260261259","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.6,16777215,7,45,8603,1386260261727","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.55,16777215,7,30,8603,1386260262430","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.501,16724787,7,35,8603,1386260262906","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.65,16777215,7,30,8603,1386260263375","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.4,16777215,7,30,8603,1386260263608","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.401000000000003,16724787,7,35,8603,1386260264077","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.4,16777215,7,45,8603,1386260264545","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.3,16777215,7,30,8603,1386260264779","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.3,16777215,7,45,8603,1386260265333","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.301,16724787,7,35,8603,1386260265566","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.2,16777215,7,30,8603,1386260266043","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.201,16724787,7,35,8603,1386260266737","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.2,16777215,7,45,8603,1386260268140","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.1,16777215,7,30,8603,1386260268375","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.101000000000003,16724787,7,35,8603,1386260268616","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.1,16777215,7,45,8603,1386260268848","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.001,16724787,7,35,8603,1386260269079","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22,16777215,7,30,8603,1386260269317","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22,16777215,7,45,8603,1386260269555","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.351000000000003,16724787,7,35,8603,1386260269787","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.35,16777215,7,30,8603,1386260270023","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.35,16777215,7,45,8603,1386260270724","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.3,16777215,7,30,8603,1386260271429","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.2,16777215,7,45,8603,1386260272130","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.25,16777215,7,30,8603,1386260272365","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.65,16777215,7,45,8603,1386260272833","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.301,16724787,7,35,8603,1386260273770","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.3,16777215,7,30,8603,1386260274003","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.3,16777215,7,45,8603,1386260274237","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.8,16777215,7,30,8603,1386260274472","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.9,16777215,7,45,8603,1386260274707","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.6,16777215,7,30,8603,1386260274943","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.7,16777215,7,30,8603,1386260275411","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.801,16724787,7,35,8603,1386260275646","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.5,16777215,7,30,8603,1386260275879","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.101000000000003,16724787,7,35,8603,1386260276343","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.501,16724787,7,35,8603,1386260277045","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.4,16777215,7,30,8603,1386260277989","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.5,16777215,7,45,8603,1386260278231","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.401000000000003,16724787,7,35,8603,1386260279411","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.3,16777215,7,30,8603,1386260279650","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.4,16777215,7,45,8603,1386260279920","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.3,16777215,7,45,8603,1386260280144","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.301,16724787,7,35,8603,1386260280361","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.001,16724787,7,35,8603,1386260281057","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.25,16777215,7,45,8603,1386260281298","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.201,16724787,7,35,8603,1386260281531","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.2,16777215,7,30,8603,1386260281765","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.25,16777215,7,45,8603,1386260282030","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.1,16777215,7,45,8603,1386260282264","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.351000000000003,16724787,7,35,8603,1386260282469","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22,16777215,7,45,8603,1386260282936","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.35,16777215,7,30,8603,1386260283170","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22,16777215,7,30,8603,1386260283404","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.301,16724787,7,35,8603,1386260283759","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.35,16777215,7,45,8603,1386260283992","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.4,16777215,7,45,8603,1386260284947","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.3,16777215,7,30,8603,1386260285181","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.401000000000003,16724787,7,35,8603,1386260285650","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.7,16777215,7,45,8603,1386260285897","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.4,16777215,7,30,8603,1386260286140","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.901,16724787,7,35,8603,1386260287053","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.9,16777215,7,30,8603,1386260287755","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.251,16724787,7,35,8603,1386260288220","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.5,16777215,7,45,8603,1386260288458","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.501,16724787,7,35,8603,1386260288689","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.6,16777215,7,45,8603,1386260288845","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.601,16724787,7,35,8603,1386260289380","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.8,16777215,7,45,8603,1386260289617","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.5,16777215,7,30,8603,1386260290087","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.5,16777215,7,45,8603,1386260291725","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.701000000000004,16724787,7,35,8603,1386260292657","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.651000000000003,16724787,7,35,8603,1386260292890","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.25,16777215,7,30,8603,1386260293127","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.1,16777215,7,30,8603,1386260293358","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.3,16777215,7,45,8603,1386260293826","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.301,16724787,7,35,8603,1386260294066","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.5,16777215,7,30,8603,1386260294311","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.3,16777215,7,45,8603,1386260294777","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.3,16777215,7,45,8603,1386260294777","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.550000000000004,16777215,7,30,8603,1386260295480","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23,16777215,7,30,8603,1386260295947","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23.001,16724787,7,35,8603,1386260296183","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23,16777215,7,45,8603,1386260296420","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.101,16724787,7,35,8603,1386260296958","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.1,16777215,7,45,8603,1386260297200","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.1,16777215,7,30,8603,1386260298407","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23.15,16777215,7,45,8603,1386260299001","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.151,16724787,7,35,8603,1386260299483","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.15,16777215,7,30,8603,1386260299712","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"23.25,16777215,7,45,8603,1386260299975","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.251,16724787,7,35,8603,1386260300184","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.25,16777215,7,30,8603,1386260301349","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23.35,16777215,7,45,8603,1386260301583","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.351,16724787,7,35,8603,1386260301817","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.35,16777215,7,30,8603,1386260302054","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23.450000000000003,16777215,7,45,8603,1386260302519","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.451000000000004,16724787,7,35,8603,1386260302989","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.450000000000003,16777215,7,30,8603,1386260303222","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23.500000000000004,16777215,7,45,8603,1386260303493","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.501,16724787,7,35,8603,1386260303962","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.500000000000004,16777215,7,30,8603,1386260304435","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23.550000000000004,16777215,7,45,8603,1386260304905","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.551000000000005,16724787,7,35,8603,1386260305607","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.500000000000004,16777215,7,30,8603,1386260305734","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23.200000000000003,16777215,7,45,8603,1386260306196","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.201000000000004,16724787,7,35,8603,1386260306428","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.201000000000004,16724787,7,35,8603,1386260306428","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.200000000000003,16777215,7,30,8603,1386260307364","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23.301000000000005,16724787,7,35,8603,1386260307832","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.300000000000004,16777215,7,45,8603,1386260308060","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.300000000000004,16777215,7,30,8603,1386260309007","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"23.401000000000003,16724787,7,35,8603,1386260309243","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.4,16777215,7,45,8603,1386260309478","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.4,16777215,7,30,8603,1386260309719","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"23.500000000000004,16777215,7,45,8603,1386260310591","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.6,16777215,7,45,8603,1386260310824","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.700000000000003,16777215,7,30,8603,1386260311057","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"23.501,16724787,7,35,8603,1386260311424","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.60100000000001,16724787,7,35,8603,1386260312591","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.700000000000003,16777215,7,45,8603,1386260313060","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.6,16777215,7,30,8603,1386260313292","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"23.701000000000004,16724787,7,35,8603,1386260313759","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.85,16777215,7,45,8603,1386260313997","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.950000000000003,16777215,7,45,8603,1386260314237","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.85,16777215,7,30,8603,1386260314474","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23.851000000000003,16724787,7,35,8603,1386260314476","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.951000000000004,16724787,7,35,8603,1386260314710","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.950000000000003,16777215,7,30,8603,1386260314955","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"24.05,16777215,7,45,8603,1386260315194","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.05,16777215,7,30,8603,1386260316133","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"24.051,16724787,7,35,8603,1386260316362","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"24.1,16777215,7,45,8603,1386260318001","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.101,16724787,7,35,8603,1386260318466","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"24.1,16777215,7,30,8603,1386260318706","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"24.201,16724787,7,35,8603,1386260319175","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"24.200000000000003,16777215,7,45,8603,1386260319408","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.200000000000003,16777215,7,30,8603,1386260319644","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"23.951000000000004,16724787,7,35,8603,1386260314710","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.950000000000003,16777215,7,30,8603,1386260314955","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"24.05,16777215,7,45,8603,1386260315194","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.05,16777215,7,30,8603,1386260316133","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"24.051,16724787,7,35,8603,1386260316362","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"24.1,16777215,7,45,8603,1386260318001","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.101,16724787,7,35,8603,1386260318466","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"24.1,16777215,7,30,8603,1386260318706","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"24.201,16724787,7,35,8603,1386260319175","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"24.200000000000003,16777215,7,45,8603,1386260319408","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.200000000000003,16777215,7,30,8603,1386260319644","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"24.299999999999997,16777215,7,45,8603,1386260319877","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.301,16724787,7,35,8603,1386260320115","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"24.65,16777215,7,45,8603,1386260320609","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.299999999999997,16777215,7,45,8603,1386260319877","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.301,16724787,7,35,8603,1386260320115","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"24.65,16777215,7,45,8603,1386260320609","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.299999999999997,16777215,7,30,8603,1386260325686","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"24.75,16777215,7,45,8603,1386260325926","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.700000000000003,16777215,7,30,8603,1386260326192","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"24.700000000000003,16777215,7,45,8603,1386260326396","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.701,16724787,7,35,8603,1386260326626","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"24.65,16777215,7,30,8603,1386260326860","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"24.651000000000003,16724787,7,35,8603,1386260327095","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.101,16724787,7,35,8603,1386260327377","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.1,16777215,7,45,8603,1386260327603","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.05,16777215,7,30,8603,1386260327836","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.051,16724787,7,35,8603,1386260328320","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.05,16777215,7,45,8603,1386260328539","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.75,16777215,7,30,8603,1386260328776","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"24.751000000000005,16724787,7,35,8603,1386260328777","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.1,16777215,7,30,8603,1386260329702","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.15,16777215,7,45,8603,1386260330881","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.15,16777215,7,30,8603,1386260331095","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.151000000000003,16724787,7,35,8603,1386260331325","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.451,16724787,7,35,8603,1386260331574","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.45,16777215,7,45,8603,1386260332052","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.45,16777215,7,30,8603,1386260332287","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.5,16777215,7,45,8603,1386260332521","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.5,16777215,7,30,8603,1386260332757","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.501,16724787,7,35,8603,1386260332993","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.55,16777215,7,45,8603,1386260333227","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.551,16724787,7,35,8603,1386260333461","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.851,16724787,7,35,8603,1386260333693","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.85,16777215,7,45,8603,1386260333933","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.55,16777215,7,30,8603,1386260333935","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.85,16777215,7,30,8603,1386260334397","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.9,16777215,7,45,8603,1386260334832","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.950000000000003,16777215,7,45,8603,1386260335535","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.950000000000003,16777215,7,45,8603,1386260335535","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.9,16777215,7,30,8603,1386260335764","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.900999999999996,16724787,7,35,8603,1386260335998","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.951,16724787,7,35,8603,1386260336701","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.950000000000003,16777215,7,30,8603,1386260337641","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.6,16777215,7,45,8603,1386260338051","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.6,16777215,7,30,8603,1386260338984","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.601,16724787,7,35,8603,1386260339452","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.700000000000003,16777215,7,30,8603,1386260339687","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"25.701,16724787,7,35,8603,1386260339920","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.700000000000003,16777215,7,45,8603,1386260340159","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.801,16724787,7,35,8603,1386260341340","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.799999999999997,16777215,7,45,8603,1386260341574","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.799999999999997,16777215,7,30,8603,1386260342045","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"25.9,16777215,7,45,8603,1386260342512","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.9,16777215,7,30,8603,1386260342747","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.900999999999996,16724787,7,35,8603,1386260342748","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26,16777215,7,45,8603,1386260490651","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.001000000000005,16724787,7,35,8603,1386260491070","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26,16777215,7,30,8603,1386260491678","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.1,16777215,7,45,8603,1386260491974","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.101,16724787,7,35,8603,1386260492439","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.1,16777215,7,30,8603,1386260492909","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.25,16777215,7,45,8603,1386260493139","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.251,16724787,7,35,8603,1386260493823","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.25,16777215,7,30,8603,1386260494289","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.3,16777215,7,45,8603,1386260494529","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.301,16724787,7,35,8603,1386260494770","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.3,16777215,7,30,8603,1386260495229","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.35,16777215,7,45,8603,1386260495470","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.351000000000003,16724787,7,35,8603,1386260495809","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.35,16777215,7,30,8603,1386260496358","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26,16777215,7,45,8603,1386260496818","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.001,16724787,7,35,8603,1386260497280","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26,16777215,7,30,8603,1386260497515","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.101000000000003,16724787,7,35,8603,1386260498449","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.1,16777215,7,45,8603,1386260498450","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.1,16777215,7,30,8603,1386260498685","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"26.2,16777215,7,45,8603,1386260499152","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.201,16724787,7,35,8603,1386260499628","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.2,16777215,7,30,8603,1386260499860","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"26.3,16777215,7,45,8603,1386260500329","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.301,16724787,7,35,8603,1386260500609","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.3,16777215,7,30,8603,1386260501321","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.4,16777215,7,45,8603,1386260501555","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.401000000000003,16724787,7,35,8603,1386260502015","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.4,16777215,7,30,8603,1386260502267","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"26.5,16777215,7,45,8603,1386260502656","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.501,16724787,7,35,8603,1386260503054","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.5,16777215,7,30,8603,1386260503459","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"26.55,16777215,7,45,8603,1386260503863","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.551,16724787,7,35,8603,1386260504346","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.55,16777215,7,30,8603,1386260504831","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.6,16777215,7,45,8603,1386260505388","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.601,16724787,7,35,8603,1386260505843","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.6,16777215,7,30,8603,1386260506082","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.65,16777215,7,45,8603,1386260506399","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.651000000000003,16724787,7,35,8603,1386260506940","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.65,16777215,7,30,8603,1386260507182","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.3,16777215,7,45,8603,1386260507709","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.301,16724787,7,35,8603,1386260507939","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.3,16777215,7,30,8603,1386260508398","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.4,16777215,7,45,8603,1386260508691","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.401000000000003,16724787,7,35,8603,1386260509009","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.4,16777215,7,30,8603,1386260509766","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"26.5,16777215,7,45,8603,1386260510011","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.501,16724787,7,35,8603,1386260510240","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.5,16777215,7,30,8603,1386260510610","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"26.6,16777215,7,45,8603,1386260511009","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.601,16724787,7,35,8603,1386260511421","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.6,16777215,7,30,8603,1386260511815","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.7,16777215,7,45,8603,1386260512282","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.701000000000004,16724787,7,35,8603,1386260512789","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.7,16777215,7,30,8603,1386260513023","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"26.8,16777215,7,45,8603,1386260513496","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.801,16724787,7,35,8603,1386260513964","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.8,16777215,7,30,8603,1386260514430","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"26.9,16777215,7,45,8603,1386260514908","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.901,16724787,7,35,8603,1386260515145","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.9,16777215,7,30,8603,1386260515453","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"27,16777215,7,45,8603,1386260515923","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.001,16724787,7,35,8603,1386260516389","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27,16777215,7,30,8603,1386260516860","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"27.1,16777215,7,45,8603,1386260517094","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.101,16724787,7,35,8603,1386260517561","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.1,16777215,7,30,8603,1386260518030","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"27.15,16777215,7,45,8603,1386260518500","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.151,16724787,7,35,8603,1386260518731","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.15,16777215,7,30,8603,1386260519048","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"27.25,16777215,7,45,8603,1386260519450","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.251,16724787,7,35,8603,1386260519811","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.25,16777215,7,30,8603,1386260520278","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"27.35,16777215,7,45,8603,1386260520610","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.351,16724787,7,35,8603,1386260521005","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.35,16777215,7,30,8603,1386260521710","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"27.450000000000003,16777215,7,45,8603,1386260521942","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.451000000000004,16724787,7,35,8603,1386260522645","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.450000000000003,16777215,7,30,8603,1386260522883","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"27.500000000000004,16777215,7,45,8603,1386260523346","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.501,16724787,7,35,8603,1386260523580","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.500000000000004,16777215,7,30,8603,1386260524050","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"27.550000000000004,16777215,7,45,8603,1386260524323","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.551000000000005,16724787,7,35,8603,1386260524796","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.550000000000004,16777215,7,30,8603,1386260525031","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"27.200000000000003,16777215,7,45,8603,1386260525503","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.201000000000004,16724787,7,35,8603,1386260525808","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.200000000000003,16777215,7,30,8603,1386260526276","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"27.300000000000004,16777215,7,45,8603,1386260526743","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.301000000000005,16724787,7,35,8603,1386260527211","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.300000000000004,16777215,7,30,8603,1386260527447","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"27.4,16777215,7,45,8603,1386260528013","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.401000000000003,16724787,7,35,8603,1386260528481","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.4,16777215,7,30,8603,1386260528714","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"27.500000000000004,16777215,7,45,8603,1386260529183","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.501,16724787,7,35,8603,1386260529650","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.500000000000004,16777215,7,30,8603,1386260530117","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"27.6,16777215,7,45,8603,1386260530359","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.60100000000001,16724787,7,35,8603,1386260530822","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.6,16777215,7,30,8603,1386260531294","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"27.700000000000003,16777215,7,45,8603,1386260531525","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.701000000000004,16724787,7,35,8603,1386260532181","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.700000000000003,16777215,7,30,8603,1386260532893","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"28.85,16777215,7,45,8603,1386260533375","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"28.851,16724787,7,35,8603,1386260533903","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"28.85,16777215,7,30,8603,1386260534376","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"28.95,16777215,7,45,8603,1386260535076","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"28.951,16724787,7,35,8603,1386260535390","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"28.95,16777215,7,30,8603,1386260536029","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"29.049999999999997,16777215,7,45,8603,1386260536526","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.051,16724787,7,35,8603,1386260537155","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.049999999999997,16777215,7,30,8603,1386260537573","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"29.15,16777215,7,45,8603,1386260538274","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.151000000000003,16724787,7,35,8603,1386260538749","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.15,16777215,7,30,8603,1386260539065","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"29.25,16777215,7,45,8603,1386260539603","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.251000000000005,16724787,7,35,8603,1386260540309","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.25,16777215,7,30,8603,1386260540776","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"29.35,16777215,7,45,8603,1386260541489","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.351,16724787,7,35,8603,1386260541721","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.35,16777215,7,30,8603,1386260542414","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"29.85,16777215,7,45,8603,1386260542647","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.851,16724787,7,35,8603,1386260543349","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.85,16777215,7,30,8603,1386260544071","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"29.9,16777215,7,45,8603,1386260544531","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.900999999999996,16724787,7,35,8603,1386260545004","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.9,16777215,7,30,8603,1386260545483","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"29.950000000000003,16777215,7,45,8603,1386260545784","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.951,16724787,7,35,8603,1386260546546","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.950000000000003,16777215,7,30,8603,1386260547012","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"29.6,16777215,7,45,8603,1386260547480","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.601,16724787,7,35,8603,1386260548650","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.6,16777215,7,30,8603,1386260548652","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"29.700000000000003,16777215,7,45,8603,1386260548885","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.701,16724787,7,35,8603,1386260549352","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.700000000000003,16777215,7,30,8603,1386260549823","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"29.799999999999997,16777215,7,45,8603,1386260550518","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.801,16724787,7,35,8603,1386260551244","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.799999999999997,16777215,7,30,8603,1386260551454","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"29.9,16777215,7,45,8603,1386260551921","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.900999999999996,16724787,7,35,8603,1386260552405","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.9,16777215,7,30,8603,1386260553007","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30,16777215,7,45,8603,1386260553235","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.001000000000005,16724787,7,35,8603,1386260553924","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30,16777215,7,30,8603,1386260554441","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.1,16777215,7,45,8603,1386260554869","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.101,16724787,7,35,8603,1386260555369","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.1,16777215,7,30,8603,1386260555878","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.1,16777215,7,30,8603,1386260555878","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.1,16777215,7,30,8603,1386260555878","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.15,16777215,7,45,8603,1386260556465","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.150999999999996,16724787,7,35,8603,1386260557166","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.15,16777215,7,30,8603,1386260557401","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30.200000000000003,16777215,7,45,8603,1386260557868","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.201,16724787,7,35,8603,1386260558569","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.201,16724787,7,35,8603,1386260558569","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.200000000000003,16777215,7,30,8603,1386260559007","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30.25,16777215,7,45,8603,1386260559714","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.251000000000005,16724787,7,35,8603,1386260560181","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.25,16777215,7,30,8603,1386260560649","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"29.9,16777215,7,45,8603,1386260560883","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.900999999999996,16724787,7,35,8603,1386260561352","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.9,16777215,7,30,8603,1386260562157","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30,16777215,7,45,8603,1386260562285","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.001000000000005,16724787,7,35,8603,1386260563006","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30,16777215,7,30,8603,1386260563459","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.1,16777215,7,45,8603,1386260564159","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.101,16724787,7,35,8603,1386260564638","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.1,16777215,7,30,8603,1386260564879","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.200000000000003,16777215,7,45,8603,1386260565389","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.201,16724787,7,35,8603,1386260566043","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.200000000000003,16777215,7,30,8603,1386260566747","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30.299999999999997,16777215,7,45,8603,1386260566982","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.301,16724787,7,35,8603,1386260567916","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.299999999999997,16777215,7,30,8603,1386260568398","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.4,16777215,7,45,8603,1386260568853","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.400999999999996,16724787,7,35,8603,1386260568854","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.4,16777215,7,30,8603,1386260569414","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.5,16777215,7,45,8603,1386260569882","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.501,16724787,7,35,8603,1386260570349","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.5,16777215,7,30,8603,1386260570775","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.6,16777215,7,45,8603,1386260571568","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.601,16724787,7,35,8603,1386260572038","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.6,16777215,7,30,8603,1386260572504","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30.700000000000003,16777215,7,45,8603,1386260572971","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.701,16724787,7,35,8603,1386260573440","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.700000000000003,16777215,7,30,8603,1386260573914","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30.75,16777215,7,45,8603,1386260574383","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.751,16724787,7,35,8603,1386260575086","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.75,16777215,7,30,8603,1386260575552","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.851,16724787,7,35,8603,1386260576016","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.85,16777215,7,45,8603,1386260576245","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.85,16777215,7,30,8603,1386260576480","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30.950000000000003,16777215,7,45,8603,1386260576949","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.951,16724787,7,35,8603,1386260577649","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.950000000000003,16777215,7,30,8603,1386260578121","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"31.050000000000004,16777215,7,45,8603,1386260578122","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"31.051,16724787,7,35,8603,1386260578354","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"31.050000000000004,16777215,7,30,8603,1386260578697","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"31.1,16777215,7,45,8603,1386260579166","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"31.101,16724787,7,35,8603,1386260579635","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"31.1,16777215,7,30,8603,1386260580335","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"31.15000000000001,16777215,7,45,8603,1386260580335","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"31.151000000000003,16724787,7,35,8603,1386260580801","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"31.15000000000001,16777215,7,30,8603,1386260581049","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30.800000000000004,16777215,7,45,8603,1386260581751","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.801,16724787,7,35,8603,1386260581985","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.800000000000004,16777215,7,30,8603,1386260582454","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30.90000000000001,16777215,7,45,8603,1386260582699","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.901000000000003,16724787,7,35,8603,1386260583173","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.90000000000001,16777215,7,30,8603,1386260583646","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"31,16777215,7,45,8603,1386260584191","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"31.001000000000005,16724787,7,35,8603,1386260584428","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"31,16777215,7,30,8603,1386260584895","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"31.1,16777215,7,45,8603,1386260585358","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"31.101,16724787,7,35,8603,1386260585589","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"31.1,16777215,7,30,8603,1386260586093","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"31.200000000000003,16777215,7,45,8603,1386260586327","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"31.201000000000008,16724787,7,35,8603,1386260586788","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"31.200000000000003,16777215,7,30,8603,1386260587252","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"31.300000000000004,16777215,7,45,8603,1386260587725","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"31.301,16724787,7,35,8603,1386260587959","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"31.300000000000004,16777215,7,30,8603,1386260588660","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"31.300000000000004,16777215,7,30,8603,1386260588660","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"32.45,16777215,7,45,8603,1386260685090","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"32.451,16724787,7,35,8603,1386260685422","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"32.45,16777215,7,30,8603,1386260685829","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"32.55,16777215,7,45,8603,1386260686391","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"32.551,16724787,7,35,8603,1386260686866","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"32.55,16777215,7,30,8603,1386260687342","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"32.65,16777215,7,45,8603,1386260687588","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"32.650999999999996,16724787,7,35,8603,1386260688057","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"32.65,16777215,7,30,8603,1386260688984","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"33.251000000000005,16724787,7,35,8603,1386260689699","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"33.25,16777215,7,45,8603,1386260689932","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"33.3,16777215,7,45,8603,1386260691095","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"33.25,16777215,7,30,8603,1386260691329","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"33.301,16724787,7,35,8603,1386260691562","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"33.3,16777215,7,30,8603,1386260691799","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"33.351,16724787,7,35,8603,1386260692028","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"33.35,16777215,7,45,8603,1386260692260","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"33.35,16777215,7,30,8603,1386260692489","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"33,16777215,7,45,8603,1386260692723","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"33.001000000000005,16724787,7,35,8603,1386260694459","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"33,16777215,7,30,8603,1386260694692","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"33.1,16777215,7,45,8603,1386260694932","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"33.101,16724787,7,35,8603,1386260695389","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"33.1,16777215,7,30,8603,1386260695850","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"33.2,16777215,7,45,8603,1386260696316","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"33.201,16724787,7,35,8603,1386260696772","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"33.3,16777215,7,45,8603,1386260697246","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"33.2,16777215,7,30,8603,1386260697481","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"33.3,16777215,7,30,8603,1386260698439","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"33.301,16724787,7,35,8603,1386260698674","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"33.4,16777215,7,45,8603,1386260699390","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"33.4,16777215,7,30,8603,1386260699626","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"33.401,16724787,7,35,8603,1386260699628","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"33.5,16777215,7,45,8603,1386260701011","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"33.5,16777215,7,30,8603,1386260701246","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"33.501000000000005,16724787,7,35,8603,1386260701479","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34,16777215,7,45,8603,1386260702652","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.001000000000005,16724787,7,35,8603,1386260703306","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34,16777215,7,30,8603,1386260703772","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.15,16777215,7,45,8603,1386260704243","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.150999999999996,16724787,7,35,8603,1386260704572","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.3,16777215,7,45,8603,1386260704810","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.15,16777215,7,30,8603,1386260705045","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.301,16724787,7,35,8603,1386260705270","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.3,16777215,7,30,8603,1386260705500","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.45099999999999,16724787,7,35,8603,1386260705972","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.449999999999996,16777215,7,45,8603,1386260706205","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.4,16777215,7,45,8603,1386260707880","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.449999999999996,16777215,7,30,8603,1386260708120","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.44999999999999,16777215,7,45,8603,1386260708832","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.4,16777215,7,30,8603,1386260709066","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.400999999999996,16724787,7,35,8603,1386260709311","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.45099999999999,16724787,7,35,8603,1386260709782","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.44999999999999,16777215,7,30,8603,1386260710485","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.49999999999999,16777215,7,45,8603,1386260711205","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.50099999999999,16724787,7,35,8603,1386260711900","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.55,16777215,7,45,8603,1386260713747","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.49999999999999,16777215,7,30,8603,1386260713748","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.550999999999995,16724787,7,35,8603,1386260713986","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.55,16777215,7,30,8603,1386260714226","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.19999999999999,16777215,7,45,8603,1386260714460","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.19999999999999,16777215,7,30,8603,1386260715648","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.20099999999999,16724787,7,35,8603,1386260715649","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.3,16777215,7,45,8603,1386260715883","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.300999999999995,16724787,7,35,8603,1386260716349","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.3,16777215,7,30,8603,1386260717109","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.39999999999999,16777215,7,45,8603,1386260718032","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.400999999999996,16724787,7,35,8603,1386260718336","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.39999999999999,16777215,7,30,8603,1386260718801","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.49999999999999,16777215,7,45,8603,1386260719035","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.50099999999999,16724787,7,35,8603,1386260719511","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.49999999999999,16777215,7,30,8603,1386260719511","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.599999999999994,16777215,7,45,8603,1386260719748","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.599999999999994,16777215,7,30,8603,1386260719988","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.601,16724787,7,35,8603,1386260720222","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.69999999999999,16777215,7,45,8603,1386260720919","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.70099999999999,16724787,7,35,8603,1386260722071","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.69999999999999,16777215,7,30,8603,1386260722779","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.74999999999999,16777215,7,45,8603,1386260723245","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.75099999999999,16724787,7,35,8603,1386260723716","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.74999999999999,16777215,7,30,8603,1386260723957","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.80099999999999,16724787,7,35,8603,1386260724661","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.8,16777215,7,45,8603,1386260724894","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.8,16777215,7,30,8603,1386260725128","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.849999999999994,16777215,7,45,8603,1386260725607","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.851,16724787,7,35,8603,1386260725835","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.849999999999994,16777215,7,30,8603,1386260726803","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.49999999999999,16777215,7,45,8603,1386260727037","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.50099999999999,16724787,7,35,8603,1386260727512","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.49999999999999,16777215,7,30,8603,1386260727513","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.599999999999994,16777215,7,45,8603,1386260727980","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.601,16724787,7,35,8603,1386260728927","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.599999999999994,16777215,7,30,8603,1386260729162","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.69999999999999,16777215,7,45,8603,1386260731065","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.70099999999999,16724787,7,35,8603,1386260731066","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.69999999999999,16777215,7,30,8603,1386260731266","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.8,16777215,7,45,8603,1386260731538","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.80099999999999,16724787,7,35,8603,1386260731775","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.8,16777215,7,30,8603,1386260731986","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.89999999999999,16777215,7,45,8603,1386260732244","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.900999999999996,16724787,7,35,8603,1386260732476","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.89999999999999,16777215,7,30,8603,1386260732932","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.99999999999999,16777215,7,45,8603,1386260733338","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.00099999999999,16724787,7,35,8603,1386260733600","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.99999999999999,16777215,7,30,8603,1386260734023","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.69999999999999,16777215,7,45,8603,1386260734284","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.700999999999986,16724787,7,35,8603,1386260734806","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.69999999999999,16777215,7,30,8603,1386260735272","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.79999999999998,16777215,7,45,8603,1386260735740","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.80099999999999,16724787,7,35,8603,1386260736199","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.79999999999998,16777215,7,30,8603,1386260736661","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.89999999999999,16777215,7,45,8603,1386260737352","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.90099999999998,16724787,7,35,8603,1386260738071","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.89999999999999,16777215,7,30,8603,1386260738310","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.94999999999999,16777215,7,45,8603,1386260738543","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.950999999999986,16724787,7,35,8603,1386260738770","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.94999999999999,16777215,7,30,8603,1386260739471","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"35.04999999999998,16777215,7,45,8603,1386260739704","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.05099999999999,16724787,7,35,8603,1386260740418","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.04999999999998,16777215,7,30,8603,1386260741110","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"35.14999999999999,16777215,7,45,8603,1386260742261","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.14999999999999,16777215,7,30,8603,1386260742729","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"35.15099999999998,16724787,7,35,8603,1386260742964","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.249999999999986,16777215,7,45,8603,1386260743424","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.25099999999999,16724787,7,35,8603,1386260743657","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.249999999999986,16777215,7,30,8603,1386260743893","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"35.29999999999999,16777215,7,45,8603,1386260744280","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.30099999999999,16724787,7,35,8603,1386260744888","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.29999999999999,16777215,7,30,8603,1386260745124","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"35.349999999999994,16777215,7,45,8603,1386260745594","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.35099999999999,16724787,7,35,8603,1386260745848","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.349999999999994,16777215,7,30,8603,1386260746077","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.999999999999986,16777215,7,45,8603,1386260746303","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.00099999999999,16724787,7,35,8603,1386260746780","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.099999999999994,16777215,7,45,8603,1386260747017","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.999999999999986,16777215,7,30,8603,1386260747240","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"35.10099999999999,16724787,7,35,8603,1386260748093","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.20099999999999,16724787,7,35,8603,1386260748323","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.19999999999999,16777215,7,45,8603,1386260748556","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.099999999999994,16777215,7,30,8603,1386260748796","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"35.19999999999999,16777215,7,30,8603,1386260749262","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"35.29999999999999,16777215,7,45,8603,1386260749493","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.30099999999999,16724787,7,35,8603,1386260749727","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.29999999999999,16777215,7,30,8603,1386260750196","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"35.39999999999999,16777215,7,45,8603,1386260750478","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.400999999999996,16724787,7,35,8603,1386260750946","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.39999999999999,16777215,7,30,8603,1386260751188","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"35.499999999999986,16777215,7,45,8603,1386260751899","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.50099999999999,16724787,7,35,8603,1386260752129","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.499999999999986,16777215,7,30,8603,1386260752361","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"11.8,16777215,7,50,211467,1386301862419","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"17X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"18.7,16777215,7,50,211467,1386301854502","m":"{\"n\":\"39X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"18.3,16777215,7,50,211467,1386301854174","m":"{\"n\":\"38X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"11.4,16777215,7,50,211467,1386301861939","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"16X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"17.9,16777215,7,50,211467,1386301853692","m":"{\"n\":\"37X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"11.1,16777215,7,50,211467,1386301861459","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"15X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"18.9,16777215,7,50,211467,1386301855072","m":"{\"n\":\"40X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"17.3,16777215,7,50,211467,1386301852953","m":"{\"n\":\"35X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.3}]}"},{"c":"16.9,16777215,7,50,211467,1386301852479","m":"{\"n\":\"34X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"16.5,16777215,7,50,211467,1386301852067","m":"{\"n\":\"33X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"16.2,16777215,7,50,211467,1386301851782","m":"{\"n\":\"32X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"10.3,16777215,7,50,211467,1386301860739","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"13X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"17.6,16777215,7,50,211467,1386301853432","m":"{\"n\":\"36X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.3}]}"},{"c":"15.8,16777215,7,50,211467,1386301850955","m":"{\"n\":\"30X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"16,16777215,7,50,211467,1386301850269","m":"{\"n\":\"31X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"15.6,16777215,7,50,211467,1386301849447","m":"{\"n\":\"29X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"12.2,16777215,7,50,211467,1386301862672","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"18X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"15.2,16777215,7,50,211467,1386301848666","m":"{\"n\":\"28X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"14.8,16777215,7,50,211467,1386301847866","m":"{\"n\":\"27X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"14.4,16777215,7,50,211467,1386301847124","m":"{\"n\":\"26X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.35}]}"},{"c":"12.5,16777215,7,50,211467,1386301863140","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"19X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"13.7,16777215,7,50,211467,1386301846364","m":"{\"n\":\"24X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.35}]}"},{"c":"12.8,16777215,7,50,211467,1386301863501","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"20X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"8.4,16777215,7,50,211467,1386301858204","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"7X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"13,16777215,7,50,211467,1386301863980","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"21X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"6,16777215,7,50,211467,1386301855788","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"1X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"14.05,16777215,7,50,211467,1386301845664","m":"{\"n\":\"25X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.35}]}"},{"c":"8,16777215,7,50,211467,1386301857753","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"6X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"6.4,16777215,7,50,211467,1386301856252","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"2X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"6.8,16777215,7,50,211467,1386301856712","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"3X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"19.1,16777215,7,50,211467,1386301855314","m":"{\"n\":\"41X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"9.2,16777215,7,50,211467,1386301858968","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"9X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"10.7,16777215,7,50,211467,1386301861219","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"14X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"12.8,16777215,7,50,211467,1386301842672","m":"{\"n\":\"20X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"12.5,16777215,7,50,211467,1386301841877","m":"{\"n\":\"19X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.3}]}"},{"c":"12.2,16777215,7,50,211467,1386301841084","m":"{\"n\":\"18X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"13.7,16777215,7,50,211467,1386301865132","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"24X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"11.8,16777215,7,50,211467,1386301840559","m":"{\"n\":\"17X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"14.05,16777215,7,50,211467,1386301865610","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"25X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"9.5,16777215,7,50,211467,1386301859442","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"11X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"7.2,16777215,7,50,211467,1386301856943","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"4X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"11,16777215,7,50,211467,1386301838937","m":"{\"n\":\"15X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.3}]}"},{"c":"10.7,16777215,7,50,211467,1386301838118","m":"{\"n\":\"14X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"7.6,16777215,7,50,211467,1386301857405","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"5X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"9.9,16777215,7,50,211467,1386301836782","m":"{\"n\":\"12X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"9.9,16777215,7,50,211467,1386301860260","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"12X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"9.3,16777215,7,50,211467,1386301835104","m":"{\"n\":\"10X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"9.1,16777215,7,50,211467,1386301834364","m":"{\"n\":\"9X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"14.4,16777215,7,50,211467,1386301866132","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"26X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"14.8,16777215,7,50,211467,1386301866361","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"27X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"8.8,16777215,7,50,211467,1386301833649","m":"{\"n\":\"8X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"8.4,16777215,7,50,211467,1386301832891","m":"{\"n\":\"7X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"8,16777215,7,50,211467,1386301832195","m":"{\"n\":\"6X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"7.6,16777215,7,50,211467,1386301831857","m":"{\"n\":\"5X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"7.2,16777215,7,50,211467,1386301831388","m":"{\"n\":\"4X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"15.2,16777215,7,50,211467,1386301866771","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"28X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"15.6,16777215,7,50,211467,1386301867222","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"29X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"6.8,16777215,7,50,211467,1386301830918","m":"{\"n\":\"3X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"15.8,16777215,7,50,211467,1386301867575","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"30X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"6.4,16777215,7,50,211467,1386301830451","m":"{\"n\":\"2X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"16,16777215,7,50,211467,1386301868050","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"31X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"8.8,16777215,7,50,211467,1386301858656","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"8X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"13.4,16777215,7,50,211467,1386301845062","m":"{\"n\":\"23X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"13,16777215,7,50,211467,1386301843423","m":"{\"n\":\"21X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"6,16777215,7,50,211467,1386301830208","m":"{\"n\":\"1X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"5,16777215,7,60,211467,1386301874609","m":"{\"n\":\"100%\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":800},\"c\":3,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,2,2,4,2,false,false]],\"b\":false},\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}]}"},{"c":"5.2,16777215,7,99,211467,1386243321","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"16.2,16777215,7,50,211467,1386301868522","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"32X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"5.2,16777215,7,99,211467,1386243321","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"16.5,16777215,7,50,211467,1386301868780","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"33X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"9.3,16777215,7,50,211467,1386301859788","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"10X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"16.9,16777215,7,50,211467,1386301869196","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"34X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"13.2,16777215,7,50,211467,1386301844112","m":"{\"n\":\"22X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"5.2,16777215,7,99,211467,1386243321","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"13.2,16777215,7,50,211467,1386301864460","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"22X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"17.3,16777215,7,50,211467,1386301869608","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"35X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"13.4,16777215,7,50,211467,1386301864726","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"23X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"17.6,16777215,7,50,211467,1386301870070","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"36X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"11.4,16777215,7,50,211467,1386301839646","m":"{\"n\":\"16X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"5.2,16777215,7,99,211467,1386243321","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243427178","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243321","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"17.9,16777215,7,50,211467,1386301870529","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"37X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"5.2,16777215,7,99,211467,1386243321","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.3,16738047,7,1,211467,1386243424373","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":350,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":1.6},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.3,16738047,7,1,211467,1386243424685","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":300,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":1.2},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"4,16777215,7,99,211467,1386243475903","m":"{\"f\":1,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":900,\"x\":870},\"c\":4,\"n\":\"←\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,false]],\"b\":true},\"z\":[{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1}],\"e\":1}"},{"c":"5.3,16738047,7,1,211467,1386243425415","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":400,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":2},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"18.3,16777215,7,50,211467,1386301870991","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"38X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"18.7,16777215,7,50,211467,1386301871234","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"39X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"18.9,16777215,7,50,211467,1386301871789","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"40X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"19.1,16777215,7,50,211467,1386301872027","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"41X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"5,16777215,7,20,211467,1386301872524","m":"{\"f\":1.2,\"a\":0,\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":-120},\"c\":3,\"n\":\"□\",\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,16777215,1,8,8,4,2,false,false]],\"b\":true},\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"e\":25}"},{"c":"5,16711680,7,20,211467,1386301872849","m":"{\"f\":1.2,\"a\":0,\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":-120},\"c\":3,\"n\":\"■\",\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,16777215,1,8,8,4,2,false,false]],\"b\":true},\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"e\":25}"},{"c":"4,16777215,7,99,211467,1386243476227","m":"{\"f\":1,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":100,\"x\":870},\"c\":4,\"n\":\"←\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,false]],\"b\":true},\"z\":[{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1}],\"e\":1}"},{"c":"4,16777215,7,99,211467,1386243423411","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"3\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.3}],\"e\":6}"},{"c":"10.3,16777215,7,50,211467,1386301837368","m":"{\"n\":\"13X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"5.3,16738047,7,1,211467,1386243424928","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":450,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":2.4},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5,16763904,7,20,211467,1386301873270","m":"{\"a\":0,\"t\":0,\"b\":false,\"c\":3,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"e\":10,\"k\":0,\"f\":1.2,\"z\":[{\"c\":16763904,\"l\":0},{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"p\":{\"y\":56,\"x\":330},\"n\":\"■\"}"},{"c":"5,16763904,7,60,211467,1386301873669","m":"{\"n\":\"■\",\"a\":0,\"t\":0,\"b\":false,\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"p\":{\"y\":10,\"x\":600},\"c\":3,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,8,8,4,2,false,false]],\"b\":true},\"r\":45}"},{"c":"17.1,16738047,7,80,211467,1386243473188","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"5.3,16738047,7,1,211467,1386243423738","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":200,\"x\":300},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.4},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.3,16738047,7,1,211467,1386243426623","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":150,\"x\":250},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"9.5,16777215,7,50,211467,1386301835964","m":"{\"n\":\"11X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"5,16711680,7,40,211467,1386301874149","m":"{\"n\":\"気\",\"a\":1,\"t\":0,\"b\":false,\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"p\":{\"y\":60,\"x\":600},\"c\":3,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,2,2,4,2,false,false]],\"b\":false},\"r\":-10}"},{"c":"5.2,16777215,7,99,211467,1386243427178","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"13.4,16777215,7,50,211467,1386301776","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"23X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"4.4,16777215,7,99,211467,1386243422566","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"2\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.3}],\"e\":6}"},{"c":"8,16777215,7,50,211467,1386301743","m":"{\"n\":\"6X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"10.7,16777215,7,50,211467,1386301749","m":"{\"n\":\"14X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"9.9,16777215,7,50,211467,1386301748","m":"{\"n\":\"12X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"18.9,16777215,7,50,211467,1386301766","m":"{\"n\":\"40X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"7.2,16777215,7,50,211467,1386301768","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"4X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"8.4,16777215,7,50,211467,1386301769","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"7X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"7.6,16777215,7,50,211467,1386301768","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"5X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"5,16763904,7,60,211467,1386301785","m":"{\"n\":\"■\",\"a\":0,\"t\":0,\"b\":false,\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"p\":{\"y\":10,\"x\":600},\"c\":3,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,8,8,4,2,false,false]],\"b\":true},\"r\":45}"},{"c":"5,16711680,7,40,211467,1386301785","m":"{\"n\":\"気\",\"a\":1,\"t\":0,\"b\":false,\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"p\":{\"y\":60,\"x\":600},\"c\":3,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,2,2,4,2,false,false]],\"b\":false},\"r\":-10}"},{"c":"5,16777215,7,60,211467,1386301785","m":"{\"n\":\"100%\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":800},\"c\":3,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,2,2,4,2,false,false]],\"b\":false},\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}]}"},{"c":"5,16763904,7,20,211467,1386301784","m":"{\"a\":0,\"t\":0,\"b\":false,\"c\":3,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"e\":10,\"k\":0,\"f\":1.2,\"z\":[{\"c\":16763904,\"l\":0},{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"p\":{\"y\":56,\"x\":330},\"n\":\"■\"}"},{"c":"5,16711680,7,20,211467,1386301784","m":"{\"f\":1.2,\"a\":0,\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":-120},\"c\":3,\"n\":\"■\",\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,16777215,1,8,8,4,2,false,false]],\"b\":true},\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"e\":25}"},{"c":"5,16777215,7,20,211467,1386301783","m":"{\"f\":1.2,\"a\":0,\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":-120},\"c\":3,\"n\":\"□\",\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,16777215,1,8,8,4,2,false,false]],\"b\":true},\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"e\":25}"},{"c":"18.9,16777215,7,50,211467,1386301783","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"40X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"19.1,16777215,7,50,211467,1386301783","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"41X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"18.3,16777215,7,50,211467,1386301782","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"38X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"18.7,16777215,7,50,211467,1386301782","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"39X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"17.6,16777215,7,50,211467,1386301781","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"36X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"17.3,16777215,7,50,211467,1386301781","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"35X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"17.9,16777215,7,50,211467,1386301781","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"37X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"16.9,16777215,7,50,211467,1386301780","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"34X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"16.5,16777215,7,50,211467,1386301780","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"33X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"16.2,16777215,7,50,211467,1386301779","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"32X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"16,16777215,7,50,211467,1386301779","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"31X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"15.8,16777215,7,50,211467,1386301779","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"30X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"15.6,16777215,7,50,211467,1386301778","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"29X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"15.2,16777215,7,50,211467,1386301778","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"28X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"14.4,16777215,7,50,211467,1386301777","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"26X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"14.05,16777215,7,50,211467,1386301777","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"25X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"14.8,16777215,7,50,211467,1386301777","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"27X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"13.7,16777215,7,50,211467,1386301776","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"24X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"16.5,16777215,7,50,211467,1386301763","m":"{\"n\":\"33X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"13.2,16777215,7,50,211467,1386301775","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"22X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"13,16777215,7,50,211467,1386301775","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"21X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"12.8,16777215,7,50,211467,1386301774","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"20X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"12.2,16777215,7,50,211467,1386301774","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"18X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"12.5,16777215,7,50,211467,1386301774","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"19X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"11.4,16777215,7,50,211467,1386301773","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"16X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"11.8,16777215,7,50,211467,1386301773","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"17X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"10.7,16777215,7,50,211467,1386301772","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"14X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"11.1,16777215,7,50,211467,1386301772","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"15X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"10.3,16777215,7,50,211467,1386301772","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"13X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"9.3,16777215,7,50,211467,1386301771","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"10X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"9.9,16777215,7,50,211467,1386301771","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"12X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"9.2,16777215,7,50,211467,1386301770","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"9X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"9.5,16777215,7,50,211467,1386301770","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"11X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"8.8,16777215,7,50,211467,1386301770","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"8X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"8,16777215,7,50,211467,1386301769","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"6X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"6.8,16777215,7,50,211467,1386301742","m":"{\"n\":\"3X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"14.05,16777215,7,50,211467,1386301757","m":"{\"n\":\"25X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.35}]}"},{"c":"6,16777215,7,50,211467,1386301741","m":"{\"n\":\"1X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"6.8,16777215,7,50,211467,1386301768","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"3X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"6.4,16777215,7,50,211467,1386301767","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"2X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"6,16777215,7,50,211467,1386301767","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"1X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"13.2,16777215,7,50,211467,1386301755","m":"{\"n\":\"22X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"19.1,16777215,7,50,211467,1386301766","m":"{\"n\":\"41X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"18.3,16777215,7,50,211467,1386301765","m":"{\"n\":\"38X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"17.9,16777215,7,50,211467,1386301765","m":"{\"n\":\"37X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"18.7,16777215,7,50,211467,1386301765","m":"{\"n\":\"39X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"17.3,16777215,7,50,211467,1386301764","m":"{\"n\":\"35X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.3}]}"},{"c":"17.6,16777215,7,50,211467,1386301764","m":"{\"n\":\"36X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.3}]}"},{"c":"12.5,16777215,7,50,211467,1386301753","m":"{\"n\":\"19X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.3}]}"},{"c":"16.9,16777215,7,50,211467,1386301763","m":"{\"n\":\"34X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"16.2,16777215,7,50,211467,1386301763","m":"{\"n\":\"32X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"15.8,16777215,7,50,211467,1386301762","m":"{\"n\":\"30X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"16,16777215,7,50,211467,1386301761","m":"{\"n\":\"31X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"15.6,16777215,7,50,211467,1386301760","m":"{\"n\":\"29X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"15.2,16777215,7,50,211467,1386301760","m":"{\"n\":\"28X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"14.8,16777215,7,50,211467,1386301759","m":"{\"n\":\"27X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"14.4,16777215,7,50,211467,1386301758","m":"{\"n\":\"26X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.35}]}"},{"c":"11,16777215,7,50,211467,1386301750","m":"{\"n\":\"15X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.3}]}"},{"c":"13.7,16777215,7,50,211467,1386301757","m":"{\"n\":\"24X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.35}]}"},{"c":"13.4,16777215,7,50,211467,1386301756","m":"{\"n\":\"23X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"6.4,16777215,7,50,211467,1386301830451","m":"{\"n\":\"2X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"13,16777215,7,50,211467,1386301754","m":"{\"n\":\"21X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"12.8,16777215,7,50,211467,1386301754","m":"{\"n\":\"20X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"10.3,16777215,7,50,211467,1386301748","m":"{\"n\":\"13X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"12.2,16777215,7,50,211467,1386301752","m":"{\"n\":\"18X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"11.8,16777215,7,50,211467,1386301751","m":"{\"n\":\"17X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"11.4,16777215,7,50,211467,1386301751","m":"{\"n\":\"16X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"7.2,16777215,7,50,211467,1386301742","m":"{\"n\":\"4X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"9.1,16777215,7,50,211467,1386301745","m":"{\"n\":\"9X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"9.3,16777215,7,50,211467,1386301746","m":"{\"n\":\"10X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"7.6,16777215,7,50,211467,1386301743","m":"{\"n\":\"5X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"9.5,16777215,7,50,211467,1386301747","m":"{\"n\":\"11X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"6.4,16777215,7,50,211467,1386301741","m":"{\"n\":\"2X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"8.8,16777215,7,50,211467,1386301745","m":"{\"n\":\"8X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"8.4,16777215,7,50,211467,1386301744","m":"{\"n\":\"7X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"27.9,13056,7,1,253165,1386302943","m":"{\"z\":[{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3}],\"n\":\"三                                                                                                                                           \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                               ▏▎▉▌▎        ▏                                               \\r                                                                               ▎▋▏▍▋▌▎▍▌▍▌▌▍▌▌▌▌▍▎                                          \\r                                                                              ▎▌▋▏▎▌▋▍▎▎▎▏▏▏▏▏▎▎▍▌▋▎▏   ▏▋▊▌                                \\r                                                                            ▏▌▊▊▊▉▌▎▏▏▏▏▏▏▏▏▏▏▏▏▏▏▎▌▌▍ ▎▍▌▌▋▊                               \\r                                                                           ▎▌▉▋▌▍▍▎▏▏▏▏▏▏▏▏▏▏▏▎▏▏▏▏ ▏▍▋▋▋▌▍▋█▎▏                             \\r                                                                           ▋▉▍▏▏  ▏▏▏▏▏▏▏▎▎▏▎▏▏▎▏▏▏ ▏▍▋▋▋▎▏▎▍▊▍                             \\r                                                                          ▋▋▌  ▏▎▏▏▏▏▏▏▏▎▎▍▏▏▏▎▏▏▏ ▍▌▌▌▌▍    ▍▋▌                            \\r                                                                          ▊▍▏▏▍▍▎▏▏▏▏▏▏▏▎▎▎▎▎▏▏▏▏▎▎▌▌▌▍▌▌▏▏▏▏▏▍▋▍▏                          \\r                                                                        ▎▌▍▎▎▋▍▎▏▏▏▏▏▏▎▍▎▏▏▌▋▍▏▏▏▎▎▌▌▋▍▍▍▍▏▏▏▏▎▍▋▏                          \\r                                                                       ▏▍▋▏▌▋▌▏▏▏▏▏▎▍▍▌▋▏▏▏▍▎▍▌ ▏▏▎▏▍▋▌▎▎▌▏▏▏▏▏▎▋▏                          \\r                                                                       ▌▌▎▋▋▌▏▏▏▏▏▍▌▎▏▏▍▎▏▎▍▏▏▍▌▎▏▏ ▏▍▋▍▎▋▎▏▏▏▏▏▍▌▎                         \\r                                                                       ▍▌▋▊▍▏ ▏▏▏▌▍▏  ▎▌▎▎▎▍▏  ▊▌▎▏▏▏▏▌▌▌▌▍▏ ▏▏▏▎▌▍                         \\r                                                                     ▏▍▌▋▉▍▏ ▏▏▎▋▍▏   ▎▌▎▎▎▍▏  ▏▍▌▏▏▏ ▎▌▋▋▍▎ ▏▏▏▏▌▍                         \\r               ▌▌▎                                                   ▏▋▊▊▊ ▏▏▏▍▌▌     ▎▌▍▍▍▍▏   ▎▌▍▏▏▏ ▎▌▊▊▌ ▏▏▏▏▍▍▍                        \\r               ▍▌▍▌▎                                                ▏▎▊▊▋▍ ▏▏▎▌▍      ▏▍▌▍▎▍▏    ▏▌▎▏▏▏▏▎▋▋▌▏▏▏▏▏▎▍▋                        \\r              ▏▎▎▏▎▍▍▏                                              ▍▋▊▌▍▏▏▏▎▌▏  ▏    ▏▏▋▍▍▌▏    ▏▌▎▎▏▏▏▏▏▎▍▍▏▏▏▏▏▎▋                        \\r             ▏▎▍▎▏▏▎▎▌▍▎                                            ▌▋▌▌▎ ▏▎▌▊▍▎▍       ▋▌▍▊▎▏    ▏▍▎▏▎▏▏▏▏▎▌▏▏▏▏▏▎▍▍▏                      \\r             ▏▍▍▍▎▏▏▏▏▍▍▌▏                                          ▌▋▌▍▎▏▌▋▋▎▏         ▋▌▌▌▏▏▏▍▏  ▍▍▏▏▏▎▏▏▎▌▎▏▏▏▏▏▎▋▎                      \\r               ▎▎▍▎▏▏▏▏▏▎▌▍▎                                       ▏▍▌▌▎▏▏▋▋▌           ▍▌▌▌▏   ▏▏▎▌▌▏▏▏▏▏▏▎▌▎▏▏▏▏▏▏▋▎                      \\r                  ▍▍▎▏▏▏▏▏▎▍▍▏                                     ▎▍▌▌▎▏▏▌▎▏ ▎▎         ▍▋▌▏      ▌▋▋▎▏▏▏▏▎▌▍▎▏▎▏▏▏▌▍▎                     \\r       ▏▏▏▏▏▏▏▏▏▏ ▍▌▋▌▍▎▎▏▏▏▎▌▌▍                                   ▍▍▍▌▎▏▏▌▍▍▌▌▌▌        ▍▌▊▏  ▋▌▍  ▎▋▎▎▎▏ ▎▋▌▎▏▏▎▏ ▍▌▌                     \\r     ▏▎▋▌▍▍▌▍▍▍▍▍▍▎▎▎▍▍▍▍▌▍▎▏▎▎▎▏▎▎▎▏                              ▌▍▍▌▎▏▎▌▋▌  ▏▍         ▏▊▎▏▍▎▎▎▎ ▎▌▏▎▎▏ ▎▋▊▎ ▎▎▏▏▏▌▌                     \\r      ▏▍▎▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▎▎▍▌▍▏       ▏▎▎▏                        ▏▎▎▍▍▍▎▎▎▍▌▌  ▏▎         ▏▋▌▌▌  ▏▍▏▎▌▏▏▏▏▏▎▋▋▍▏▏▎▎▏▏▍▌▎▏                   \\r      ▏▍▎▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▎▌▏          ▏▎▍▏                     ▎▌▏▍▌▍▎▎▍▎▎▎▍▏▎▌           ▌▋▌  ▏▍▏▎▌▏▎▎▏▏▎▌▋▍▏ ▎▎▏▏▎▍▌▏                   \\r      ▏▌▎▎▎▎▎▎▎▎▎▎▎▍▍▍▍▍▍▍▌▌▍▌▌▍           ▎▍▍                   ▎▌ ▍▌▍▎▎▌▎▏▏▌▋▌▎            ▎▌▌▋▌▏ ▎▌▎▎▎▏▏▍▊▉▌▎ ▎▎▎▏▏▎▋▏                   \\r      ▏▌▌▍▍▎▎▍▋▌▌▍▍▌▌▌▌▌▋▌▌▌▌▍▍▎▏▏▏▏▎▏▏       ▎▎▎        ▏▎▋▊▊▋▎▎▎▎▏▍▌▍▎▍▋▎▏                   ▌▌▎  ▎▌▎▎▎▏▎▍▊▉▋▍ ▏▎▎▏▏▎▋▎▏                  \\r       ▎▏▏ ▏▎▍▌▌▍▍▍▍▎▎▏▏              ▏▎▎▍▎▏▏   ▏▍▏▏   ▏▎▊▉▊▊▊▊▉▋▍ ▏▌▋▍▎▍▍                          ▎▌▍▎▏▏▎▌▊▉▋▌ ▏▎▎▏▏▏▌▌▎                  \\r         ▏▍▋▌▎▏▏▏▏                         ▎▍▌▏▏  ▏▎▎  ▎▉▊▋▋▌▌▋▋▋▍ ▏▍▌▍▎▎▏                          ▎▌▌▎▏▏▌▋▊▊▋▌ ▏▎▍▏▏▏▎▋▍                  \\r         ▏▎                                   ▍▍▎    ▏▍▋▊▋▋▌▋▌▌▋▋▌▍ ▍▌▌▎▏▏       ▌▌▋▌▍▎▎▏           ▎▌▌▎▏▎▌▋▊▊▊▋▏▏▎▍▎▏▏▎▌▍▏                 \\r                                                ▏▍▏  ▍▋▊▋▌▌▋▌▋▋▌▋▋▋▎▍▌▌▏▏▎       ▋▍▎▍▍▍▍▋▌▎         ▎▌▌▎▏▌▋▋▋▊▋▋▎▏▏▍▎▏▏▏▌▌▍                 \\r                                                  ▏▎▎▌▋▋▌▌▌▌▌▌▌▌▌▋▋▌▌▍▌▎▎▏       ▌▎     ▏▎▎         ▏▎▌▍▍▋▋▋▊▌▌▍▎▏▏▎▍▎▏▏▎▌▋                 \\r                                                    ▏▊▋▋▌▌▌▋▌▌▋▌▋▋▌▋▌▌▌▎▏        ▌▎     ▏▎▎         ▏▍▋▋▋▋▋▊▉▊▌▍▍▏▏▎▍▎▏▏▎▍▋                 \\r                                                   ▏▎▊▋▋▌▋▋▋▋▌▌▋▌▌▋▋▋▋▋▍▍▍       ▍▏     ▎▎▎         ▎▌▊▋▌▍▋▋▌▍▏▏▍▏▏▏▍▎▏▏▏▍▋▎▏               \\r                                                   ▎▋▊▋▋▋▋▋▋▋▌▌▌▋▋▌▌▋▋▊▍▍▋▌▎    ▏▍▏     ▏▎▎         ▎▌▍▍▍▍▍▎   ▏▌▎▏▏▍▎▎▏▏▎▍▌▎               \\r                                                   ▎▋▊▋▋▌▋▋▋▋▌▌▋▋▋▋▌▌▋▋▌▍▍▋▎   ▏▎▏▏     ▏▏▏        ▎▎▎▍▍▌▋▏    ▏▌▎▏▏▍▎▎▏▏▎▍▋▎               \\r                                                   ▏▎▉▋▋▋▋▋▋▋▋▋▌▋▌▌▋▌▌▋▌▌▌▌▎▏  ▏▎▏      ▎▎▎        ▍▍▎▌▌▌▌▏    ▏▌▍▎▏▍▎▎▏▏▏▎▋▎               \\r                                                     ▉▊▋▌▋▋▋▋▋▌▌▌▌▌▌▋▋▌▋▋▌▋▋▌▏ ▏▎       ▎▎▏        ▍▌▍▋▋▌      ▏▍▍▎ ▍▍▎▏▏▏▎▌▍▎              \\r                                                     ▉▊▊▋▋▋▋▋▋▋▋▋▌▌▌▌▌▌▋▋▋▋▊▊▋▏▏▎       ▎▏▏       ▎▍▌▌▋▍▏      ▏▍▍▎ ▎▎▎▏▏▏▏▍▌▌              \\r                                                     ▎▋▉▊▊▋▋▋▋▋▋▋▋▋▌▌▋▌▋▋▋▋▋▋▊▎▎▌       ▏▏      ▏▍▋▋▌▌▌▎       ▏▎▌▍ ▎▍▍▏▏▏▏▎▌▌              \\r                                                       ▏▌▋▋▊▊▋▋▋▋▋▋▋▌▌▋▌▌▋▋▋▋▊▏▎▌▍▎▏▏   ▏▏   ▏▎▏▌▋▊▌▌▌▍▎        ▏▌▍ ▎▎▍▏▏▏▏▎▍▌▎             \\r                                                          ▎▋▋▋▋▋▋▋▋▌▋▌▌▋▋▋▋▌▌▎▎▏▎▋▋▋▋▋▌▌▋▌▍▍▊▉▉ ▎▍  ▎▌▉▍        ▏▌▍ ▎▎▍▎▏▏▏▏▍▌▍▏            \\r                                                          ▏▍ ▎▍▌▋▋▋▋▋▋▋▋▋▋▌▎  ▍▎      ▎▊▊▊▋▌▊▋▍▊▌▎    ▋▌▍        ▌▍▏▏▎▍▎▏▏▏▏▎▍▋▏            \\r                                                         ▎▍▎ ▏▏▎▎▍▌▋▋▊▋▋▋▋     ▎▌    ▍▌▋▎▏ ▎▌▌▍▋▌▍               ▌▌▏▏▎▍▎▏▏▏▏▎▍▋▏            \\r                                                         ▌▍▎▏▎▎▎▎▎▏▎▍▌▋▊▋▋      ▏▌▍▌▉▋▌▏  ▏▌▋▋▌  ▏▌▏             ▌▌▏▏▎▍▎▏▏▏▏▎▎▋▎▏           \\r                                                         ▌▍▏▏▎▎▎▎▎▎▎▏▏▏▌▋▊▎▏     ▌▌▌▌▌▎ ▏▎▌▋▊▌▎    ▍▍            ▋▌▏▏▎▎▍▏▏▎▏▎▎▌▌▎           \\r                                                        ▏▍▎▏▏▎▍▎▎▎▎▎▎▎▎▌▍▎▍▍▍  ▏▎▋▌▍▍▋▍  ▍▋▎▋▍     ▏▎▎           ▋▌▏▏▎▍▍▎▏▏▎▎▎▍▌▍           \\r                                                       ▏▍▍▎ ▎▎▎▍▎▎▎▎▎▎▎▋▌  ▎▎▏ ▎▌▋▎▏▎▋▌▏▍▌▍▏▌▍      ▏▍           ▋▌▏▏▎▎▍▎▏▏▎▎▎▎▋▍           \\r                                                       ▏▌▎▏▏▎▎▍▎▎▎▎▎▎▎▎▋▌▏    ▍▌▋▌▎ ▏▌▌▍▌▎▏ ▌▍   ▏▎▏▏▍           ▋▌▏▏▎▎▍▎▏▏▎▎▎▎▌▍▏          \\r                                                       ▏▌▎▏▏▍▎▎▎▎▎▎▎▎▎▎▋▌     ▌▌▍▌▌▍▌▌▌▋▌▎  ▌▍  ▍▋▍▏▏▎▏          ▋▌▏▏▏▎▍▎▏▏▎▎▎▎▌▌▍          \\r                                                      ▏▏▌▏▏▎▎▎▎▎▎▎▎▎▎▎▎▋▌▏  ▏▌▎▎▎▌▍▍▌▎▌▉▍▏  ▌▍▎     ▎▋▎▏         ▋▌▏▏▏▎▍▎▎▏▎▎▎▎▍▌▋          \\r                                                      ▎▍▍▏▏▎▍▎▎▍▎▎▎▎▎▎▎▋▌▏  ▏▌▏▎▌▎▎▎▍▏▍▋▏▏  ▏▍▋▎▏  ▍▌▊▍▏         ▋▌▏▏▎▎▎▎▎▏▏▎▎▎▎▌▋          \\r                                                      ▎▍▎▏▏▎▎▎▎▎▎▎▎▎▎▎▎▋▌▏ ▎▍▏▎▍▌▏▏▎▌▏▏▎▏▏▏▏ ▎▌▊▋▌▋▊▊▊▌▎         ▋▌▏▏▎▎▎▎▎▏▏▎▎▎▎▍▋▏         \\r                                                      ▍▌▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▋▌  ▎▍ ▍▍▎▏▎▎▌▏  ▎▎▎▍▏▎▍▊▋▋▋▊▊▊▊▍         ▋▌▏▏▎▎▎▎▎▏▏▎▎▎▎▍▌▍▏        \\r                                                     ▏▍▍▏▏▎▍▍▎▎▎▎▎▎▎▎▎▎▋▌▏▏▏▎▎▌▍ ▏▏▎▌▏▏▏  ▏▍▎▎▎▊▋▋▋▋▋▋▊▍        ▏▋▌▏▏▎▍▎▎▎▏▏▎▎▎▎▍▌▌▎        \\r                                                     ▎▍▍▏▏▎▍▎▎▎▎▎▎▍▎▎▎▎▌▌▎▎▏▏▍▌▍▏ ▎▍▍▏▏▏   ▎▏▎▍▊▋▋▋▋▋▋▉▍▏       ▏▋▌ ▏▎▍▎▏▏▎▏▏▎▎▎▎▍▋▎        \\r                                                     ▌▍▎▏▏▎▍▎▎▎▎▎▎▎▎▎▎▎▍▌▋▏▏▎▌▌▍▏ ▎▌▍▏ ▏▏▎▎▎▏▎▎▊▋▋▋▋▋▋▊▋▍      ▏▎▋▌▏▏▎▍▏▏▏▏▏▏▎▎▎▎▎▋▎        \\r                                                     ▌▍▎▏▎▎▍▎▎▎▎▎▎▎▎▎▎▏▍▋▉▎▎▍▋▍▎ ▏▍▌▌▎▏▎▎▎▎▎▏▎▎▊▋▋▌▋▋▋▊▋▌      ▏▎▋▌▏▏▎▎▎▏▏▏▏▏▎▎▎▎▎▋▎▏       \\r                                                     ▋▎▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▎▌▋▊▎▍▍▎▏▏▏▎▍▌▍▎▎▎▎▎▎▎▏▏▎▊▋▋▋▌▌▌▋▊▋      ▏▍▋▍▏▏▎▎▏▏▏▏▏▏▏▎▎▎▎▌▍▎       \\r                                                    ▏▌▎▏▏▎▎▎▍▎▎▎▎▎▎▎▍▌▋▌▍▏▏▍▌▎▎▎▎▎▌▋▎▏▏▎▎▎▎▎▏▏▍▊▋▋▋▌▌▌▋▊▋▏     ▏▌▋▍ ▏▎▎▏▏▏▏▏▏▏▎▎▎▎▍▌▍       \\r                                                   ▏▎▍▎▏▏▎▎▍▎▎▎▎▎▎▎▌▋▌▎   ▎▌▌▎▎▎▏▌▋▌▏  ▏▎▎▎▎▏▎▍▊▋▋▋▌▌▋▋▋▊▌▏    ▏▋▌▍▏▏▎▎▏▎▎▏▏▏▏▎▎▎▎▍▌▌       \\r                                                   ▏▍▎▏▏▏▎▍▎▎▎▎▎▎▎▎▋▌▎    ▎▍▌▍▎▎▎▊▌▎    ▏▏▏▎▏▎▍▊▋▋▋▋▋▋▋▋▋▊▏    ▏▋▌▎ ▏▏▏▏▎▎▎▏▏▏▎▎▎▎▎▌▌       \\r                                                   ▎▌▎▏▏▎▎▍▍▎▎▎▎▎▎▏▌▌▌ ▏▏▏ ▍▌▎▏▍▌▌▎ ▏    ▏▏▏▏▎▌▊▋▋▋▋▋▋▋▋▋▊▏    ▏▊▍▎▏▏▏▏▏▎▎▏▏▏▏▎▎▎▎▎▌▌       \\r                                                   ▎▌▏▏▏▎▎▎▎▎▎▎▎▎▎▎▌▋▋  ▏  ▎▍▎▎▌▊  ▏▏▍▎▏   ▏▏▎▌▋▋▋▌▌▌▌▌▋▋▊▌▎   ▏▊▍▎ ▏▏▏▏▎▎▎▏▏▏▎▎▎▎▎▌▌▎      \\r                                                   ▎▌▏▏▏▎▎▎▍▎▎▎▎▎▍▌▋▊▋▎   ▏▍▌▏▌▋▊▎▏ ▏▎▍▍▏▏▏ ▏▎▋▊▋▌▌▍▍▍▌▋▋▋▋▍   ▏▉▍▏▏▏▏▏▏▎▎▎▏▏▏▎▎▎▎▎▍▌▍▏     \\r                                                   ▎▌▏▏▏▎▎▎▎▍▎▎▎▍▌▌▎▋▊▍▏▏▏▋▋▋▍▋▋▋▌▎  ▏▎▍▍▎▎▏ ▎▋▋▋▋▌▌▍▍▌▋▋▋▊▌   ▎▊▎▏▏▏▏▏▏▎▎▍▏▏▏▏▎▎▎▎▍▌▌▏     \\r                                                  ▏▎▌▏▏▏▎▎▎▎▎▎▎▎▎▍▌▏▌▋▋▍▍▋▋▋▋▋▌▌▍▊▌▎ ▏▏▎▏▎▎▏ ▎▋▋▋▋▌▌▌▍▌▌▋▋▊▋▎ ▏▎▊▎▏▏▏▏▏▏▎▎▍▏▏▏▏▎▎▎▎▍▍▌▏     \\r                                                  ▎▍▍▏▏▎▎▏▎▎▍▎▎▎▎▍▌▎▎▍▋▋▋▌▌▋▋▋▍▍▍▋▌▌  ▏▏▏▏   ▎▊▋▋▋▌▋▌▍▌▌▋▋▋▋▋ ▏▍▋▎▏▏▎▏▏▏▏▎▍▎▏▏▏▎▎▎▎▎▍▋▏     \\r                                                  ▍▍▎▏▎▎▎▏▎▍▎▎▎▎▎▎▍▌▍▍▋▌▌▌▌▌▌▍▌▍▍▌▋▋▎  ▏    ▎▌▋▋▋▋▌▌▌▍▍▌▋▋▋▋▊ ▎▍▌▏▏▏▏▏▏▏▏▎▍▎▏▏▏▎▎▎▎▎▍▋▏     \\r                                                  ▍▍▎▎▎▎▏▏▎▍▎▎▎▎▎▎▎▌▋▋▊▋▋▌▌▌▌▌▌▌▌▍▌▋▌▏  ▏▎▍▌▋▋▋▋▋▋▌▌▌▍▌▌▌▋▋▋▊▎▌▌▍▏▏▏▎▏▏▏▏▎▍▎▎▏▏▎▍▎▎▎▍▋▏     \\r                                                  ▍▍▎▌▎▏▏▏▎▍▎▎▎▎▎▎▏▍▋▋▍▋▋▋▌▋▋▌▌▌▋▌▌▌▋▍▎▎▌▋▋▌▌▋▋▋▋▋▋▌▌▌▍▌▋▋▋▋▋▋▋▌▎▏▏▎▏▏▏▏▏▎▍▍▎▏▏▎▎▍▎▎▍▋▎▏    \\r                                                  ▍▍▍▍▎▏▏▏▎▎▍▎▎▎▎▎▎▍▌▌ ▍▌▋▋▋▋▌▍▍▋▋▋▋▋▋▋▌▋▋▌▌▌▋▋▋▋▋▌▌▌▌▌▌▌▋▋▋▋▌▌▌▏▏▏▏▎▏▏▏▏▎▍▍▎▏▏▎▎▎▎▎▎▌▎▏    \\r                                                  ▍▌▌▍▏▏▏▎▎▍▎▎▎▎▎▎▎▎▍▌▍▏▎▌▋▋▋▌▌▌▌▋▋▋▍▌▌▋▌▋▋▋▋▋▋▋▋▋▌▌▌▌▍▌▌▋▋▋▋▍▌▌▏▏▏▎▏▎▎▏▏▎▎▍▎▏▏▎▎▍▎▎▎▌▍▎    \\r                                                  ▍▌▋▏▏▏▏▎▎▍▍▎▎▎▎▎▎▎▎▍▌▎▎▎▊▋▋▋▋▌▌▌▋▋▍▌▌▌▌▌▋▋▋▋▋▌▋▋▌▌▌▍▌▌▌▋▊▋▍▎▍▌▏▏▏▏▎▏▏▏▏▎▎▍▎▎▏▎▎▎▍▍▍▌▍▎    \\r                                                  ▌▋▋▏▏▏▏▏▎▍▎▎▎▎▎▎▎▎▎▎▍▌▋▋▌▍▍▋▋▋▋▋▋▋▋▋▋▌▍▌▋▋▌▌▋▋▋▌▋▌▌▌▌▋▋▊▊▌ ▎▍▍▏▏▏▏▏▏▏▏▏▎▎▍▎▎▏▎▎▎▎▍▍▍▍▎    \\r                                                  ▋▋▌ ▏▏▏▎▎▎▎▎▎▎▎▎▎▎▎▎▏▎▌▉▌▏ ▏▍▌▋▋▋▋▋▋▋▋▌▋▋▌▏▏▍▊▊▋▋▋▋▋▋▊▊▊▌▎ ▌▍▎▏▎▎▏▏▏▏▏▏▎▎▍▎▎▏▎▎▎▎▍▌▍▍▎    \\r                                                  ▋▋▎▏▏▏▎▎▎▍▎▎▎▎▎▎▎▎▎▎▎▎▌▋▍▍▎  ▏▏▋▋▋▋▌▌▌▍▌▌▋▍▎▎▌▋▋▋▊▊▊▋▊▋▍▏  ▋▍▎▎▎▎▏▏▏▏▏▏▎▎▍▎▎▏▎▎▎▏▍▌▌▌▎    \\r                                                  ▌▌▎ ▏▎▎▎▎▎▍▎▎▎▎▎▎▎▎▎▎▍▍▍ ▍▌▋▎▏▏▋▌▍    ▎▎▍▊▋▍   ▏▌▌▌▌▌▎▏▋▍▎▏▌▍▎▎▎▏▏▎▏▏▏▏▎▎▍▍▎▏▎▎▎▎▍▌▋▌▎    \\r                                                  ▌▌▍▏▏▎▎▏▎▍▎▎▎▎▎▎▎▎▎▎▎▍▌▌ ▏▏▏▎▍▌▉▌▎   ▏▍▌▌▋▏   ▎▍▋▏  ▍▏▏▍▏▏▏▌▌▌▌▏▏▏▏▏▏▏▏▎▎▍▎▎▏▎▎▍▎▎▍▋▌▍    \\r                                                  ▍▍▍ ▏▎▎▎▎▎▍▎▎▍▎▎▎▎▎▎▎▍▌▌ ▏▏    ▌▌▌▌▌▌▌▎▏ ▏▎▎▏▌▊▉▊▍▎▏▍▌▌  ▏▍▋▋▋▌▎▏▏▏▏▏▏▏▎▎▎▎▎▎▎▎▎▎▎▍▊▋▍    \\r                                                  ▏▎▍▏▏▎▍▏▎▍▎▎▎▎▎▎▎▎▎▎▎▍▌▍ ▎▌▋▏  ▏▎▍▍▏▏▌    ▍▌▋▋▋▊▋▌▎  ▏▏  ▍▊▍▎▏▌▎▏▏▏▏▏▏▎▎▎▍▎▎▎▎▎▍▎▎▍▌▋▍    \\r                                                  ▏▎▌ ▏▎▎▎▎▎▍▎▎▎▎▎▎▎▎▎▎▌▌▎ ▎▌▉▋▌▌▌▋▋▍▏▎▌▌▍▎▍▍▌▌▋▋▋▌▏       ▍▉  ▏▋▎▏▏▎▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▌▋▍    \\r                                                  ▏▎▌ ▏▎▍▏▎▎▎▎▎▎▎▎▎▎▎▎▎▌▌▎ ▎▌▉▊▋▋▊▊▋▍▏▏▍▉▋▋▋▋▋▋▋▋▋▊▏      ▎▎▎ ▎▍▋▎▏▏▏▏▏▏▎▎▎▍▎▎▎▎▎▎▎▎▎▍▌▍    \\r                                                  ▏▍▌ ▏▎▍▎▎▎▎▎▎▎▎▎▍▎▎▎▎▋▍  ▏▍▊▋▋▋▋▋▋▌▏▏▏▉▊▋▋▋▋▋▋▋▋▊▏      ▏▏  ▎▍▋▎▏▏▎▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▌▍▎    \\r                                                  ▏▍▌▏▏▎▍▎▎▎▎▎▎▎▎▎▎▎▎▎▎▋▍  ▎▍▊▋▌▌▋▋▋▋▏  ▊▋▌▌▌▌▌▋▋▋▊▏          ▎▍▋▎▏▏▏▏▏▏▎▎▎▎▎▎▎▎▎▍▎▎▍▌▎▏    \\r                                                   ▎▋ ▏▎▍▎▎▏▎▎▎▍▎▎▍▎▎▎▌▌▍  ▏▍▊▋▋▋▌▋▋▋▏  ▊▋▌▌▋▋▋▋▋▋▊▏          ▏▍▋▎▏▏▏▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▍▌▏     \\r                                                   ▎▋▏▏▏▍▎▎▏▏▎▎▍▍▎▎▎▎▍▊▎▏  ▏▍▊▋▋▌▋▋▋▋▏  ▊▋▋▌▋▋▌▋▋▋▉▏          ▏▎▋▎▏▏▏▏▏▏▎▍▎▎▎▎▎▎▎▎▎▎▍▌▏     \\r                                                   ▎▋▎▏▏▎▍▎▏▏▏▎▍▎▎▎▎▍▌▊▏   ▏▎▊▋▋▋▌▋▋▊▏  ▊▋▋▋▌▌▋▋▋▋▊▎           ▏▋▍▎▏▏▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▍▋▏     \\r                                                   ▎▌▍▎▏▎▍▎▎▏▏▎▎▎▎▎▎▋▋▏    ▏▎▊▋▋▌▋▋▋▊▏  ▊▋▋▌▋▋▌▋▋▋▉▏           ▏▋▍▎▎▏▏▏▏▎▎▎▎▎▎▍▎▎▎▎▎▍▋▏     \\r                                                   ▏▎▌▎▏▎▍▍▎▏▏▏▎▎▎▎▋▋▌      ▎▉▋▋▋▌▋▋▊▏  ▊▋▋▌▌▌▌▋▋▋▊▏           ▏▋▌▍▎▏▏▏▎▎▎▎▎▎▎▎▎▎▎▎▎▍▋▏     \\r                                                     ▋▍▏▎▎▍▍▎▎▎▎▎▎▍▊▎       ▎▊▋▋▌▋▋▋▊▏  ▊▋▋▌▋▋▌▋▋▋▊▏           ▏▍▌▌▎▏▏▏▎▍▎▎▎▎▎▎▎▎▎▎▍▍▌▏     \\r                                                     ▌▌▎▏▎▍▎▎▎▎▎▎▍▊         ▏▊▋▋▋▌▋▋▊▏  ▋▋▋▋▌▋▋▋▋▋▊▏             ▋▋▎▏▏▏▎▍▍▎▎▎▎▎▎▎▎▎▍▍▌▏     \\r                                                     ▎▌▌▏▎▎▍▎▎▎▎▌▌▌         ▏▊▋▋▌▌▋▋▊▎▏ ▋▋▋▋▋▋▌▌▌▋▊▏             ▌▌▋▏▏▏▎▍▍▎▎▎▎▎▎▎▎▎▍▌▎▏     \\r                                                      ▍▋▎▎▎▎▎▎▎▎▋▌          ▏▉▋▋▋▌▋▋▋▍▏ ▋▋▋▋▌▌▌▌▋▋▊▏              ▍▊▎▏▏▎▎▎▍▎▎▎▎▎▎▎▎▌▌▏      \\r                                                      ▎▍▋▎▎▎▎▎▎▌▋▍          ▏▊▋▋▌▋▋▋▊▍▎ ▊▋▋▌▋▌▌▋▋▋▊▏              ▎▋▋▍▎▎▍▍▎▍▎▎▎▎▎▎▎▌▌       \\r                                                       ▏▋▌▍▎▎▎▎▋▍▎          ▏▋▋▋▋▌▌▋▋▌▎ ▊▋▋▌▌▋▋▋▋▊▋▏                ▊▌▎▎▎▎▎▎▎▎▎▎▎▎▍▌▌       \\r                                                        ▏▋▌▎▎▎▍▋▏           ▏▌▊▋▌▌▌▋▋▌▍▏▋▋▋▌▋▋▌▋▋▊▌▏                ▌▌▌▎▎▎▎▎▎▎▎▎▎▎▌▌▍       \\r                                                         ▍▌▋▎▎▎▋▏           ▏▍▋▋▋▌▌▋▋▌▍▎▋▋▌▋▌▌▋▋▊▊▍▏                 ▌▋▎▎▎▎▎▎▎▎▎▎▎▊▍        \\r                                                          ▎▌▋▌▍▌▏            ▏▋▊▌▋▌▌▋▌▌▍▋▋▋▌▌▌▌▋▊▋▏                  ▎▌▋▎▎▎▎▎▎▎▎▎▌▋▎        \\r                                                            ▌▋▊▊▏             ▋▊▋▌▋▋▋▋▌▍▋▋▌▋▋▋▋▋▊▋                    ▏▊▍▎▎▎▎▎▎▎▌▊▏         \\r                                                             ▏▎▊▎▏            ▋▊▋▋▋▋▋▌▌▌▋▋▋▌▌▌▌▊▋▌                    ▏▍▌▌▎▎▎▎▎▌▌▌          \\r                                                                              ▍▋▊▌▋▋▋▋▍▎▊▋▋▋▌▋▋▉▌▎                     ▏▋▌▎▎▎▎▍▋▌           \\r                                                                               ▍▉▋▋▋▉▌▎ ▊▋▋▌▌▋▊▊▍                       ▋▌▎▎▎▍▊▏            \\r                                                                               ▏▍▉▉▉▉▎  ▌▊▉▋▊▉█                         ▌▍▏▍▋▋▎▏            \\r                                                                                 ▌▌▌▏    ▌▉▉▉▋▎                         ▌▌▌▊▍▏              \\r                                                                                           ▎                           ▎▊▊▋                 \\r                                                                                                                      ▏▎▍▎                  \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \",\"t\":0,\"b\":false,\"e\":1.9,\"p\":{\"y\":1000,\"x\":50},\"c\":7,\"f\":1.9,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,10,10,10,5,false,false]],\"b\":true},\"r\":10}"},{"c":"24.1,13056,7,1,253165,1386302941","m":"{\"z\":[{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3}],\"n\":\"二                                                                                                                                           \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                               ▏▎▉▌▎        ▏                                               \\r                                                                               ▎▋▏▍▋▌▎▍▌▍▌▌▍▌▌▌▌▍▎                                          \\r                                                                              ▎▌▋▏▎▌▋▍▎▎▎▏▏▏▏▏▎▎▍▌▋▎▏   ▏▋▊▌                                \\r                                                                            ▏▌▊▊▊▉▌▎▏▏▏▏▏▏▏▏▏▏▏▏▏▏▎▌▌▍ ▎▍▌▌▋▊                               \\r                                                                           ▎▌▉▋▌▍▍▎▏▏▏▏▏▏▏▏▏▏▏▎▏▏▏▏ ▏▍▋▋▋▌▍▋█▎▏                             \\r                                                                           ▋▉▍▏▏  ▏▏▏▏▏▏▏▎▎▏▎▏▏▎▏▏▏ ▏▍▋▋▋▎▏▎▍▊▍                             \\r                                                                          ▋▋▌  ▏▎▏▏▏▏▏▏▏▎▎▍▏▏▏▎▏▏▏ ▍▌▌▌▌▍    ▍▋▌                            \\r                                                                          ▊▍▏▏▍▍▎▏▏▏▏▏▏▏▎▎▎▎▎▏▏▏▏▎▎▌▌▌▍▌▌▏▏▏▏▏▍▋▍▏                          \\r                                                                        ▎▌▍▎▎▋▍▎▏▏▏▏▏▏▎▍▎▏▏▌▋▍▏▏▏▎▎▌▌▋▍▍▍▍▏▏▏▏▎▍▋▏                          \\r                                                                       ▏▍▋▏▌▋▌▏▏▏▏▏▎▍▍▌▋▏▏▏▍▎▍▌ ▏▏▎▏▍▋▌▎▎▌▏▏▏▏▏▎▋▏                          \\r                                                                       ▌▌▎▋▋▌▏▏▏▏▏▍▌▎▏▏▍▎▏▎▍▏▏▍▌▎▏▏ ▏▍▋▍▎▋▎▏▏▏▏▏▍▌▎                         \\r                                                                       ▍▌▋▊▍▏ ▏▏▏▌▍▏  ▎▌▎▎▎▍▏  ▊▌▎▏▏▏▏▌▌▌▌▍▏ ▏▏▏▎▌▍                         \\r                                                                     ▏▍▌▋▉▍▏ ▏▏▎▋▍▏   ▎▌▎▎▎▍▏  ▏▍▌▏▏▏ ▎▌▋▋▍▎ ▏▏▏▏▌▍                         \\r               ▌▌▎                                                   ▏▋▊▊▊ ▏▏▏▍▌▌     ▎▌▍▍▍▍▏   ▎▌▍▏▏▏ ▎▌▊▊▌ ▏▏▏▏▍▍▍                        \\r               ▍▌▍▌▎                                                ▏▎▊▊▋▍ ▏▏▎▌▍      ▏▍▌▍▎▍▏    ▏▌▎▏▏▏▏▎▋▋▌▏▏▏▏▏▎▍▋                        \\r              ▏▎▎▏▎▍▍▏                                              ▍▋▊▌▍▏▏▏▎▌▏  ▏    ▏▏▋▍▍▌▏    ▏▌▎▎▏▏▏▏▏▎▍▍▏▏▏▏▏▎▋                        \\r             ▏▎▍▎▏▏▎▎▌▍▎                                            ▌▋▌▌▎ ▏▎▌▊▍▎▍       ▋▌▍▊▎▏    ▏▍▎▏▎▏▏▏▏▎▌▏▏▏▏▏▎▍▍▏                      \\r             ▏▍▍▍▎▏▏▏▏▍▍▌▏                                          ▌▋▌▍▎▏▌▋▋▎▏         ▋▌▌▌▏▏▏▍▏  ▍▍▏▏▏▎▏▏▎▌▎▏▏▏▏▏▎▋▎                      \\r               ▎▎▍▎▏▏▏▏▏▎▌▍▎                                       ▏▍▌▌▎▏▏▋▋▌           ▍▌▌▌▏   ▏▏▎▌▌▏▏▏▏▏▏▎▌▎▏▏▏▏▏▏▋▎                      \\r                  ▍▍▎▏▏▏▏▏▎▍▍▏                                     ▎▍▌▌▎▏▏▌▎▏ ▎▎         ▍▋▌▏      ▌▋▋▎▏▏▏▏▎▌▍▎▏▎▏▏▏▌▍▎                     \\r       ▏▏▏▏▏▏▏▏▏▏ ▍▌▋▌▍▎▎▏▏▏▎▌▌▍                                   ▍▍▍▌▎▏▏▌▍▍▌▌▌▌        ▍▌▊▏  ▋▌▍  ▎▋▎▎▎▏ ▎▋▌▎▏▏▎▏ ▍▌▌                     \\r     ▏▎▋▌▍▍▌▍▍▍▍▍▍▎▎▎▍▍▍▍▌▍▎▏▎▎▎▏▎▎▎▏                              ▌▍▍▌▎▏▎▌▋▌  ▏▍         ▏▊▎▏▍▎▎▎▎ ▎▌▏▎▎▏ ▎▋▊▎ ▎▎▏▏▏▌▌                     \\r      ▏▍▎▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▎▎▍▌▍▏       ▏▎▎▏                        ▏▎▎▍▍▍▎▎▎▍▌▌  ▏▎         ▏▋▌▌▌  ▏▍▏▎▌▏▏▏▏▏▎▋▋▍▏▏▎▎▏▏▍▌▎▏                   \\r      ▏▍▎▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▎▌▏          ▏▎▍▏                     ▎▌▏▍▌▍▎▎▍▎▎▎▍▏▎▌           ▌▋▌  ▏▍▏▎▌▏▎▎▏▏▎▌▋▍▏ ▎▎▏▏▎▍▌▏                   \\r      ▏▌▎▎▎▎▎▎▎▎▎▎▎▍▍▍▍▍▍▍▌▌▍▌▌▍           ▎▍▍                   ▎▌ ▍▌▍▎▎▌▎▏▏▌▋▌▎            ▎▌▌▋▌▏ ▎▌▎▎▎▏▏▍▊▉▌▎ ▎▎▎▏▏▎▋▏                   \\r      ▏▌▌▍▍▎▎▍▋▌▌▍▍▌▌▌▌▌▋▌▌▌▌▍▍▎▏▏▏▏▎▏▏       ▎▎▎        ▏▎▋▊▊▋▎▎▎▎▏▍▌▍▎▍▋▎▏                   ▌▌▎  ▎▌▎▎▎▏▎▍▊▉▋▍ ▏▎▎▏▏▎▋▎▏                  \\r       ▎▏▏ ▏▎▍▌▌▍▍▍▍▎▎▏▏              ▏▎▎▍▎▏▏   ▏▍▏▏   ▏▎▊▉▊▊▊▊▉▋▍ ▏▌▋▍▎▍▍                          ▎▌▍▎▏▏▎▌▊▉▋▌ ▏▎▎▏▏▏▌▌▎                  \\r         ▏▍▋▌▎▏▏▏▏                         ▎▍▌▏▏  ▏▎▎  ▎▉▊▋▋▌▌▋▋▋▍ ▏▍▌▍▎▎▏                          ▎▌▌▎▏▏▌▋▊▊▋▌ ▏▎▍▏▏▏▎▋▍                  \\r         ▏▎                                   ▍▍▎    ▏▍▋▊▋▋▌▋▌▌▋▋▌▍ ▍▌▌▎▏▏       ▌▌▋▌▍▎▎▏           ▎▌▌▎▏▎▌▋▊▊▊▋▏▏▎▍▎▏▏▎▌▍▏                 \\r                                                ▏▍▏  ▍▋▊▋▌▌▋▌▋▋▌▋▋▋▎▍▌▌▏▏▎       ▋▍▎▍▍▍▍▋▌▎         ▎▌▌▎▏▌▋▋▋▊▋▋▎▏▏▍▎▏▏▏▌▌▍                 \\r                                                  ▏▎▎▌▋▋▌▌▌▌▌▌▌▌▌▋▋▌▌▍▌▎▎▏       ▌▎     ▏▎▎         ▏▎▌▍▍▋▋▋▊▌▌▍▎▏▏▎▍▎▏▏▎▌▋                 \\r                                                    ▏▊▋▋▌▌▌▋▌▌▋▌▋▋▌▋▌▌▌▎▏        ▌▎     ▏▎▎         ▏▍▋▋▋▋▋▊▉▊▌▍▍▏▏▎▍▎▏▏▎▍▋                 \\r                                                   ▏▎▊▋▋▌▋▋▋▋▌▌▋▌▌▋▋▋▋▋▍▍▍       ▍▏     ▎▎▎         ▎▌▊▋▌▍▋▋▌▍▏▏▍▏▏▏▍▎▏▏▏▍▋▎▏               \\r                                                   ▎▋▊▋▋▋▋▋▋▋▌▌▌▋▋▌▌▋▋▊▍▍▋▌▎    ▏▍▏     ▏▎▎         ▎▌▍▍▍▍▍▎   ▏▌▎▏▏▍▎▎▏▏▎▍▌▎               \\r                                                   ▎▋▊▋▋▌▋▋▋▋▌▌▋▋▋▋▌▌▋▋▌▍▍▋▎   ▏▎▏▏     ▏▏▏        ▎▎▎▍▍▌▋▏    ▏▌▎▏▏▍▎▎▏▏▎▍▋▎               \\r                                                   ▏▎▉▋▋▋▋▋▋▋▋▋▌▋▌▌▋▌▌▋▌▌▌▌▎▏  ▏▎▏      ▎▎▎        ▍▍▎▌▌▌▌▏    ▏▌▍▎▏▍▎▎▏▏▏▎▋▎               \\r                                                     ▉▊▋▌▋▋▋▋▋▌▌▌▌▌▌▋▋▌▋▋▌▋▋▌▏ ▏▎       ▎▎▏        ▍▌▍▋▋▌      ▏▍▍▎ ▍▍▎▏▏▏▎▌▍▎              \\r                                                     ▉▊▊▋▋▋▋▋▋▋▋▋▌▌▌▌▌▌▋▋▋▋▊▊▋▏▏▎       ▎▏▏       ▎▍▌▌▋▍▏      ▏▍▍▎ ▎▎▎▏▏▏▏▍▌▌              \\r                                                     ▎▋▉▊▊▋▋▋▋▋▋▋▋▋▌▌▋▌▋▋▋▋▋▋▊▎▎▌       ▏▏      ▏▍▋▋▌▌▌▎       ▏▎▌▍ ▎▍▍▏▏▏▏▎▌▌              \\r                                                       ▏▌▋▋▊▊▋▋▋▋▋▋▋▌▌▋▌▌▋▋▋▋▊▏▎▌▍▎▏▏   ▏▏   ▏▎▏▌▋▊▌▌▌▍▎        ▏▌▍ ▎▎▍▏▏▏▏▎▍▌▎             \\r                                                          ▎▋▋▋▋▋▋▋▋▌▋▌▌▋▋▋▋▌▌▎▎▏▎▋▋▋▋▋▌▌▋▌▍▍▊▉▉ ▎▍  ▎▌▉▍        ▏▌▍ ▎▎▍▎▏▏▏▏▍▌▍▏            \\r                                                          ▏▍ ▎▍▌▋▋▋▋▋▋▋▋▋▋▌▎  ▍▎      ▎▊▊▊▋▌▊▋▍▊▌▎    ▋▌▍        ▌▍▏▏▎▍▎▏▏▏▏▎▍▋▏            \\r                                                         ▎▍▎ ▏▏▎▎▍▌▋▋▊▋▋▋▋     ▎▌    ▍▌▋▎▏ ▎▌▌▍▋▌▍               ▌▌▏▏▎▍▎▏▏▏▏▎▍▋▏            \\r                                                         ▌▍▎▏▎▎▎▎▎▏▎▍▌▋▊▋▋      ▏▌▍▌▉▋▌▏  ▏▌▋▋▌  ▏▌▏             ▌▌▏▏▎▍▎▏▏▏▏▎▎▋▎▏           \\r                                                         ▌▍▏▏▎▎▎▎▎▎▎▏▏▏▌▋▊▎▏     ▌▌▌▌▌▎ ▏▎▌▋▊▌▎    ▍▍            ▋▌▏▏▎▎▍▏▏▎▏▎▎▌▌▎           \\r                                                        ▏▍▎▏▏▎▍▎▎▎▎▎▎▎▎▌▍▎▍▍▍  ▏▎▋▌▍▍▋▍  ▍▋▎▋▍     ▏▎▎           ▋▌▏▏▎▍▍▎▏▏▎▎▎▍▌▍           \\r                                                       ▏▍▍▎ ▎▎▎▍▎▎▎▎▎▎▎▋▌  ▎▎▏ ▎▌▋▎▏▎▋▌▏▍▌▍▏▌▍      ▏▍           ▋▌▏▏▎▎▍▎▏▏▎▎▎▎▋▍           \\r                                                       ▏▌▎▏▏▎▎▍▎▎▎▎▎▎▎▎▋▌▏    ▍▌▋▌▎ ▏▌▌▍▌▎▏ ▌▍   ▏▎▏▏▍           ▋▌▏▏▎▎▍▎▏▏▎▎▎▎▌▍▏          \\r                                                       ▏▌▎▏▏▍▎▎▎▎▎▎▎▎▎▎▋▌     ▌▌▍▌▌▍▌▌▌▋▌▎  ▌▍  ▍▋▍▏▏▎▏          ▋▌▏▏▏▎▍▎▏▏▎▎▎▎▌▌▍          \\r                                                      ▏▏▌▏▏▎▎▎▎▎▎▎▎▎▎▎▎▋▌▏  ▏▌▎▎▎▌▍▍▌▎▌▉▍▏  ▌▍▎     ▎▋▎▏         ▋▌▏▏▏▎▍▎▎▏▎▎▎▎▍▌▋          \\r                                                      ▎▍▍▏▏▎▍▎▎▍▎▎▎▎▎▎▎▋▌▏  ▏▌▏▎▌▎▎▎▍▏▍▋▏▏  ▏▍▋▎▏  ▍▌▊▍▏         ▋▌▏▏▎▎▎▎▎▏▏▎▎▎▎▌▋          \\r                                                      ▎▍▎▏▏▎▎▎▎▎▎▎▎▎▎▎▎▋▌▏ ▎▍▏▎▍▌▏▏▎▌▏▏▎▏▏▏▏ ▎▌▊▋▌▋▊▊▊▌▎         ▋▌▏▏▎▎▎▎▎▏▏▎▎▎▎▍▋▏         \\r                                                      ▍▌▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▋▌  ▎▍ ▍▍▎▏▎▎▌▏  ▎▎▎▍▏▎▍▊▋▋▋▊▊▊▊▍         ▋▌▏▏▎▎▎▎▎▏▏▎▎▎▎▍▌▍▏        \\r                                                     ▏▍▍▏▏▎▍▍▎▎▎▎▎▎▎▎▎▎▋▌▏▏▏▎▎▌▍ ▏▏▎▌▏▏▏  ▏▍▎▎▎▊▋▋▋▋▋▋▊▍        ▏▋▌▏▏▎▍▎▎▎▏▏▎▎▎▎▍▌▌▎        \\r                                                     ▎▍▍▏▏▎▍▎▎▎▎▎▎▍▎▎▎▎▌▌▎▎▏▏▍▌▍▏ ▎▍▍▏▏▏   ▎▏▎▍▊▋▋▋▋▋▋▉▍▏       ▏▋▌ ▏▎▍▎▏▏▎▏▏▎▎▎▎▍▋▎        \\r                                                     ▌▍▎▏▏▎▍▎▎▎▎▎▎▎▎▎▎▎▍▌▋▏▏▎▌▌▍▏ ▎▌▍▏ ▏▏▎▎▎▏▎▎▊▋▋▋▋▋▋▊▋▍      ▏▎▋▌▏▏▎▍▏▏▏▏▏▏▎▎▎▎▎▋▎        \\r                                                     ▌▍▎▏▎▎▍▎▎▎▎▎▎▎▎▎▎▏▍▋▉▎▎▍▋▍▎ ▏▍▌▌▎▏▎▎▎▎▎▏▎▎▊▋▋▌▋▋▋▊▋▌      ▏▎▋▌▏▏▎▎▎▏▏▏▏▏▎▎▎▎▎▋▎▏       \\r                                                     ▋▎▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▎▌▋▊▎▍▍▎▏▏▏▎▍▌▍▎▎▎▎▎▎▎▏▏▎▊▋▋▋▌▌▌▋▊▋      ▏▍▋▍▏▏▎▎▏▏▏▏▏▏▏▎▎▎▎▌▍▎       \\r                                                    ▏▌▎▏▏▎▎▎▍▎▎▎▎▎▎▎▍▌▋▌▍▏▏▍▌▎▎▎▎▎▌▋▎▏▏▎▎▎▎▎▏▏▍▊▋▋▋▌▌▌▋▊▋▏     ▏▌▋▍ ▏▎▎▏▏▏▏▏▏▏▎▎▎▎▍▌▍       \\r                                                   ▏▎▍▎▏▏▎▎▍▎▎▎▎▎▎▎▌▋▌▎   ▎▌▌▎▎▎▏▌▋▌▏  ▏▎▎▎▎▏▎▍▊▋▋▋▌▌▋▋▋▊▌▏    ▏▋▌▍▏▏▎▎▏▎▎▏▏▏▏▎▎▎▎▍▌▌       \\r                                                   ▏▍▎▏▏▏▎▍▎▎▎▎▎▎▎▎▋▌▎    ▎▍▌▍▎▎▎▊▌▎    ▏▏▏▎▏▎▍▊▋▋▋▋▋▋▋▋▋▊▏    ▏▋▌▎ ▏▏▏▏▎▎▎▏▏▏▎▎▎▎▎▌▌       \\r                                                   ▎▌▎▏▏▎▎▍▍▎▎▎▎▎▎▏▌▌▌ ▏▏▏ ▍▌▎▏▍▌▌▎ ▏    ▏▏▏▏▎▌▊▋▋▋▋▋▋▋▋▋▊▏    ▏▊▍▎▏▏▏▏▏▎▎▏▏▏▏▎▎▎▎▎▌▌       \\r                                                   ▎▌▏▏▏▎▎▎▎▎▎▎▎▎▎▎▌▋▋  ▏  ▎▍▎▎▌▊  ▏▏▍▎▏   ▏▏▎▌▋▋▋▌▌▌▌▌▋▋▊▌▎   ▏▊▍▎ ▏▏▏▏▎▎▎▏▏▏▎▎▎▎▎▌▌▎      \\r                                                   ▎▌▏▏▏▎▎▎▍▎▎▎▎▎▍▌▋▊▋▎   ▏▍▌▏▌▋▊▎▏ ▏▎▍▍▏▏▏ ▏▎▋▊▋▌▌▍▍▍▌▋▋▋▋▍   ▏▉▍▏▏▏▏▏▏▎▎▎▏▏▏▎▎▎▎▎▍▌▍▏     \\r                                                   ▎▌▏▏▏▎▎▎▎▍▎▎▎▍▌▌▎▋▊▍▏▏▏▋▋▋▍▋▋▋▌▎  ▏▎▍▍▎▎▏ ▎▋▋▋▋▌▌▍▍▌▋▋▋▊▌   ▎▊▎▏▏▏▏▏▏▎▎▍▏▏▏▏▎▎▎▎▍▌▌▏     \\r                                                  ▏▎▌▏▏▏▎▎▎▎▎▎▎▎▎▍▌▏▌▋▋▍▍▋▋▋▋▋▌▌▍▊▌▎ ▏▏▎▏▎▎▏ ▎▋▋▋▋▌▌▌▍▌▌▋▋▊▋▎ ▏▎▊▎▏▏▏▏▏▏▎▎▍▏▏▏▏▎▎▎▎▍▍▌▏     \\r                                                  ▎▍▍▏▏▎▎▏▎▎▍▎▎▎▎▍▌▎▎▍▋▋▋▌▌▋▋▋▍▍▍▋▌▌  ▏▏▏▏   ▎▊▋▋▋▌▋▌▍▌▌▋▋▋▋▋ ▏▍▋▎▏▏▎▏▏▏▏▎▍▎▏▏▏▎▎▎▎▎▍▋▏     \\r                                                  ▍▍▎▏▎▎▎▏▎▍▎▎▎▎▎▎▍▌▍▍▋▌▌▌▌▌▌▍▌▍▍▌▋▋▎  ▏    ▎▌▋▋▋▋▌▌▌▍▍▌▋▋▋▋▊ ▎▍▌▏▏▏▏▏▏▏▏▎▍▎▏▏▏▎▎▎▎▎▍▋▏     \\r                                                  ▍▍▎▎▎▎▏▏▎▍▎▎▎▎▎▎▎▌▋▋▊▋▋▌▌▌▌▌▌▌▌▍▌▋▌▏  ▏▎▍▌▋▋▋▋▋▋▌▌▌▍▌▌▌▋▋▋▊▎▌▌▍▏▏▏▎▏▏▏▏▎▍▎▎▏▏▎▍▎▎▎▍▋▏     \\r                                                  ▍▍▎▌▎▏▏▏▎▍▎▎▎▎▎▎▏▍▋▋▍▋▋▋▌▋▋▌▌▌▋▌▌▌▋▍▎▎▌▋▋▌▌▋▋▋▋▋▋▌▌▌▍▌▋▋▋▋▋▋▋▌▎▏▏▎▏▏▏▏▏▎▍▍▎▏▏▎▎▍▎▎▍▋▎▏    \\r                                                  ▍▍▍▍▎▏▏▏▎▎▍▎▎▎▎▎▎▍▌▌ ▍▌▋▋▋▋▌▍▍▋▋▋▋▋▋▋▌▋▋▌▌▌▋▋▋▋▋▌▌▌▌▌▌▌▋▋▋▋▌▌▌▏▏▏▏▎▏▏▏▏▎▍▍▎▏▏▎▎▎▎▎▎▌▎▏    \\r                                                  ▍▌▌▍▏▏▏▎▎▍▎▎▎▎▎▎▎▎▍▌▍▏▎▌▋▋▋▌▌▌▌▋▋▋▍▌▌▋▌▋▋▋▋▋▋▋▋▋▌▌▌▌▍▌▌▋▋▋▋▍▌▌▏▏▏▎▏▎▎▏▏▎▎▍▎▏▏▎▎▍▎▎▎▌▍▎    \\r                                                  ▍▌▋▏▏▏▏▎▎▍▍▎▎▎▎▎▎▎▎▍▌▎▎▎▊▋▋▋▋▌▌▌▋▋▍▌▌▌▌▌▋▋▋▋▋▌▋▋▌▌▌▍▌▌▌▋▊▋▍▎▍▌▏▏▏▏▎▏▏▏▏▎▎▍▎▎▏▎▎▎▍▍▍▌▍▎    \\r                                                  ▌▋▋▏▏▏▏▏▎▍▎▎▎▎▎▎▎▎▎▎▍▌▋▋▌▍▍▋▋▋▋▋▋▋▋▋▋▌▍▌▋▋▌▌▋▋▋▌▋▌▌▌▌▋▋▊▊▌ ▎▍▍▏▏▏▏▏▏▏▏▏▎▎▍▎▎▏▎▎▎▎▍▍▍▍▎    \\r                                                  ▋▋▌ ▏▏▏▎▎▎▎▎▎▎▎▎▎▎▎▎▏▎▌▉▌▏ ▏▍▌▋▋▋▋▋▋▋▋▌▋▋▌▏▏▍▊▊▋▋▋▋▋▋▊▊▊▌▎ ▌▍▎▏▎▎▏▏▏▏▏▏▎▎▍▎▎▏▎▎▎▎▍▌▍▍▎    \\r                                                  ▋▋▎▏▏▏▎▎▎▍▎▎▎▎▎▎▎▎▎▎▎▎▌▋▍▍▎  ▏▏▋▋▋▋▌▌▌▍▌▌▋▍▎▎▌▋▋▋▊▊▊▋▊▋▍▏  ▋▍▎▎▎▎▏▏▏▏▏▏▎▎▍▎▎▏▎▎▎▏▍▌▌▌▎    \\r                                                  ▌▌▎ ▏▎▎▎▎▎▍▎▎▎▎▎▎▎▎▎▎▍▍▍ ▍▌▋▎▏▏▋▌▍    ▎▎▍▊▋▍   ▏▌▌▌▌▌▎▏▋▍▎▏▌▍▎▎▎▏▏▎▏▏▏▏▎▎▍▍▎▏▎▎▎▎▍▌▋▌▎    \\r                                                  ▌▌▍▏▏▎▎▏▎▍▎▎▎▎▎▎▎▎▎▎▎▍▌▌ ▏▏▏▎▍▌▉▌▎   ▏▍▌▌▋▏   ▎▍▋▏  ▍▏▏▍▏▏▏▌▌▌▌▏▏▏▏▏▏▏▏▎▎▍▎▎▏▎▎▍▎▎▍▋▌▍    \\r                                                  ▍▍▍ ▏▎▎▎▎▎▍▎▎▍▎▎▎▎▎▎▎▍▌▌ ▏▏    ▌▌▌▌▌▌▌▎▏ ▏▎▎▏▌▊▉▊▍▎▏▍▌▌  ▏▍▋▋▋▌▎▏▏▏▏▏▏▏▎▎▎▎▎▎▎▎▎▎▎▍▊▋▍    \\r                                                  ▏▎▍▏▏▎▍▏▎▍▎▎▎▎▎▎▎▎▎▎▎▍▌▍ ▎▌▋▏  ▏▎▍▍▏▏▌    ▍▌▋▋▋▊▋▌▎  ▏▏  ▍▊▍▎▏▌▎▏▏▏▏▏▏▎▎▎▍▎▎▎▎▎▍▎▎▍▌▋▍    \\r                                                  ▏▎▌ ▏▎▎▎▎▎▍▎▎▎▎▎▎▎▎▎▎▌▌▎ ▎▌▉▋▌▌▌▋▋▍▏▎▌▌▍▎▍▍▌▌▋▋▋▌▏       ▍▉  ▏▋▎▏▏▎▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▌▋▍    \\r                                                  ▏▎▌ ▏▎▍▏▎▎▎▎▎▎▎▎▎▎▎▎▎▌▌▎ ▎▌▉▊▋▋▊▊▋▍▏▏▍▉▋▋▋▋▋▋▋▋▋▊▏      ▎▎▎ ▎▍▋▎▏▏▏▏▏▏▎▎▎▍▎▎▎▎▎▎▎▎▎▍▌▍    \\r                                                  ▏▍▌ ▏▎▍▎▎▎▎▎▎▎▎▎▍▎▎▎▎▋▍  ▏▍▊▋▋▋▋▋▋▌▏▏▏▉▊▋▋▋▋▋▋▋▋▊▏      ▏▏  ▎▍▋▎▏▏▎▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▌▍▎    \\r                                                  ▏▍▌▏▏▎▍▎▎▎▎▎▎▎▎▎▎▎▎▎▎▋▍  ▎▍▊▋▌▌▋▋▋▋▏  ▊▋▌▌▌▌▌▋▋▋▊▏          ▎▍▋▎▏▏▏▏▏▏▎▎▎▎▎▎▎▎▎▍▎▎▍▌▎▏    \\r                                                   ▎▋ ▏▎▍▎▎▏▎▎▎▍▎▎▍▎▎▎▌▌▍  ▏▍▊▋▋▋▌▋▋▋▏  ▊▋▌▌▋▋▋▋▋▋▊▏          ▏▍▋▎▏▏▏▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▍▌▏     \\r                                                   ▎▋▏▏▏▍▎▎▏▏▎▎▍▍▎▎▎▎▍▊▎▏  ▏▍▊▋▋▌▋▋▋▋▏  ▊▋▋▌▋▋▌▋▋▋▉▏          ▏▎▋▎▏▏▏▏▏▏▎▍▎▎▎▎▎▎▎▎▎▎▍▌▏     \\r                                                   ▎▋▎▏▏▎▍▎▏▏▏▎▍▎▎▎▎▍▌▊▏   ▏▎▊▋▋▋▌▋▋▊▏  ▊▋▋▋▌▌▋▋▋▋▊▎           ▏▋▍▎▏▏▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▍▋▏     \\r                                                   ▎▌▍▎▏▎▍▎▎▏▏▎▎▎▎▎▎▋▋▏    ▏▎▊▋▋▌▋▋▋▊▏  ▊▋▋▌▋▋▌▋▋▋▉▏           ▏▋▍▎▎▏▏▏▏▎▎▎▎▎▎▍▎▎▎▎▎▍▋▏     \\r                                                   ▏▎▌▎▏▎▍▍▎▏▏▏▎▎▎▎▋▋▌      ▎▉▋▋▋▌▋▋▊▏  ▊▋▋▌▌▌▌▋▋▋▊▏           ▏▋▌▍▎▏▏▏▎▎▎▎▎▎▎▎▎▎▎▎▎▍▋▏     \\r                                                     ▋▍▏▎▎▍▍▎▎▎▎▎▎▍▊▎       ▎▊▋▋▌▋▋▋▊▏  ▊▋▋▌▋▋▌▋▋▋▊▏           ▏▍▌▌▎▏▏▏▎▍▎▎▎▎▎▎▎▎▎▎▍▍▌▏     \\r                                                     ▌▌▎▏▎▍▎▎▎▎▎▎▍▊         ▏▊▋▋▋▌▋▋▊▏  ▋▋▋▋▌▋▋▋▋▋▊▏             ▋▋▎▏▏▏▎▍▍▎▎▎▎▎▎▎▎▎▍▍▌▏     \\r                                                     ▎▌▌▏▎▎▍▎▎▎▎▌▌▌         ▏▊▋▋▌▌▋▋▊▎▏ ▋▋▋▋▋▋▌▌▌▋▊▏             ▌▌▋▏▏▏▎▍▍▎▎▎▎▎▎▎▎▎▍▌▎▏     \\r                                                      ▍▋▎▎▎▎▎▎▎▎▋▌          ▏▉▋▋▋▌▋▋▋▍▏ ▋▋▋▋▌▌▌▌▋▋▊▏              ▍▊▎▏▏▎▎▎▍▎▎▎▎▎▎▎▎▌▌▏      \\r                                                      ▎▍▋▎▎▎▎▎▎▌▋▍          ▏▊▋▋▌▋▋▋▊▍▎ ▊▋▋▌▋▌▌▋▋▋▊▏              ▎▋▋▍▎▎▍▍▎▍▎▎▎▎▎▎▎▌▌       \\r                                                       ▏▋▌▍▎▎▎▎▋▍▎          ▏▋▋▋▋▌▌▋▋▌▎ ▊▋▋▌▌▋▋▋▋▊▋▏                ▊▌▎▎▎▎▎▎▎▎▎▎▎▎▍▌▌       \\r                                                        ▏▋▌▎▎▎▍▋▏           ▏▌▊▋▌▌▌▋▋▌▍▏▋▋▋▌▋▋▌▋▋▊▌▏                ▌▌▌▎▎▎▎▎▎▎▎▎▎▎▌▌▍       \\r                                                         ▍▌▋▎▎▎▋▏           ▏▍▋▋▋▌▌▋▋▌▍▎▋▋▌▋▌▌▋▋▊▊▍▏                 ▌▋▎▎▎▎▎▎▎▎▎▎▎▊▍        \\r                                                          ▎▌▋▌▍▌▏            ▏▋▊▌▋▌▌▋▌▌▍▋▋▋▌▌▌▌▋▊▋▏                  ▎▌▋▎▎▎▎▎▎▎▎▎▌▋▎        \\r                                                            ▌▋▊▊▏             ▋▊▋▌▋▋▋▋▌▍▋▋▌▋▋▋▋▋▊▋                    ▏▊▍▎▎▎▎▎▎▎▌▊▏         \\r                                                             ▏▎▊▎▏            ▋▊▋▋▋▋▋▌▌▌▋▋▋▌▌▌▌▊▋▌                    ▏▍▌▌▎▎▎▎▎▌▌▌          \\r                                                                              ▍▋▊▌▋▋▋▋▍▎▊▋▋▋▌▋▋▉▌▎                     ▏▋▌▎▎▎▎▍▋▌           \\r                                                                               ▍▉▋▋▋▉▌▎ ▊▋▋▌▌▋▊▊▍                       ▋▌▎▎▎▍▊▏            \\r                                                                               ▏▍▉▉▉▉▎  ▌▊▉▋▊▉█                         ▌▍▏▍▋▋▎▏            \\r                                                                                 ▌▌▌▏    ▌▉▉▉▋▎                         ▌▌▌▊▍▏              \\r                                                                                           ▎                           ▎▊▊▋                 \\r                                                                                                                      ▏▎▍▎                  \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \",\"t\":0,\"b\":false,\"e\":1.9,\"p\":{\"y\":1000,\"x\":400},\"c\":7,\"f\":1.9,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,10,10,10,5,false,false]],\"b\":true},\"r\":15}"},{"c":"20.5,13056,7,1,253165,1386302940","m":"{\"z\":[{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3}],\"n\":\"一                                                                                                                                           \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                               ▏▎▉▌▎        ▏                                               \\r                                                                               ▎▋▏▍▋▌▎▍▌▍▌▌▍▌▌▌▌▍▎                                          \\r                                                                              ▎▌▋▏▎▌▋▍▎▎▎▏▏▏▏▏▎▎▍▌▋▎▏   ▏▋▊▌                                \\r                                                                            ▏▌▊▊▊▉▌▎▏▏▏▏▏▏▏▏▏▏▏▏▏▏▎▌▌▍ ▎▍▌▌▋▊                               \\r                                                                           ▎▌▉▋▌▍▍▎▏▏▏▏▏▏▏▏▏▏▏▎▏▏▏▏ ▏▍▋▋▋▌▍▋█▎▏                             \\r                                                                           ▋▉▍▏▏  ▏▏▏▏▏▏▏▎▎▏▎▏▏▎▏▏▏ ▏▍▋▋▋▎▏▎▍▊▍                             \\r                                                                          ▋▋▌  ▏▎▏▏▏▏▏▏▏▎▎▍▏▏▏▎▏▏▏ ▍▌▌▌▌▍    ▍▋▌                            \\r                                                                          ▊▍▏▏▍▍▎▏▏▏▏▏▏▏▎▎▎▎▎▏▏▏▏▎▎▌▌▌▍▌▌▏▏▏▏▏▍▋▍▏                          \\r                                                                        ▎▌▍▎▎▋▍▎▏▏▏▏▏▏▎▍▎▏▏▌▋▍▏▏▏▎▎▌▌▋▍▍▍▍▏▏▏▏▎▍▋▏                          \\r                                                                       ▏▍▋▏▌▋▌▏▏▏▏▏▎▍▍▌▋▏▏▏▍▎▍▌ ▏▏▎▏▍▋▌▎▎▌▏▏▏▏▏▎▋▏                          \\r                                                                       ▌▌▎▋▋▌▏▏▏▏▏▍▌▎▏▏▍▎▏▎▍▏▏▍▌▎▏▏ ▏▍▋▍▎▋▎▏▏▏▏▏▍▌▎                         \\r                                                                       ▍▌▋▊▍▏ ▏▏▏▌▍▏  ▎▌▎▎▎▍▏  ▊▌▎▏▏▏▏▌▌▌▌▍▏ ▏▏▏▎▌▍                         \\r                                                                     ▏▍▌▋▉▍▏ ▏▏▎▋▍▏   ▎▌▎▎▎▍▏  ▏▍▌▏▏▏ ▎▌▋▋▍▎ ▏▏▏▏▌▍                         \\r               ▌▌▎                                                   ▏▋▊▊▊ ▏▏▏▍▌▌     ▎▌▍▍▍▍▏   ▎▌▍▏▏▏ ▎▌▊▊▌ ▏▏▏▏▍▍▍                        \\r               ▍▌▍▌▎                                                ▏▎▊▊▋▍ ▏▏▎▌▍      ▏▍▌▍▎▍▏    ▏▌▎▏▏▏▏▎▋▋▌▏▏▏▏▏▎▍▋                        \\r              ▏▎▎▏▎▍▍▏                                              ▍▋▊▌▍▏▏▏▎▌▏  ▏    ▏▏▋▍▍▌▏    ▏▌▎▎▏▏▏▏▏▎▍▍▏▏▏▏▏▎▋                        \\r             ▏▎▍▎▏▏▎▎▌▍▎                                            ▌▋▌▌▎ ▏▎▌▊▍▎▍       ▋▌▍▊▎▏    ▏▍▎▏▎▏▏▏▏▎▌▏▏▏▏▏▎▍▍▏                      \\r             ▏▍▍▍▎▏▏▏▏▍▍▌▏                                          ▌▋▌▍▎▏▌▋▋▎▏         ▋▌▌▌▏▏▏▍▏  ▍▍▏▏▏▎▏▏▎▌▎▏▏▏▏▏▎▋▎                      \\r               ▎▎▍▎▏▏▏▏▏▎▌▍▎                                       ▏▍▌▌▎▏▏▋▋▌           ▍▌▌▌▏   ▏▏▎▌▌▏▏▏▏▏▏▎▌▎▏▏▏▏▏▏▋▎                      \\r                  ▍▍▎▏▏▏▏▏▎▍▍▏                                     ▎▍▌▌▎▏▏▌▎▏ ▎▎         ▍▋▌▏      ▌▋▋▎▏▏▏▏▎▌▍▎▏▎▏▏▏▌▍▎                     \\r       ▏▏▏▏▏▏▏▏▏▏ ▍▌▋▌▍▎▎▏▏▏▎▌▌▍                                   ▍▍▍▌▎▏▏▌▍▍▌▌▌▌        ▍▌▊▏  ▋▌▍  ▎▋▎▎▎▏ ▎▋▌▎▏▏▎▏ ▍▌▌                     \\r     ▏▎▋▌▍▍▌▍▍▍▍▍▍▎▎▎▍▍▍▍▌▍▎▏▎▎▎▏▎▎▎▏                              ▌▍▍▌▎▏▎▌▋▌  ▏▍         ▏▊▎▏▍▎▎▎▎ ▎▌▏▎▎▏ ▎▋▊▎ ▎▎▏▏▏▌▌                     \\r      ▏▍▎▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▎▎▍▌▍▏       ▏▎▎▏                        ▏▎▎▍▍▍▎▎▎▍▌▌  ▏▎         ▏▋▌▌▌  ▏▍▏▎▌▏▏▏▏▏▎▋▋▍▏▏▎▎▏▏▍▌▎▏                   \\r      ▏▍▎▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▎▌▏          ▏▎▍▏                     ▎▌▏▍▌▍▎▎▍▎▎▎▍▏▎▌           ▌▋▌  ▏▍▏▎▌▏▎▎▏▏▎▌▋▍▏ ▎▎▏▏▎▍▌▏                   \\r      ▏▌▎▎▎▎▎▎▎▎▎▎▎▍▍▍▍▍▍▍▌▌▍▌▌▍           ▎▍▍                   ▎▌ ▍▌▍▎▎▌▎▏▏▌▋▌▎            ▎▌▌▋▌▏ ▎▌▎▎▎▏▏▍▊▉▌▎ ▎▎▎▏▏▎▋▏                   \\r      ▏▌▌▍▍▎▎▍▋▌▌▍▍▌▌▌▌▌▋▌▌▌▌▍▍▎▏▏▏▏▎▏▏       ▎▎▎        ▏▎▋▊▊▋▎▎▎▎▏▍▌▍▎▍▋▎▏                   ▌▌▎  ▎▌▎▎▎▏▎▍▊▉▋▍ ▏▎▎▏▏▎▋▎▏                  \\r       ▎▏▏ ▏▎▍▌▌▍▍▍▍▎▎▏▏              ▏▎▎▍▎▏▏   ▏▍▏▏   ▏▎▊▉▊▊▊▊▉▋▍ ▏▌▋▍▎▍▍                          ▎▌▍▎▏▏▎▌▊▉▋▌ ▏▎▎▏▏▏▌▌▎                  \\r         ▏▍▋▌▎▏▏▏▏                         ▎▍▌▏▏  ▏▎▎  ▎▉▊▋▋▌▌▋▋▋▍ ▏▍▌▍▎▎▏                          ▎▌▌▎▏▏▌▋▊▊▋▌ ▏▎▍▏▏▏▎▋▍                  \\r         ▏▎                                   ▍▍▎    ▏▍▋▊▋▋▌▋▌▌▋▋▌▍ ▍▌▌▎▏▏       ▌▌▋▌▍▎▎▏           ▎▌▌▎▏▎▌▋▊▊▊▋▏▏▎▍▎▏▏▎▌▍▏                 \\r                                                ▏▍▏  ▍▋▊▋▌▌▋▌▋▋▌▋▋▋▎▍▌▌▏▏▎       ▋▍▎▍▍▍▍▋▌▎         ▎▌▌▎▏▌▋▋▋▊▋▋▎▏▏▍▎▏▏▏▌▌▍                 \\r                                                  ▏▎▎▌▋▋▌▌▌▌▌▌▌▌▌▋▋▌▌▍▌▎▎▏       ▌▎     ▏▎▎         ▏▎▌▍▍▋▋▋▊▌▌▍▎▏▏▎▍▎▏▏▎▌▋                 \\r                                                    ▏▊▋▋▌▌▌▋▌▌▋▌▋▋▌▋▌▌▌▎▏        ▌▎     ▏▎▎         ▏▍▋▋▋▋▋▊▉▊▌▍▍▏▏▎▍▎▏▏▎▍▋                 \\r                                                   ▏▎▊▋▋▌▋▋▋▋▌▌▋▌▌▋▋▋▋▋▍▍▍       ▍▏     ▎▎▎         ▎▌▊▋▌▍▋▋▌▍▏▏▍▏▏▏▍▎▏▏▏▍▋▎▏               \\r                                                   ▎▋▊▋▋▋▋▋▋▋▌▌▌▋▋▌▌▋▋▊▍▍▋▌▎    ▏▍▏     ▏▎▎         ▎▌▍▍▍▍▍▎   ▏▌▎▏▏▍▎▎▏▏▎▍▌▎               \\r                                                   ▎▋▊▋▋▌▋▋▋▋▌▌▋▋▋▋▌▌▋▋▌▍▍▋▎   ▏▎▏▏     ▏▏▏        ▎▎▎▍▍▌▋▏    ▏▌▎▏▏▍▎▎▏▏▎▍▋▎               \\r                                                   ▏▎▉▋▋▋▋▋▋▋▋▋▌▋▌▌▋▌▌▋▌▌▌▌▎▏  ▏▎▏      ▎▎▎        ▍▍▎▌▌▌▌▏    ▏▌▍▎▏▍▎▎▏▏▏▎▋▎               \\r                                                     ▉▊▋▌▋▋▋▋▋▌▌▌▌▌▌▋▋▌▋▋▌▋▋▌▏ ▏▎       ▎▎▏        ▍▌▍▋▋▌      ▏▍▍▎ ▍▍▎▏▏▏▎▌▍▎              \\r                                                     ▉▊▊▋▋▋▋▋▋▋▋▋▌▌▌▌▌▌▋▋▋▋▊▊▋▏▏▎       ▎▏▏       ▎▍▌▌▋▍▏      ▏▍▍▎ ▎▎▎▏▏▏▏▍▌▌              \\r                                                     ▎▋▉▊▊▋▋▋▋▋▋▋▋▋▌▌▋▌▋▋▋▋▋▋▊▎▎▌       ▏▏      ▏▍▋▋▌▌▌▎       ▏▎▌▍ ▎▍▍▏▏▏▏▎▌▌              \\r                                                       ▏▌▋▋▊▊▋▋▋▋▋▋▋▌▌▋▌▌▋▋▋▋▊▏▎▌▍▎▏▏   ▏▏   ▏▎▏▌▋▊▌▌▌▍▎        ▏▌▍ ▎▎▍▏▏▏▏▎▍▌▎             \\r                                                          ▎▋▋▋▋▋▋▋▋▌▋▌▌▋▋▋▋▌▌▎▎▏▎▋▋▋▋▋▌▌▋▌▍▍▊▉▉ ▎▍  ▎▌▉▍        ▏▌▍ ▎▎▍▎▏▏▏▏▍▌▍▏            \\r                                                          ▏▍ ▎▍▌▋▋▋▋▋▋▋▋▋▋▌▎  ▍▎      ▎▊▊▊▋▌▊▋▍▊▌▎    ▋▌▍        ▌▍▏▏▎▍▎▏▏▏▏▎▍▋▏            \\r                                                         ▎▍▎ ▏▏▎▎▍▌▋▋▊▋▋▋▋     ▎▌    ▍▌▋▎▏ ▎▌▌▍▋▌▍               ▌▌▏▏▎▍▎▏▏▏▏▎▍▋▏            \\r                                                         ▌▍▎▏▎▎▎▎▎▏▎▍▌▋▊▋▋      ▏▌▍▌▉▋▌▏  ▏▌▋▋▌  ▏▌▏             ▌▌▏▏▎▍▎▏▏▏▏▎▎▋▎▏           \\r                                                         ▌▍▏▏▎▎▎▎▎▎▎▏▏▏▌▋▊▎▏     ▌▌▌▌▌▎ ▏▎▌▋▊▌▎    ▍▍            ▋▌▏▏▎▎▍▏▏▎▏▎▎▌▌▎           \\r                                                        ▏▍▎▏▏▎▍▎▎▎▎▎▎▎▎▌▍▎▍▍▍  ▏▎▋▌▍▍▋▍  ▍▋▎▋▍     ▏▎▎           ▋▌▏▏▎▍▍▎▏▏▎▎▎▍▌▍           \\r                                                       ▏▍▍▎ ▎▎▎▍▎▎▎▎▎▎▎▋▌  ▎▎▏ ▎▌▋▎▏▎▋▌▏▍▌▍▏▌▍      ▏▍           ▋▌▏▏▎▎▍▎▏▏▎▎▎▎▋▍           \\r                                                       ▏▌▎▏▏▎▎▍▎▎▎▎▎▎▎▎▋▌▏    ▍▌▋▌▎ ▏▌▌▍▌▎▏ ▌▍   ▏▎▏▏▍           ▋▌▏▏▎▎▍▎▏▏▎▎▎▎▌▍▏          \\r                                                       ▏▌▎▏▏▍▎▎▎▎▎▎▎▎▎▎▋▌     ▌▌▍▌▌▍▌▌▌▋▌▎  ▌▍  ▍▋▍▏▏▎▏          ▋▌▏▏▏▎▍▎▏▏▎▎▎▎▌▌▍          \\r                                                      ▏▏▌▏▏▎▎▎▎▎▎▎▎▎▎▎▎▋▌▏  ▏▌▎▎▎▌▍▍▌▎▌▉▍▏  ▌▍▎     ▎▋▎▏         ▋▌▏▏▏▎▍▎▎▏▎▎▎▎▍▌▋          \\r                                                      ▎▍▍▏▏▎▍▎▎▍▎▎▎▎▎▎▎▋▌▏  ▏▌▏▎▌▎▎▎▍▏▍▋▏▏  ▏▍▋▎▏  ▍▌▊▍▏         ▋▌▏▏▎▎▎▎▎▏▏▎▎▎▎▌▋          \\r                                                      ▎▍▎▏▏▎▎▎▎▎▎▎▎▎▎▎▎▋▌▏ ▎▍▏▎▍▌▏▏▎▌▏▏▎▏▏▏▏ ▎▌▊▋▌▋▊▊▊▌▎         ▋▌▏▏▎▎▎▎▎▏▏▎▎▎▎▍▋▏         \\r                                                      ▍▌▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▋▌  ▎▍ ▍▍▎▏▎▎▌▏  ▎▎▎▍▏▎▍▊▋▋▋▊▊▊▊▍         ▋▌▏▏▎▎▎▎▎▏▏▎▎▎▎▍▌▍▏        \\r                                                     ▏▍▍▏▏▎▍▍▎▎▎▎▎▎▎▎▎▎▋▌▏▏▏▎▎▌▍ ▏▏▎▌▏▏▏  ▏▍▎▎▎▊▋▋▋▋▋▋▊▍        ▏▋▌▏▏▎▍▎▎▎▏▏▎▎▎▎▍▌▌▎        \\r                                                     ▎▍▍▏▏▎▍▎▎▎▎▎▎▍▎▎▎▎▌▌▎▎▏▏▍▌▍▏ ▎▍▍▏▏▏   ▎▏▎▍▊▋▋▋▋▋▋▉▍▏       ▏▋▌ ▏▎▍▎▏▏▎▏▏▎▎▎▎▍▋▎        \\r                                                     ▌▍▎▏▏▎▍▎▎▎▎▎▎▎▎▎▎▎▍▌▋▏▏▎▌▌▍▏ ▎▌▍▏ ▏▏▎▎▎▏▎▎▊▋▋▋▋▋▋▊▋▍      ▏▎▋▌▏▏▎▍▏▏▏▏▏▏▎▎▎▎▎▋▎        \\r                                                     ▌▍▎▏▎▎▍▎▎▎▎▎▎▎▎▎▎▏▍▋▉▎▎▍▋▍▎ ▏▍▌▌▎▏▎▎▎▎▎▏▎▎▊▋▋▌▋▋▋▊▋▌      ▏▎▋▌▏▏▎▎▎▏▏▏▏▏▎▎▎▎▎▋▎▏       \\r                                                     ▋▎▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▎▌▋▊▎▍▍▎▏▏▏▎▍▌▍▎▎▎▎▎▎▎▏▏▎▊▋▋▋▌▌▌▋▊▋      ▏▍▋▍▏▏▎▎▏▏▏▏▏▏▏▎▎▎▎▌▍▎       \\r                                                    ▏▌▎▏▏▎▎▎▍▎▎▎▎▎▎▎▍▌▋▌▍▏▏▍▌▎▎▎▎▎▌▋▎▏▏▎▎▎▎▎▏▏▍▊▋▋▋▌▌▌▋▊▋▏     ▏▌▋▍ ▏▎▎▏▏▏▏▏▏▏▎▎▎▎▍▌▍       \\r                                                   ▏▎▍▎▏▏▎▎▍▎▎▎▎▎▎▎▌▋▌▎   ▎▌▌▎▎▎▏▌▋▌▏  ▏▎▎▎▎▏▎▍▊▋▋▋▌▌▋▋▋▊▌▏    ▏▋▌▍▏▏▎▎▏▎▎▏▏▏▏▎▎▎▎▍▌▌       \\r                                                   ▏▍▎▏▏▏▎▍▎▎▎▎▎▎▎▎▋▌▎    ▎▍▌▍▎▎▎▊▌▎    ▏▏▏▎▏▎▍▊▋▋▋▋▋▋▋▋▋▊▏    ▏▋▌▎ ▏▏▏▏▎▎▎▏▏▏▎▎▎▎▎▌▌       \\r                                                   ▎▌▎▏▏▎▎▍▍▎▎▎▎▎▎▏▌▌▌ ▏▏▏ ▍▌▎▏▍▌▌▎ ▏    ▏▏▏▏▎▌▊▋▋▋▋▋▋▋▋▋▊▏    ▏▊▍▎▏▏▏▏▏▎▎▏▏▏▏▎▎▎▎▎▌▌       \\r                                                   ▎▌▏▏▏▎▎▎▎▎▎▎▎▎▎▎▌▋▋  ▏  ▎▍▎▎▌▊  ▏▏▍▎▏   ▏▏▎▌▋▋▋▌▌▌▌▌▋▋▊▌▎   ▏▊▍▎ ▏▏▏▏▎▎▎▏▏▏▎▎▎▎▎▌▌▎      \\r                                                   ▎▌▏▏▏▎▎▎▍▎▎▎▎▎▍▌▋▊▋▎   ▏▍▌▏▌▋▊▎▏ ▏▎▍▍▏▏▏ ▏▎▋▊▋▌▌▍▍▍▌▋▋▋▋▍   ▏▉▍▏▏▏▏▏▏▎▎▎▏▏▏▎▎▎▎▎▍▌▍▏     \\r                                                   ▎▌▏▏▏▎▎▎▎▍▎▎▎▍▌▌▎▋▊▍▏▏▏▋▋▋▍▋▋▋▌▎  ▏▎▍▍▎▎▏ ▎▋▋▋▋▌▌▍▍▌▋▋▋▊▌   ▎▊▎▏▏▏▏▏▏▎▎▍▏▏▏▏▎▎▎▎▍▌▌▏     \\r                                                  ▏▎▌▏▏▏▎▎▎▎▎▎▎▎▎▍▌▏▌▋▋▍▍▋▋▋▋▋▌▌▍▊▌▎ ▏▏▎▏▎▎▏ ▎▋▋▋▋▌▌▌▍▌▌▋▋▊▋▎ ▏▎▊▎▏▏▏▏▏▏▎▎▍▏▏▏▏▎▎▎▎▍▍▌▏     \\r                                                  ▎▍▍▏▏▎▎▏▎▎▍▎▎▎▎▍▌▎▎▍▋▋▋▌▌▋▋▋▍▍▍▋▌▌  ▏▏▏▏   ▎▊▋▋▋▌▋▌▍▌▌▋▋▋▋▋ ▏▍▋▎▏▏▎▏▏▏▏▎▍▎▏▏▏▎▎▎▎▎▍▋▏     \\r                                                  ▍▍▎▏▎▎▎▏▎▍▎▎▎▎▎▎▍▌▍▍▋▌▌▌▌▌▌▍▌▍▍▌▋▋▎  ▏    ▎▌▋▋▋▋▌▌▌▍▍▌▋▋▋▋▊ ▎▍▌▏▏▏▏▏▏▏▏▎▍▎▏▏▏▎▎▎▎▎▍▋▏     \\r                                                  ▍▍▎▎▎▎▏▏▎▍▎▎▎▎▎▎▎▌▋▋▊▋▋▌▌▌▌▌▌▌▌▍▌▋▌▏  ▏▎▍▌▋▋▋▋▋▋▌▌▌▍▌▌▌▋▋▋▊▎▌▌▍▏▏▏▎▏▏▏▏▎▍▎▎▏▏▎▍▎▎▎▍▋▏     \\r                                                  ▍▍▎▌▎▏▏▏▎▍▎▎▎▎▎▎▏▍▋▋▍▋▋▋▌▋▋▌▌▌▋▌▌▌▋▍▎▎▌▋▋▌▌▋▋▋▋▋▋▌▌▌▍▌▋▋▋▋▋▋▋▌▎▏▏▎▏▏▏▏▏▎▍▍▎▏▏▎▎▍▎▎▍▋▎▏    \\r                                                  ▍▍▍▍▎▏▏▏▎▎▍▎▎▎▎▎▎▍▌▌ ▍▌▋▋▋▋▌▍▍▋▋▋▋▋▋▋▌▋▋▌▌▌▋▋▋▋▋▌▌▌▌▌▌▌▋▋▋▋▌▌▌▏▏▏▏▎▏▏▏▏▎▍▍▎▏▏▎▎▎▎▎▎▌▎▏    \\r                                                  ▍▌▌▍▏▏▏▎▎▍▎▎▎▎▎▎▎▎▍▌▍▏▎▌▋▋▋▌▌▌▌▋▋▋▍▌▌▋▌▋▋▋▋▋▋▋▋▋▌▌▌▌▍▌▌▋▋▋▋▍▌▌▏▏▏▎▏▎▎▏▏▎▎▍▎▏▏▎▎▍▎▎▎▌▍▎    \\r                                                  ▍▌▋▏▏▏▏▎▎▍▍▎▎▎▎▎▎▎▎▍▌▎▎▎▊▋▋▋▋▌▌▌▋▋▍▌▌▌▌▌▋▋▋▋▋▌▋▋▌▌▌▍▌▌▌▋▊▋▍▎▍▌▏▏▏▏▎▏▏▏▏▎▎▍▎▎▏▎▎▎▍▍▍▌▍▎    \\r                                                  ▌▋▋▏▏▏▏▏▎▍▎▎▎▎▎▎▎▎▎▎▍▌▋▋▌▍▍▋▋▋▋▋▋▋▋▋▋▌▍▌▋▋▌▌▋▋▋▌▋▌▌▌▌▋▋▊▊▌ ▎▍▍▏▏▏▏▏▏▏▏▏▎▎▍▎▎▏▎▎▎▎▍▍▍▍▎    \\r                                                  ▋▋▌ ▏▏▏▎▎▎▎▎▎▎▎▎▎▎▎▎▏▎▌▉▌▏ ▏▍▌▋▋▋▋▋▋▋▋▌▋▋▌▏▏▍▊▊▋▋▋▋▋▋▊▊▊▌▎ ▌▍▎▏▎▎▏▏▏▏▏▏▎▎▍▎▎▏▎▎▎▎▍▌▍▍▎    \\r                                                  ▋▋▎▏▏▏▎▎▎▍▎▎▎▎▎▎▎▎▎▎▎▎▌▋▍▍▎  ▏▏▋▋▋▋▌▌▌▍▌▌▋▍▎▎▌▋▋▋▊▊▊▋▊▋▍▏  ▋▍▎▎▎▎▏▏▏▏▏▏▎▎▍▎▎▏▎▎▎▏▍▌▌▌▎    \\r                                                  ▌▌▎ ▏▎▎▎▎▎▍▎▎▎▎▎▎▎▎▎▎▍▍▍ ▍▌▋▎▏▏▋▌▍    ▎▎▍▊▋▍   ▏▌▌▌▌▌▎▏▋▍▎▏▌▍▎▎▎▏▏▎▏▏▏▏▎▎▍▍▎▏▎▎▎▎▍▌▋▌▎    \\r                                                  ▌▌▍▏▏▎▎▏▎▍▎▎▎▎▎▎▎▎▎▎▎▍▌▌ ▏▏▏▎▍▌▉▌▎   ▏▍▌▌▋▏   ▎▍▋▏  ▍▏▏▍▏▏▏▌▌▌▌▏▏▏▏▏▏▏▏▎▎▍▎▎▏▎▎▍▎▎▍▋▌▍    \\r                                                  ▍▍▍ ▏▎▎▎▎▎▍▎▎▍▎▎▎▎▎▎▎▍▌▌ ▏▏    ▌▌▌▌▌▌▌▎▏ ▏▎▎▏▌▊▉▊▍▎▏▍▌▌  ▏▍▋▋▋▌▎▏▏▏▏▏▏▏▎▎▎▎▎▎▎▎▎▎▎▍▊▋▍    \\r                                                  ▏▎▍▏▏▎▍▏▎▍▎▎▎▎▎▎▎▎▎▎▎▍▌▍ ▎▌▋▏  ▏▎▍▍▏▏▌    ▍▌▋▋▋▊▋▌▎  ▏▏  ▍▊▍▎▏▌▎▏▏▏▏▏▏▎▎▎▍▎▎▎▎▎▍▎▎▍▌▋▍    \\r                                                  ▏▎▌ ▏▎▎▎▎▎▍▎▎▎▎▎▎▎▎▎▎▌▌▎ ▎▌▉▋▌▌▌▋▋▍▏▎▌▌▍▎▍▍▌▌▋▋▋▌▏       ▍▉  ▏▋▎▏▏▎▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▌▋▍    \\r                                                  ▏▎▌ ▏▎▍▏▎▎▎▎▎▎▎▎▎▎▎▎▎▌▌▎ ▎▌▉▊▋▋▊▊▋▍▏▏▍▉▋▋▋▋▋▋▋▋▋▊▏      ▎▎▎ ▎▍▋▎▏▏▏▏▏▏▎▎▎▍▎▎▎▎▎▎▎▎▎▍▌▍    \\r                                                  ▏▍▌ ▏▎▍▎▎▎▎▎▎▎▎▎▍▎▎▎▎▋▍  ▏▍▊▋▋▋▋▋▋▌▏▏▏▉▊▋▋▋▋▋▋▋▋▊▏      ▏▏  ▎▍▋▎▏▏▎▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▌▍▎    \\r                                                  ▏▍▌▏▏▎▍▎▎▎▎▎▎▎▎▎▎▎▎▎▎▋▍  ▎▍▊▋▌▌▋▋▋▋▏  ▊▋▌▌▌▌▌▋▋▋▊▏          ▎▍▋▎▏▏▏▏▏▏▎▎▎▎▎▎▎▎▎▍▎▎▍▌▎▏    \\r                                                   ▎▋ ▏▎▍▎▎▏▎▎▎▍▎▎▍▎▎▎▌▌▍  ▏▍▊▋▋▋▌▋▋▋▏  ▊▋▌▌▋▋▋▋▋▋▊▏          ▏▍▋▎▏▏▏▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▍▌▏     \\r                                                   ▎▋▏▏▏▍▎▎▏▏▎▎▍▍▎▎▎▎▍▊▎▏  ▏▍▊▋▋▌▋▋▋▋▏  ▊▋▋▌▋▋▌▋▋▋▉▏          ▏▎▋▎▏▏▏▏▏▏▎▍▎▎▎▎▎▎▎▎▎▎▍▌▏     \\r                                                   ▎▋▎▏▏▎▍▎▏▏▏▎▍▎▎▎▎▍▌▊▏   ▏▎▊▋▋▋▌▋▋▊▏  ▊▋▋▋▌▌▋▋▋▋▊▎           ▏▋▍▎▏▏▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▍▋▏     \\r                                                   ▎▌▍▎▏▎▍▎▎▏▏▎▎▎▎▎▎▋▋▏    ▏▎▊▋▋▌▋▋▋▊▏  ▊▋▋▌▋▋▌▋▋▋▉▏           ▏▋▍▎▎▏▏▏▏▎▎▎▎▎▎▍▎▎▎▎▎▍▋▏     \\r                                                   ▏▎▌▎▏▎▍▍▎▏▏▏▎▎▎▎▋▋▌      ▎▉▋▋▋▌▋▋▊▏  ▊▋▋▌▌▌▌▋▋▋▊▏           ▏▋▌▍▎▏▏▏▎▎▎▎▎▎▎▎▎▎▎▎▎▍▋▏     \\r                                                     ▋▍▏▎▎▍▍▎▎▎▎▎▎▍▊▎       ▎▊▋▋▌▋▋▋▊▏  ▊▋▋▌▋▋▌▋▋▋▊▏           ▏▍▌▌▎▏▏▏▎▍▎▎▎▎▎▎▎▎▎▎▍▍▌▏     \\r                                                     ▌▌▎▏▎▍▎▎▎▎▎▎▍▊         ▏▊▋▋▋▌▋▋▊▏  ▋▋▋▋▌▋▋▋▋▋▊▏             ▋▋▎▏▏▏▎▍▍▎▎▎▎▎▎▎▎▎▍▍▌▏     \\r                                                     ▎▌▌▏▎▎▍▎▎▎▎▌▌▌         ▏▊▋▋▌▌▋▋▊▎▏ ▋▋▋▋▋▋▌▌▌▋▊▏             ▌▌▋▏▏▏▎▍▍▎▎▎▎▎▎▎▎▎▍▌▎▏     \\r                                                      ▍▋▎▎▎▎▎▎▎▎▋▌          ▏▉▋▋▋▌▋▋▋▍▏ ▋▋▋▋▌▌▌▌▋▋▊▏              ▍▊▎▏▏▎▎▎▍▎▎▎▎▎▎▎▎▌▌▏      \\r                                                      ▎▍▋▎▎▎▎▎▎▌▋▍          ▏▊▋▋▌▋▋▋▊▍▎ ▊▋▋▌▋▌▌▋▋▋▊▏              ▎▋▋▍▎▎▍▍▎▍▎▎▎▎▎▎▎▌▌       \\r                                                       ▏▋▌▍▎▎▎▎▋▍▎          ▏▋▋▋▋▌▌▋▋▌▎ ▊▋▋▌▌▋▋▋▋▊▋▏                ▊▌▎▎▎▎▎▎▎▎▎▎▎▎▍▌▌       \\r                                                        ▏▋▌▎▎▎▍▋▏           ▏▌▊▋▌▌▌▋▋▌▍▏▋▋▋▌▋▋▌▋▋▊▌▏                ▌▌▌▎▎▎▎▎▎▎▎▎▎▎▌▌▍       \\r                                                         ▍▌▋▎▎▎▋▏           ▏▍▋▋▋▌▌▋▋▌▍▎▋▋▌▋▌▌▋▋▊▊▍▏                 ▌▋▎▎▎▎▎▎▎▎▎▎▎▊▍        \\r                                                          ▎▌▋▌▍▌▏            ▏▋▊▌▋▌▌▋▌▌▍▋▋▋▌▌▌▌▋▊▋▏                  ▎▌▋▎▎▎▎▎▎▎▎▎▌▋▎        \\r                                                            ▌▋▊▊▏             ▋▊▋▌▋▋▋▋▌▍▋▋▌▋▋▋▋▋▊▋                    ▏▊▍▎▎▎▎▎▎▎▌▊▏         \\r                                                             ▏▎▊▎▏            ▋▊▋▋▋▋▋▌▌▌▋▋▋▌▌▌▌▊▋▌                    ▏▍▌▌▎▎▎▎▎▌▌▌          \\r                                                                              ▍▋▊▌▋▋▋▋▍▎▊▋▋▋▌▋▋▉▌▎                     ▏▋▌▎▎▎▎▍▋▌           \\r                                                                               ▍▉▋▋▋▉▌▎ ▊▋▋▌▌▋▊▊▍                       ▋▌▎▎▎▍▊▏            \\r                                                                               ▏▍▉▉▉▉▎  ▌▊▉▋▊▉█                         ▌▍▏▍▋▋▎▏            \\r                                                                                 ▌▌▌▏    ▌▉▉▉▋▎                         ▌▌▌▊▍▏              \\r                                                                                           ▎                           ▎▊▊▋                 \\r                                                                                                                      ▏▎▍▎                  \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \",\"t\":0,\"b\":false,\"e\":1.9,\"p\":{\"y\":1000,\"x\":750},\"c\":7,\"f\":1.9,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,10,10,10,5,false,false]],\"b\":true},\"r\":15}"},{"c":"39.2,10053120,7,25,578012,1386308613","m":"{\"b\":false,\"n\":\"Hits*20\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51.9,10053120,7,25,578012,1386308665","m":"{\"b\":false,\"n\":\"Hits*147\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51.3,10053120,7,25,578012,1386308663","m":"{\"b\":false,\"n\":\"Hits*141\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49.7,10053120,7,25,578012,1386308656","m":"{\"b\":false,\"n\":\"Hits*125\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38.5,10053120,7,25,578012,1386308610","m":"{\"b\":false,\"n\":\"Hits*13\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"53.7,10053120,7,25,578012,1386308672","m":"{\"b\":false,\"n\":\"Hits*165\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"53.6,10053120,7,25,578012,1386308672","m":"{\"b\":false,\"n\":\"Hits*164\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"53.5,10053120,7,25,578012,1386308671","m":"{\"b\":false,\"n\":\"Hits*163\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"53.4,10053120,7,25,578012,1386308671","m":"{\"b\":false,\"n\":\"Hits*162\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"53.3,10053120,7,25,578012,1386308671","m":"{\"b\":false,\"n\":\"Hits*161\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"53.2,10053120,7,25,578012,1386308670","m":"{\"b\":false,\"n\":\"Hits*160\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"53.1,10053120,7,25,578012,1386308670","m":"{\"b\":false,\"n\":\"Hits*159\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"53,10053120,7,25,578012,1386308669","m":"{\"b\":false,\"n\":\"Hits*158\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52.9,10053120,7,25,578012,1386308669","m":"{\"b\":false,\"n\":\"Hits*157\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52.8,10053120,7,25,578012,1386308669","m":"{\"b\":false,\"n\":\"Hits*156\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52.7,10053120,7,25,578012,1386308668","m":"{\"b\":false,\"n\":\"Hits*155\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52.6,10053120,7,25,578012,1386308668","m":"{\"b\":false,\"n\":\"Hits*154\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52.5,10053120,7,25,578012,1386308667","m":"{\"b\":false,\"n\":\"Hits*153\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52.4,10053120,7,25,578012,1386308667","m":"{\"b\":false,\"n\":\"Hits*152\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52.3,10053120,7,25,578012,1386308667","m":"{\"b\":false,\"n\":\"Hits*151\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52.2,10053120,7,25,578012,1386308666","m":"{\"b\":false,\"n\":\"Hits*150\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52.1,10053120,7,25,578012,1386308666","m":"{\"b\":false,\"n\":\"Hits*149\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52,10053120,7,25,578012,1386308665","m":"{\"b\":false,\"n\":\"Hits*148\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51.8,10053120,7,25,578012,1386308665","m":"{\"b\":false,\"n\":\"Hits*146\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51.7,10053120,7,25,578012,1386308664","m":"{\"b\":false,\"n\":\"Hits*145\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51.6,10053120,7,25,578012,1386308664","m":"{\"b\":false,\"n\":\"Hits*144\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51.5,10053120,7,25,578012,1386308663","m":"{\"b\":false,\"n\":\"Hits*143\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51.4,10053120,7,25,578012,1386308663","m":"{\"b\":false,\"n\":\"Hits*142\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51.2,10053120,7,25,578012,1386308662","m":"{\"b\":false,\"n\":\"Hits*140\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51.1,10053120,7,25,578012,1386308662","m":"{\"b\":false,\"n\":\"Hits*139\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"50.2,10053120,7,25,578012,1386308658","m":"{\"b\":false,\"n\":\"Hits*130\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"50.1,10053120,7,25,578012,1386308658","m":"{\"b\":false,\"n\":\"Hits*129\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"50,10053120,7,25,578012,1386308657","m":"{\"b\":false,\"n\":\"Hits*128\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49.9,10053120,7,25,578012,1386308657","m":"{\"b\":false,\"n\":\"Hits*127\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49.8,10053120,7,25,578012,1386308656","m":"{\"b\":false,\"n\":\"Hits*126\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"50.4,10053120,7,25,578012,1386308659","m":"{\"b\":false,\"n\":\"Hits*132\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49.6,10053120,7,25,578012,1386308656","m":"{\"b\":false,\"n\":\"Hits*124\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49.5,10053120,7,25,578012,1386308655","m":"{\"b\":false,\"n\":\"Hits*123\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49.4,10053120,7,25,578012,1386308655","m":"{\"b\":false,\"n\":\"Hits*122\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49.3,10053120,7,25,578012,1386308654","m":"{\"b\":false,\"n\":\"Hits*121\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49.2,10053120,7,25,578012,1386308654","m":"{\"b\":false,\"n\":\"Hits*120\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49.1,10053120,7,25,578012,1386308654","m":"{\"b\":false,\"n\":\"Hits*119\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49,10053120,7,25,578012,1386308653","m":"{\"b\":false,\"n\":\"Hits*118\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"48.9,10053120,7,25,578012,1386308653","m":"{\"b\":false,\"n\":\"Hits*117\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"48.8,10053120,7,25,578012,1386308652","m":"{\"b\":false,\"n\":\"Hits*116\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"48.7,10053120,7,25,578012,1386308652","m":"{\"b\":false,\"n\":\"Hits*115\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"48.6,10053120,7,25,578012,1386308652","m":"{\"b\":false,\"n\":\"Hits*114\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"48.5,10053120,7,25,578012,1386308651","m":"{\"b\":false,\"n\":\"Hits*113\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"48.4,10053120,7,25,578012,1386308651","m":"{\"b\":false,\"n\":\"Hits*112\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"48.3,10053120,7,25,578012,1386308650","m":"{\"b\":false,\"n\":\"Hits*111\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"48.2,10053120,7,25,578012,1386308650","m":"{\"b\":false,\"n\":\"Hits*110\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"40.7,10053120,7,25,578012,1386308619","m":"{\"b\":false,\"n\":\"Hits*35\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"40.6,10053120,7,25,578012,1386308619","m":"{\"b\":false,\"n\":\"Hits*34\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"40.5,10053120,7,25,578012,1386308618","m":"{\"b\":false,\"n\":\"Hits*33\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"40.4,10053120,7,25,578012,1386308618","m":"{\"b\":false,\"n\":\"Hits*32\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"40.3,10053120,7,25,578012,1386308618","m":"{\"b\":false,\"n\":\"Hits*31\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"40.2,10053120,7,25,578012,1386308617","m":"{\"b\":false,\"n\":\"Hits*30\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"40.1,10053120,7,25,578012,1386308617","m":"{\"b\":false,\"n\":\"Hits*29\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"40,10053120,7,25,578012,1386308616","m":"{\"b\":false,\"n\":\"Hits*28\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"39.9,10053120,7,25,578012,1386308616","m":"{\"b\":false,\"n\":\"Hits*27\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"39.8,10053120,7,25,578012,1386308616","m":"{\"b\":false,\"n\":\"Hits*26\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"39.7,10053120,7,25,578012,1386308615","m":"{\"b\":false,\"n\":\"Hits*25\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"39.6,10053120,7,25,578012,1386308615","m":"{\"b\":false,\"n\":\"Hits*24\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"39.5,10053120,7,25,578012,1386308614","m":"{\"b\":false,\"n\":\"Hits*23\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"39.4,10053120,7,25,578012,1386308614","m":"{\"b\":false,\"n\":\"Hits*22\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"39.3,10053120,7,25,578012,1386308613","m":"{\"b\":false,\"n\":\"Hits*21\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"50.5,10053120,7,25,578012,1386308659","m":"{\"b\":false,\"n\":\"Hits*133\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"39.1,10053120,7,25,578012,1386308613","m":"{\"b\":false,\"n\":\"Hits*19\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"39,10053120,7,25,578012,1386308612","m":"{\"b\":false,\"n\":\"Hits*18\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38.9,10053120,7,25,578012,1386308612","m":"{\"b\":false,\"n\":\"Hits*17\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38.8,10053120,7,25,578012,1386308611","m":"{\"b\":false,\"n\":\"Hits*16\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38.7,10053120,7,25,578012,1386308611","m":"{\"b\":false,\"n\":\"Hits*15\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38.6,10053120,7,25,578012,1386308611","m":"{\"b\":false,\"n\":\"Hits*14\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"50.3,10053120,7,25,578012,1386308658","m":"{\"b\":false,\"n\":\"Hits*131\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38.4,10053120,7,25,578012,1386308610","m":"{\"b\":false,\"n\":\"Hits*12\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38.3,10053120,7,25,578012,1386308609","m":"{\"b\":false,\"n\":\"Hits*11\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38.2,10053120,7,25,578012,1386308609","m":"{\"b\":false,\"n\":\"Hits*10\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38.1,10053120,7,25,578012,1386308609","m":"{\"b\":false,\"n\":\"Hits*9\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38,10053120,7,25,578012,1386308608","m":"{\"b\":false,\"n\":\"Hits*8\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"37.9,10053120,7,25,578012,1386308608","m":"{\"b\":false,\"n\":\"Hits*7\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"37.8,10053120,7,25,578012,1386308607","m":"{\"b\":false,\"n\":\"Hits*6\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"37.7,10053120,7,25,578012,1386308607","m":"{\"b\":false,\"n\":\"Hits*5\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"37.6,10053120,7,25,578012,1386308606","m":"{\"b\":false,\"n\":\"Hits*4\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"37.5,10053120,7,25,578012,1386308606","m":"{\"b\":false,\"n\":\"Hits*3\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"37.4,10053120,7,25,578012,1386308606","m":"{\"b\":false,\"n\":\"Hits*2\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"37.3,10053120,7,25,578012,1386308605","m":"{\"b\":false,\"n\":\"Hits*1\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"50.6,10053120,7,25,578012,1386308660","m":"{\"b\":false,\"n\":\"Hits*134\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"50.7,10053120,7,25,578012,1386308660","m":"{\"b\":false,\"n\":\"Hits*135\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"50.8,10053120,7,25,578012,1386308660","m":"{\"b\":false,\"n\":\"Hits*136\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"50.9,10053120,7,25,578012,1386308661","m":"{\"b\":false,\"n\":\"Hits*137\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51,10053120,7,25,578012,1386308661","m":"{\"b\":false,\"n\":\"Hits*138\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"}] \ No newline at end of file +[{"c":"18.361,16776960,4,25,671152,1386228346,13862283462","m":"BGM-CARAMELLDANSEN(ウッーウッーウ)"},{"c":"5.2,16777215,7,99,211467,1386243321,13862433211","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243321,13862433213","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243321,13862433215","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243321,13862433216","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243321,13862433217","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243321,13862433218","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243321,138624332155","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243321,138624332157","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243321,138624332162","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243321,138624332168","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243321,138624332170","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243321,138624332172","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"37.998,0,7,25,8603,1386252647,138625264796","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.498,0,7,25,8603,1386252647,138625264797","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.698,0,7,25,8603,1386252647,138625264798","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.398,0,7,25,8603,1386252647,138625264799","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.598,0,7,25,8603,1386252647,13862526471","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.198,0,7,25,8603,1386252647,13862526472","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.297999999999995,0,7,25,8603,1386252647,13862526473","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.898,0,7,25,8603,1386252647,13862526474","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.797999999999995,0,7,25,8603,1386252647,13862526475","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.098,0,7,25,8603,1386252647,13862526476","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.499,0,7,25,8603,1386252647,13862526477","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"37.599,0,7,25,8603,1386252647,13862526478","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"37.79900000000001,0,7,25,8603,1386252647,13862526479","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"37.699000000000005,0,7,25,8603,1386252647,138625264710","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.39900000000001,0,7,25,8603,1386252648,138625264811","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"37.89900000000001,0,7,25,8603,1386252648,138625264812","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.29900000000001,0,7,25,8603,1386252648,138625264813","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"37.99900000000001,0,7,25,8603,1386252648,138625264814","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.09900000000001,0,7,25,8603,1386252648,138625264815","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.199000000000005,0,7,25,8603,1386252648,138625264816","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.1,16724787,7,25,8603,1386252651,138625265117","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":320},{\"l\":2}]}"},{"c":"38.1,16724787,7,25,8603,1386252651,138625265155","m":"{\"z\":[{\"x\":320,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"37.9,16724787,7,25,8603,1386252652,138625265218","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":230},{\"l\":2}]}"},{"c":"38,16724787,7,25,8603,1386252652,138625265219","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":275},{\"l\":2}]}"},{"c":"38.2,16724787,7,25,8603,1386252652,138625265220","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":365},{\"l\":2}]}"},{"c":"38.3,16724787,7,25,8603,1386252652,138625265221","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":410},{\"l\":2}]}"},{"c":"37.7,16724787,7,25,8603,1386252652,138625265222","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":140},{\"l\":2}]}"},{"c":"37.8,16724787,7,25,8603,1386252652,138625265223","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":185},{\"l\":2}]}"},{"c":"38.4,16724787,7,25,8603,1386252652,138625265224","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":455},{\"l\":2}]}"},{"c":"37.6,16724787,7,25,8603,1386252652,138625265225","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":95},{\"l\":2}]}"},{"c":"37.5,16724787,7,25,8603,1386252652,138625265226","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":50},{\"l\":2}]}"},{"c":"38.998,0,7,25,8603,1386252652,138625265227","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.498,0,7,25,8603,1386252652,138625265228","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.698,0,7,25,8603,1386252652,138625265229","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.398,0,7,25,8603,1386252652,138625265230","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.198,0,7,25,8603,1386252652,138625265231","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.598,0,7,25,8603,1386252652,138625265232","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.29799999999995,0,7,25,8603,1386252652,138625265233","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.898,0,7,25,8603,1386252652,138625265234","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.79799999999995,0,7,25,8603,1386252652,138625265235","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.098,0,7,25,8603,1386252652,138625265236","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.499,0,7,25,8603,1386252652,138625265237","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.3,16724787,7,25,8603,1386252652,138625265248","m":"{\"z\":[{\"x\":410,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"38,16724787,7,25,8603,1386252652,138625265249","m":"{\"z\":[{\"x\":275,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"37.5,16724787,7,25,8603,1386252652,138625265253","m":"{\"z\":[{\"x\":50,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"38.2,16724787,7,25,8603,1386252652,138625265254","m":"{\"z\":[{\"x\":365,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"37.6,16724787,7,25,8603,1386252652,138625265256","m":"{\"z\":[{\"x\":95,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"37.9,16724787,7,25,8603,1386252652,138625265257","m":"{\"z\":[{\"x\":230,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"37.8,16724787,7,25,8603,1386252652,138625265258","m":"{\"z\":[{\"x\":185,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"37.7,16724787,7,25,8603,1386252652,138625265259","m":"{\"z\":[{\"x\":140,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"38.4,16724787,7,25,8603,1386252652,138625265260","m":"{\"z\":[{\"x\":455,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"38.599,0,7,25,8603,1386252656,138625265638","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.79900000000001,0,7,25,8603,1386252656,138625265639","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.699000000000005,0,7,25,8603,1386252656,138625265640","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"39.39900000000001,0,7,25,8603,1386252656,138625265641","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.89900000000001,0,7,25,8603,1386252657,138625265742","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"39.29900000000001,0,7,25,8603,1386252657,138625265743","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.99900000000001,0,7,25,8603,1386252657,138625265744","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"39.09900000000001,0,7,25,8603,1386252657,138625265745","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"39.1,16724787,7,25,8603,1386252657,138625265746","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":770},{\"l\":2}]}"},{"c":"39.199000000000005,0,7,25,8603,1386252657,138625265747","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"38.9,16724787,7,25,8603,1386252657,138625265748","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":680},{\"l\":2}]}"},{"c":"39,16724787,7,25,8603,1386252657,138625265749","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":725},{\"l\":2}]}"},{"c":"39,16724787,7,25,8603,1386252657,138625265750","m":"{\"z\":[{\"x\":725,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"38.9,16724787,7,25,8603,1386252657,138625265751","m":"{\"z\":[{\"x\":680,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"39.1,16724787,7,25,8603,1386252657,138625265752","m":"{\"z\":[{\"x\":770,\"y\":880,\"l\":0.3},{\"l\":2}],\"p\":{\"y\":60,\"x\":500},\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]]},\"b\":false,\"c\":4,\"n\":\"〇\",\"t\":0}"},{"c":"39,16724787,7,25,8603,1386252657,138625265764","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"39.199000000000005,0,7,25,8603,1386252657,138625265765","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.9,16724787,7,25,8603,1386252657,138625265766","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"39.1,16724787,7,25,8603,1386252657,138625265767","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"48.898,0,7,25,8603,1386252726,138625272650","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.79799999999995,0,7,25,8603,1386252726,138625272651","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.098,0,7,25,8603,1386252727,138625272752","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.499,0,7,25,8603,1386252732,138625273253","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"48.599,0,7,25,8603,1386252732,138625273254","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"48.79900000000001,0,7,25,8603,1386252732,138625273255","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"48.699000000000005,0,7,25,8603,1386252732,138625273256","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.39900000000001,0,7,25,8603,1386252732,138625273257","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"48.89900000000001,0,7,25,8603,1386252732,138625273258","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.29900000000001,0,7,25,8603,1386252732,138625273259","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"48.99900000000001,0,7,25,8603,1386252732,138625273260","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.09900000000001,0,7,25,8603,1386252732,138625273261","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.199000000000005,0,7,25,8603,1386252732,138625273262","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.199000000000005,0,7,25,8603,1386252732,138625273261","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.09900000000001,0,7,25,8603,1386252732,138625273262","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.99900000000001,0,7,25,8603,1386252732,138625273263","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.499,0,7,25,8603,1386252732,138625273268","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.599,0,7,25,8603,1386252732,138625273269","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.79900000000001,0,7,25,8603,1386252732,138625273270","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.699000000000005,0,7,25,8603,1386252732,138625273271","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.39900000000001,0,7,25,8603,1386252732,138625273272","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.89900000000001,0,7,25,8603,1386252732,138625273273","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.29900000000001,0,7,25,8603,1386252732,138625273274","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.1,3407667,7,25,8603,1386252733,138625273363","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":770},{\"l\":2}]}"},{"c":"48.9,3407667,7,25,8603,1386252733,138625273364","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":680},{\"l\":2}]}"},{"c":"49,3407667,7,25,8603,1386252733,138625273365","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":725},{\"l\":2}]}"},{"c":"49.2,3407667,7,25,8603,1386252733,138625273366","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":815},{\"l\":2}]}"},{"c":"49.3,3407667,7,25,8603,1386252733,138625273367","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":860},{\"l\":2}]}"},{"c":"48.7,3407667,7,25,8603,1386252733,138625273368","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":590},{\"l\":2}]}"},{"c":"48.8,3407667,7,25,8603,1386252733,138625273369","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":635},{\"l\":2}]}"},{"c":"49.4,3407667,7,25,8603,1386252733,138625273370","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":905},{\"l\":2}]}"},{"c":"48.6,3407667,7,25,8603,1386252733,138625273371","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":545},{\"l\":2}]}"},{"c":"49.1,3407667,7,25,8603,1386252733,138625273375","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.9,3407667,7,25,8603,1386252733,138625273376","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49,3407667,7,25,8603,1386252733,138625273377","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49.2,3407667,7,25,8603,1386252733,138625273378","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49.3,3407667,7,25,8603,1386252733,138625273379","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.7,3407667,7,25,8603,1386252733,138625273380","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.8,3407667,7,25,8603,1386252733,138625273381","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.6,3407667,7,25,8603,1386252733,138625273383","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49.4,3407667,7,25,8603,1386252733,138625273384","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.5,3407667,7,25,8603,1386252736,138625273672","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":500},{\"l\":2}]}"},{"c":"48.5,3407667,7,25,8603,1386252736,138625273682","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49.998,0,7,25,8603,1386252777,138625277773","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.498,0,7,25,8603,1386252777,138625277774","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.698,0,7,25,8603,1386252777,138625277775","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.398,0,7,25,8603,1386252777,138625277776","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.598,0,7,25,8603,1386252777,138625277777","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.198,0,7,25,8603,1386252777,138625277778","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.297999999999995,0,7,25,8603,1386252777,138625277779","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.898,0,7,25,8603,1386252777,138625277780","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.797999999999995,0,7,25,8603,1386252777,138625277781","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.098,0,7,25,8603,1386252777,138625277782","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.499,0,7,25,8603,1386252778,138625277883","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.499,0,7,25,8603,1386252778,138625277885","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.599,0,7,25,8603,1386252782,138625278284","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.79900000000001,0,7,25,8603,1386252782,138625278285","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.699000000000005,0,7,25,8603,1386252782,138625278286","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.39900000000001,0,7,25,8603,1386252782,138625278287","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.89900000000001,0,7,25,8603,1386252782,138625278288","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.29900000000001,0,7,25,8603,1386252782,138625278289","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"49.99900000000001,0,7,25,8603,1386252782,138625278290","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.09900000000001,0,7,25,8603,1386252782,138625278291","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.199000000000005,0,7,25,8603,1386252782,138625278292","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.1,16737996,7,25,8603,1386252782,138625278293","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":320},{\"l\":2}]}"},{"c":"49.9,16737996,7,25,8603,1386252782,138625278294","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":230},{\"l\":2}]}"},{"c":"50,16737996,7,25,8603,1386252782,138625278295","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":275},{\"l\":2}]}"},{"c":"50.2,16737996,7,25,8603,1386252782,138625278296","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":365},{\"l\":2}]}"},{"c":"49.599,0,7,25,8603,1386252782,138625278286","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.79900000000001,0,7,25,8603,1386252782,138625278287","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.699000000000005,0,7,25,8603,1386252782,138625278288","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.39900000000001,0,7,25,8603,1386252782,138625278289","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.89900000000001,0,7,25,8603,1386252782,138625278290","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.29900000000001,0,7,25,8603,1386252782,138625278291","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.99900000000001,0,7,25,8603,1386252782,138625278292","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.09900000000001,0,7,25,8603,1386252782,138625278293","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.199000000000005,0,7,25,8603,1386252782,138625278294","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.1,16737996,7,25,8603,1386252782,138625278295","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"49.9,16737996,7,25,8603,1386252782,138625278296","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50,16737996,7,25,8603,1386252782,138625278297","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.2,16737996,7,25,8603,1386252782,138625278298","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.3,16737996,7,25,8603,1386252786,138625278697","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":410},{\"l\":2}]}"},{"c":"49.7,16737996,7,25,8603,1386252786,138625278698","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":140},{\"l\":2}]}"},{"c":"49.8,16737996,7,25,8603,1386252786,138625278699","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":185},{\"l\":2}]}"},{"c":"50.4,16737996,7,25,8603,1386252786,13862527861","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":455},{\"l\":2}]}"},{"c":"49.6,16737996,7,25,8603,1386252786,13862527862","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":95},{\"l\":2}]}"},{"c":"49.5,16737996,7,25,8603,1386252786,13862527863","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":50},{\"l\":2}]}"},{"c":"50.998,0,7,25,8603,1386252786,13862527864","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.498,0,7,25,8603,1386252786,13862527865","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.698,0,7,25,8603,1386252786,13862527866","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.398,0,7,25,8603,1386252786,13862527867","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.598,0,7,25,8603,1386252786,13862527868","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.3,16737996,7,25,8603,1386252786,138625278699","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"49.7,16737996,7,25,8603,1386252786,13862527861","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"49.8,16737996,7,25,8603,1386252786,13862527862","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.4,16737996,7,25,8603,1386252786,13862527863","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"49.6,16737996,7,25,8603,1386252786,13862527864","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"49.5,16737996,7,25,8603,1386252786,13862527865","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.198,0,7,25,8603,1386252791,13862527919","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.29799999999995,0,7,25,8603,1386252796,138625279610","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.898,0,7,25,8603,1386252796,138625279611","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.098,0,7,25,8603,1386252796,138625279612","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.79799999999995,0,7,25,8603,1386252796,138625279613","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.79900000000001,0,7,25,8603,1386252796,138625279614","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.499,0,7,25,8603,1386252796,138625279615","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.599,0,7,25,8603,1386252796,138625279616","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.699000000000005,0,7,25,8603,1386252796,138625279617","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"51.39900000000001,0,7,25,8603,1386252796,138625279618","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.89900000000001,0,7,25,8603,1386252796,138625279619","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"50.79900000000001,0,7,25,8603,1386252796,13862527966","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.499,0,7,25,8603,1386252796,13862527967","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.599,0,7,25,8603,1386252796,13862527968","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.699000000000005,0,7,25,8603,1386252796,13862527969","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.39900000000001,0,7,25,8603,1386252796,138625279610","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.89900000000001,0,7,25,8603,1386252796,138625279611","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.99900000000001,0,7,25,8603,1386252797,138625279720","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"51.199000000000005,0,7,25,8603,1386252797,138625279721","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"51.09900000000001,0,7,25,8603,1386252797,138625279722","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"51.1,16737996,7,25,8603,1386252797,138625279723","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":770},{\"l\":2}]}"},{"c":"50.9,16737996,7,25,8603,1386252797,138625279724","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":680},{\"l\":2}]}"},{"c":"51,16737996,7,25,8603,1386252797,138625279725","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":725},{\"l\":2}]}"},{"c":"51.2,16737996,7,25,8603,1386252797,138625279726","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":815},{\"l\":2}]}"},{"c":"51.3,16737996,7,25,8603,1386252797,138625279727","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":860},{\"l\":2}]}"},{"c":"50.99900000000001,0,7,25,8603,1386252797,138625279712","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.199000000000005,0,7,25,8603,1386252797,138625279713","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.09900000000001,0,7,25,8603,1386252797,138625279714","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.1,16737996,7,25,8603,1386252797,138625279715","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.9,16737996,7,25,8603,1386252797,138625279716","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51,16737996,7,25,8603,1386252797,138625279717","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.2,16737996,7,25,8603,1386252797,138625279718","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.3,16737996,7,25,8603,1386252797,138625279735","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.7,16737996,7,25,8603,1386252800,138625280028","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":590},{\"l\":2}]}"},{"c":"50.8,16737996,7,25,8603,1386252800,138625280029","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":635},{\"l\":2}]}"},{"c":"50.8,16737996,7,25,8603,1386252800,138625280033","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.7,16737996,7,25,8603,1386252800,138625280034","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.4,16737996,7,25,8603,1386252801,138625280130","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":905},{\"l\":2}]}"},{"c":"50.6,16737996,7,25,8603,1386252801,138625280131","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":545},{\"l\":2}]}"},{"c":"50.5,16737996,7,25,8603,1386252801,138625280132","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":880,\"l\":0.3,\"x\":500},{\"l\":2}]}"},{"c":"51.998,0,7,25,8603,1386252801,138625280133","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.498,0,7,25,8603,1386252801,138625280134","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.698,0,7,25,8603,1386252801,138625280135","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.398,0,7,25,8603,1386252801,138625280136","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.598,0,7,25,8603,1386252801,138625280137","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.198,0,7,25,8603,1386252801,138625280138","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.297999999999995,0,7,25,8603,1386252801,138625280139","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.898,0,7,25,8603,1386252801,138625280140","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.797999999999995,0,7,25,8603,1386252801,138625280141","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.5,16737996,7,25,8603,1386252801,138625280130","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.6,16737996,7,25,8603,1386252801,138625280131","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.4,16737996,7,25,8603,1386252801,138625280132","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"52.098,0,7,25,8603,1386252805,138625280542","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.499,0,7,25,8603,1386252805,138625280543","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"51.599,0,7,25,8603,1386252805,138625280544","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"51.79900000000001,0,7,25,8603,1386252805,138625280545","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"51.699000000000005,0,7,25,8603,1386252805,138625280546","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.39900000000001,0,7,25,8603,1386252805,138625280547","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"51.89900000000001,0,7,25,8603,1386252805,138625280548","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.29900000000001,0,7,25,8603,1386252805,138625280549","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"51.99900000000001,0,7,25,8603,1386252805,138625280550","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.09900000000001,0,7,25,8603,1386252805,138625280551","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.199000000000005,0,7,25,8603,1386252805,138625280552","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.199000000000005,0,7,25,8603,1386252805,138625280520","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.09900000000001,0,7,25,8603,1386252805,138625280521","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.99900000000001,0,7,25,8603,1386252805,138625280522","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.29900000000001,0,7,25,8603,1386252805,138625280523","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.89900000000001,0,7,25,8603,1386252805,138625280524","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.39900000000001,0,7,25,8603,1386252805,138625280525","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.699000000000005,0,7,25,8603,1386252805,138625280526","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.79900000000001,0,7,25,8603,1386252805,138625280527","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.599,0,7,25,8603,1386252805,138625280528","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.499,0,7,25,8603,1386252805,138625280529","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.1,16737996,7,25,8603,1386252806,138625280653","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":320},{\"l\":2}]}"},{"c":"52.1,16737996,7,25,8603,1386252806,138625280619","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"51.9,16737996,7,25,8603,1386252809,138625280954","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":230},{\"l\":2}]}"},{"c":"51.9,16737996,7,25,8603,1386252809,138625280936","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52,16737996,7,25,8603,1386252810,138625281055","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":275},{\"l\":2}]}"},{"c":"52.3,16737996,7,25,8603,1386252810,138625281056","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":410},{\"l\":2}]}"},{"c":"51.7,16737996,7,25,8603,1386252810,138625281057","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":140},{\"l\":2}]}"},{"c":"52.2,16737996,7,25,8603,1386252810,138625281058","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":365},{\"l\":2}]}"},{"c":"51.8,16737996,7,25,8603,1386252810,138625281059","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":185},{\"l\":2}]}"},{"c":"52.4,16737996,7,25,8603,1386252810,138625281060","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":455},{\"l\":2}]}"},{"c":"51.6,16737996,7,25,8603,1386252810,138625281061","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":95},{\"l\":2}]}"},{"c":"51.5,16737996,7,25,8603,1386252810,138625281062","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":50},{\"l\":2}]}"},{"c":"52.998,0,7,25,8603,1386252810,138625281063","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.498,0,7,25,8603,1386252810,138625281064","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.698,0,7,25,8603,1386252810,138625281065","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"53.398,0,7,25,8603,1386252810,138625281066","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52,16737996,7,25,8603,1386252810,138625281037","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.3,16737996,7,25,8603,1386252810,138625281038","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"51.7,16737996,7,25,8603,1386252810,138625281039","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.2,16737996,7,25,8603,1386252810,138625281040","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"51.8,16737996,7,25,8603,1386252810,138625281041","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.4,16737996,7,25,8603,1386252810,138625281042","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"51.6,16737996,7,25,8603,1386252810,138625281043","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"51.5,16737996,7,25,8603,1386252810,138625281044","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.598,0,7,25,8603,1386252815,138625281567","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"53.198,0,7,25,8603,1386252815,138625281568","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.898,0,7,25,8603,1386252815,138625281569","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"53.29799999999995,0,7,25,8603,1386252815,138625281570","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.79799999999995,0,7,25,8603,1386252815,138625281571","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"53.098,0,7,25,8603,1386252815,138625281572","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.499,0,7,25,8603,1386252815,138625281573","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.599,0,7,25,8603,1386252815,138625281574","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.79900000000001,0,7,25,8603,1386252815,138625281575","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.699000000000005,0,7,25,8603,1386252815,138625281576","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.499,0,7,25,8603,1386252815,138625281545","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.599,0,7,25,8603,1386252815,138625281546","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.79900000000001,0,7,25,8603,1386252815,138625281547","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.699000000000005,0,7,25,8603,1386252815,138625281548","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"53.39900000000001,0,7,25,8603,1386252819,138625281977","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"53.39900000000001,0,7,25,8603,1386252819,138625281949","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.89900000000001,0,7,25,8603,1386252840,138625284078","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"52.99900000000001,0,7,25,8603,1386252840,138625284079","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"53.29900000000001,0,7,25,8603,1386252840,138625284080","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"53.09900000000001,0,7,25,8603,1386252840,138625284081","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"53.199000000000005,0,7,25,8603,1386252840,138625284082","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"53.1,16737996,7,25,8603,1386252840,138625284083","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":770},{\"l\":2}]}"},{"c":"52.9,16737996,7,25,8603,1386252840,138625284084","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":680},{\"l\":2}]}"},{"c":"53,16737996,7,25,8603,1386252840,138625284085","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":725},{\"l\":2}]}"},{"c":"53.2,16737996,7,25,8603,1386252840,138625284086","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":815},{\"l\":2}]}"},{"c":"53.3,16737996,7,25,8603,1386252840,138625284087","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":860},{\"l\":2}]}"},{"c":"52.7,16737996,7,25,8603,1386252840,138625284088","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":590},{\"l\":2}]}"},{"c":"52.8,16737996,7,25,8603,1386252840,138625284089","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":635},{\"l\":2}]}"},{"c":"52.89900000000001,0,7,25,8603,1386252840,138625284050","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.99900000000001,0,7,25,8603,1386252840,138625284051","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"53.29900000000001,0,7,25,8603,1386252840,138625284052","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"53.09900000000001,0,7,25,8603,1386252840,138625284053","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"53.199000000000005,0,7,25,8603,1386252840,138625284054","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"53.1,16737996,7,25,8603,1386252840,138625284055","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.9,16737996,7,25,8603,1386252840,138625284056","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53,16737996,7,25,8603,1386252840,138625284057","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53.2,16737996,7,25,8603,1386252840,138625284058","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53.3,16737996,7,25,8603,1386252840,138625284059","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.7,16737996,7,25,8603,1386252840,138625284060","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.8,16737996,7,25,8603,1386252840,138625284061","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53.4,16737996,7,25,8603,1386252845,138625284590","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":905},{\"l\":2}]}"},{"c":"52.6,16737996,7,25,8603,1386252845,138625284591","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":545},{\"l\":2}]}"},{"c":"52.5,16737996,7,25,8603,1386252845,138625284592","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":500},{\"l\":2}]}"},{"c":"41.998,0,7,25,8603,1386252845,138625284593","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.498,0,7,25,8603,1386252845,138625284594","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.698,0,7,25,8603,1386252845,138625284595","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.398,0,7,25,8603,1386252845,138625284596","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.598,0,7,25,8603,1386252845,138625284597","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.198,0,7,25,8603,1386252845,138625284598","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"53.4,16737996,7,25,8603,1386252845,138625284562","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.6,16737996,7,25,8603,1386252845,138625284563","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.5,16737996,7,25,8603,1386252845,138625284564","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"42.297999999999995,0,7,25,8603,1386252846,138625284699","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.898,0,7,25,8603,1386252846,13862528461","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.699000000000005,0,7,25,8603,1386252884,13862528842","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"43.89900000000001,0,7,25,8603,1386252884,13862528843","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"44.29900000000001,0,7,25,8603,1386252884,13862528844","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"43.99900000000001,0,7,25,8603,1386252884,13862528845","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"44.09900000000001,0,7,25,8603,1386252884,13862528846","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"44.199000000000005,0,7,25,8603,1386252884,13862528847","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"44.1,39423,7,25,8603,1386252884,13862528848","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":320},{\"l\":2}]}"},{"c":"43.699000000000005,0,7,25,8603,1386252884,138625288465","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.89900000000001,0,7,25,8603,1386252884,138625288466","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.29900000000001,0,7,25,8603,1386252884,138625288467","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.99900000000001,0,7,25,8603,1386252884,138625288468","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.09900000000001,0,7,25,8603,1386252884,138625288469","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.199000000000005,0,7,25,8603,1386252884,138625288470","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.1,39423,7,25,8603,1386252884,138625288471","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.9,39423,7,25,8603,1386252888,13862528889","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":230},{\"l\":2}]}"},{"c":"44,39423,7,25,8603,1386252888,138625288810","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":275},{\"l\":2}]}"},{"c":"44.2,39423,7,25,8603,1386252888,138625288811","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":365},{\"l\":2}]}"},{"c":"44.3,39423,7,25,8603,1386252888,138625288812","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":410},{\"l\":2}]}"},{"c":"43.7,39423,7,25,8603,1386252888,138625288813","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":140},{\"l\":2}]}"},{"c":"43.8,39423,7,25,8603,1386252888,138625288814","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":185},{\"l\":2}]}"},{"c":"43.6,39423,7,25,8603,1386252888,138625288815","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":95},{\"l\":2}]}"},{"c":"43.5,39423,7,25,8603,1386252888,138625288816","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":50},{\"l\":2}]}"},{"c":"44.4,39423,7,25,8603,1386252888,138625288817","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":455},{\"l\":2}]}"},{"c":"44.998,0,7,25,8603,1386252888,138625288818","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.498,0,7,25,8603,1386252888,138625288819","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.9,39423,7,25,8603,1386252888,138625288872","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44,39423,7,25,8603,1386252888,138625288873","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.2,39423,7,25,8603,1386252888,138625288874","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.3,39423,7,25,8603,1386252888,138625288875","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.7,39423,7,25,8603,1386252888,138625288876","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.8,39423,7,25,8603,1386252888,138625288877","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.6,39423,7,25,8603,1386252888,138625288878","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.5,39423,7,25,8603,1386252888,138625288879","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.4,39423,7,25,8603,1386252888,138625288880","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.698,0,7,25,8603,1386252889,138625288920","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.398,0,7,25,8603,1386252889,138625288921","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.598,0,7,25,8603,1386252893,138625289322","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.898,0,7,25,8603,1386252893,138625289323","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.29799999999995,0,7,25,8603,1386252893,138625289324","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.79799999999995,0,7,25,8603,1386252893,138625289325","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.098,0,7,25,8603,1386252893,138625289326","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.198,0,7,25,8603,1386252893,138625289327","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.499,0,7,25,8603,1386252893,138625289328","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"44.599,0,7,25,8603,1386252893,138625289329","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"44.79900000000001,0,7,25,8603,1386252893,138625289330","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"44.699000000000005,0,7,25,8603,1386252893,138625289331","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"45.39900000000001,0,7,25,8603,1386252893,138625289332","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"44.499,0,7,25,8603,1386252893,138625289381","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.599,0,7,25,8603,1386252893,138625289382","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.79900000000001,0,7,25,8603,1386252893,138625289383","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.699000000000005,0,7,25,8603,1386252893,138625289384","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.39900000000001,0,7,25,8603,1386252893,138625289385","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.89900000000001,0,7,25,8603,1386252897,138625289733","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"45.29900000000001,0,7,25,8603,1386252897,138625289734","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"44.99900000000001,0,7,25,8603,1386252897,138625289735","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"45.09900000000001,0,7,25,8603,1386252897,138625289736","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"45.199000000000005,0,7,25,8603,1386252897,138625289737","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":0.3,\"d\":360,\"e\":0}]}"},{"c":"45.1,39423,7,25,8603,1386252897,138625289738","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":770},{\"l\":2}]}"},{"c":"44.9,39423,7,25,8603,1386252897,138625289739","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":680},{\"l\":2}]}"},{"c":"45,39423,7,25,8603,1386252897,138625289740","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":725},{\"l\":2}]}"},{"c":"45.2,39423,7,25,8603,1386252897,138625289741","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":815},{\"l\":2}]}"},{"c":"45.3,39423,7,25,8603,1386252897,138625289742","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":860},{\"l\":2}]}"},{"c":"44.7,39423,7,25,8603,1386252897,138625289743","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":590},{\"l\":2}]}"},{"c":"44.89900000000001,0,7,25,8603,1386252897,138625289786","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.29900000000001,0,7,25,8603,1386252897,138625289787","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.99900000000001,0,7,25,8603,1386252897,138625289788","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.09900000000001,0,7,25,8603,1386252897,138625289789","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.199000000000005,0,7,25,8603,1386252897,138625289790","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.1,39423,7,25,8603,1386252897,138625289791","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.9,39423,7,25,8603,1386252897,138625289792","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45,39423,7,25,8603,1386252897,138625289793","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.2,39423,7,25,8603,1386252897,138625289794","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.3,39423,7,25,8603,1386252897,138625289795","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.7,39423,7,25,8603,1386252897,138625289796","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.8,39423,7,25,8603,1386252898,138625289844","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":635},{\"l\":2}]}"},{"c":"45.4,39423,7,25,8603,1386252898,138625289845","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":905},{\"l\":2}]}"},{"c":"44.6,39423,7,25,8603,1386252898,138625289846","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":545},{\"l\":2}]}"},{"c":"44.5,39423,7,25,8603,1386252898,138625289847","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"y\":120,\"l\":0.3,\"x\":500},{\"l\":2}]}"},{"c":"44.8,39423,7,25,8603,1386252898,138625289897","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.4,39423,7,25,8603,1386252898,138625289898","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.6,39423,7,25,8603,1386252898,138625289899","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.5,39423,7,25,8603,1386252898,13862528981","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"20.002,16764057,7,80,8603,1386259948,138625994827","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"e\":1.3,\"p\":{\"y\":303,\"x\":86},\"c\":4,\"f\":1.3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"20.001,13369395,7,80,8603,1386259948,138625994828","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"e\":1.3,\"p\":{\"y\":346,\"x\":86},\"c\":4,\"f\":1.3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"20,16711731,7,99,8603,1386259948,138625994829","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"e\":1.3,\"p\":{\"y\":323,\"x\":87},\"c\":4,\"f\":1.3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"20.003,10066329,7,80,8603,1386259949,138625994926","m":"{\"n\":\"丨\",\"t\":0,\"b\":false,\"e\":0.2,\"p\":{\"y\":301,\"x\":86},\"c\":4,\"f\":1.3,\"l\":0,\"w\":{\"b\":false,\"f\":\"黑体\"},\"z\":[{\"l\":16.5}]}"},{"c":"20,16777215,7,60,8603,1386259950,138625995022","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":221},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,true]],\"b\":false},\"z\":[{\"l\":16.5}]}"},{"c":"19.999,16777215,7,99,8603,1386259950,138625995023","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"e\":18,\"p\":{\"y\":395,\"x\":706},\"c\":4,\"f\":0.45,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"19.999,6710886,7,99,8603,1386259950,138625995024","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"e\":18,\"p\":{\"y\":274,\"x\":500},\"c\":4,\"f\":0.8,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"20.003,13421772,7,90,8603,1386259950,138625995025","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":303,\"x\":86},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,13421772,1,5,5,5,2,false,true]],\"b\":false},\"z\":[{\"l\":16.5}]}"},{"c":"20,13421772,7,28,8603,1386259951,138625995121","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":221},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"l\":16.5}]}"},{"c":"20.001,13369395,7,80,8603,1386259952,138625995219","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"e\":1.3,\"p\":{\"y\":346,\"x\":86},\"c\":4,\"f\":1.3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"20,16711731,7,99,8603,1386259952,138625995220","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"e\":1.3,\"p\":{\"y\":323,\"x\":87},\"c\":4,\"f\":1.3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"20.002,16764057,7,80,8603,1386259953,138625995318","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"e\":1.3,\"p\":{\"y\":303,\"x\":86},\"c\":4,\"f\":1.3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"19.999,6710886,7,99,8603,1386259954,138625995415","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"e\":18,\"p\":{\"y\":274,\"x\":500},\"c\":4,\"f\":0.8,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"20.003,13421772,7,90,8603,1386259954,138625995416","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":303,\"x\":86},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,13421772,1,5,5,5,2,false,true]],\"b\":false},\"z\":[{\"l\":16.5}]}"},{"c":"20.003,10066329,7,80,8603,1386259954,138625995417","m":"{\"n\":\"丨\",\"t\":0,\"b\":false,\"e\":0.2,\"p\":{\"y\":301,\"x\":86},\"c\":4,\"f\":1.3,\"l\":0,\"w\":{\"b\":false,\"f\":\"黑体\"},\"z\":[{\"l\":16.5}]}"},{"c":"19.998,16777215,7,80,8603,1386259955,138625995512","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":119,\"x\":98},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"19.999,3394815,7,80,8603,1386259955,138625995513","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"e\":1.3,\"p\":{\"y\":119,\"x\":123},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"19.999,16777215,7,99,8603,1386259955,138625995514","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"e\":18,\"p\":{\"y\":395,\"x\":706},\"c\":4,\"f\":0.45,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"20.002,16724736,7,50,8603,1386259956,138625995610","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":119,\"x\":160},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"l\":16.5}]}"},{"c":"20.001,16777215,7,70,8603,1386259956,138625995611","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":119,\"x\":160},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":16.5}]}"},{"c":"20.004,16777215,7,10,8603,1386259957,13862599576","m":"{\"k\":0,\"n\":\"■\",\"z\":[{\"l\":16.5}],\"e\":0.5,\"p\":{\"y\":168,\"x\":55},\"f\":2,\"r\":15,\"t\":0,\"b\":false,\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true}}"},{"c":"20.003,0,7,20,8603,1386259957,13862599577","m":"{\"r\":-3,\"n\":\"ω\",\"t\":0,\"b\":false,\"e\":1.3,\"p\":{\"y\":140,\"x\":163},\"c\":4,\"l\":0,\"w\":{\"b\":false,\"f\":\"黑体\"},\"z\":[{\"l\":16.5}]}"},{"c":"20.003,0,7,10,8603,1386259957,13862599578","m":"{\"c\":4,\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":103,\"x\":176},\"k\":0,\"f\":1.36,\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"l\":16.5}]}"},{"c":"20.003,0,7,10,8603,1386259957,13862599579","m":"{\"c\":4,\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":107,\"x\":147},\"k\":0,\"f\":1.36,\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"l\":16.5}]}"},{"c":"20,16777215,7,10,8603,1386259958,13862599585","m":"{\"k\":0,\"n\":\"■\",\"z\":[{\"l\":16.5}],\"e\":0.5,\"p\":{\"y\":168,\"x\":110},\"f\":2,\"r\":15,\"t\":0,\"b\":false,\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true}}"},{"c":"20,16777215,7,10,8603,1386259959,13862599594","m":"{\"k\":0,\"n\":\"■\",\"z\":[{\"l\":16.5}],\"e\":0.5,\"p\":{\"y\":168,\"x\":200},\"f\":2,\"r\":-15,\"t\":0,\"b\":false,\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true}}"},{"c":"6,16777215,7,50,211467,1386301741,138630174148","m":"{\"n\":\"1X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"6.4,16777215,7,50,211467,1386301741,138630174183","m":"{\"n\":\"2X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"6.8,16777215,7,50,211467,1386301742,138630174246","m":"{\"n\":\"3X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"7.2,16777215,7,50,211467,1386301742,138630174278","m":"{\"n\":\"4X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"8,16777215,7,50,211467,1386301743,138630174397","m":"{\"n\":\"6X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"7.6,16777215,7,50,211467,1386301743,138630174381","m":"{\"n\":\"5X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"8.4,16777215,7,50,211467,1386301744,138630174485","m":"{\"n\":\"7X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"9.1,16777215,7,50,211467,1386301745,138630174579","m":"{\"n\":\"9X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"8.8,16777215,7,50,211467,1386301745,138630174584","m":"{\"n\":\"8X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"9.3,16777215,7,50,211467,1386301746,138630174680","m":"{\"n\":\"10X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"9.5,16777215,7,50,211467,1386301747,138630174782","m":"{\"n\":\"11X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"9.9,16777215,7,50,211467,1386301748,138630174899","m":"{\"n\":\"12X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"10.3,16777215,7,50,211467,1386301748,138630174874","m":"{\"n\":\"13X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"10.7,16777215,7,50,211467,1386301749,138630174998","m":"{\"n\":\"14X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"11,16777215,7,50,211467,1386301750,138630175068","m":"{\"n\":\"15X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.3}]}"},{"c":"11.8,16777215,7,50,211467,1386301751,138630175176","m":"{\"n\":\"17X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"11.4,16777215,7,50,211467,1386301751,138630175177","m":"{\"n\":\"16X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"12.2,16777215,7,50,211467,1386301752,138630175275","m":"{\"n\":\"18X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"12.5,16777215,7,50,211467,1386301753,138630175359","m":"{\"n\":\"19X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.3}]}"},{"c":"13,16777215,7,50,211467,1386301754,138630175472","m":"{\"n\":\"21X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"12.8,16777215,7,50,211467,1386301754,138630175473","m":"{\"n\":\"20X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"13.2,16777215,7,50,211467,1386301755,138630175552","m":"{\"n\":\"22X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"13.4,16777215,7,50,211467,1386301756,138630175670","m":"{\"n\":\"23X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"14.05,16777215,7,50,211467,1386301757,138630175747","m":"{\"n\":\"25X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.35}]}"},{"c":"13.7,16777215,7,50,211467,1386301757,138630175769","m":"{\"n\":\"24X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.35}]}"},{"c":"14.4,16777215,7,50,211467,1386301758,138630175867","m":"{\"n\":\"26X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.35}]}"},{"c":"14.8,16777215,7,50,211467,1386301759,138630175966","m":"{\"n\":\"27X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"15.6,16777215,7,50,211467,1386301760,138630176064","m":"{\"n\":\"29X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"15.2,16777215,7,50,211467,1386301760,138630176065","m":"{\"n\":\"28X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"16,16777215,7,50,211467,1386301761,138630176163","m":"{\"n\":\"31X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"15.8,16777215,7,50,211467,1386301762,138630176262","m":"{\"n\":\"30X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"16.5,16777215,7,50,211467,1386301763,138630176329","m":"{\"n\":\"33X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"16.9,16777215,7,50,211467,1386301763,138630176360","m":"{\"n\":\"34X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"16.2,16777215,7,50,211467,1386301763,138630176361","m":"{\"n\":\"32X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"17.3,16777215,7,50,211467,1386301764,138630176457","m":"{\"n\":\"35X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.3}]}"},{"c":"17.6,16777215,7,50,211467,1386301764,138630176458","m":"{\"n\":\"36X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.3}]}"},{"c":"18.3,16777215,7,50,211467,1386301765,138630176554","m":"{\"n\":\"38X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"17.9,16777215,7,50,211467,1386301765,138630176555","m":"{\"n\":\"37X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"18.7,16777215,7,50,211467,1386301765,138630176556","m":"{\"n\":\"39X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"18.9,16777215,7,50,211467,1386301766,13863017661","m":"{\"n\":\"40X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"19.1,16777215,7,50,211467,1386301766,138630176653","m":"{\"n\":\"41X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"6.4,16777215,7,50,211467,1386301767,138630176750","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"2X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"6,16777215,7,50,211467,1386301767,138630176751","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"1X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"7.2,16777215,7,50,211467,1386301768,13863017682","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"4X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"7.6,16777215,7,50,211467,1386301768,13863017684","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"5X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"6.8,16777215,7,50,211467,1386301768,138630176849","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"3X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"8.4,16777215,7,50,211467,1386301769,13863017693","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"7X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"8,16777215,7,50,211467,1386301769,138630176945","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"6X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"9.2,16777215,7,50,211467,1386301770,138630177042","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"9X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"9.5,16777215,7,50,211467,1386301770,138630177043","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"11X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"8.8,16777215,7,50,211467,1386301770,138630177044","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"8X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"9.3,16777215,7,50,211467,1386301771,138630177140","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"10X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"9.9,16777215,7,50,211467,1386301771,138630177141","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"12X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"10.7,16777215,7,50,211467,1386301772,138630177237","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"14X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"11.1,16777215,7,50,211467,1386301772,138630177238","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"15X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"10.3,16777215,7,50,211467,1386301772,138630177239","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"13X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"11.4,16777215,7,50,211467,1386301773,138630177335","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"16X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"11.8,16777215,7,50,211467,1386301773,138630177336","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"17X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"12.8,16777215,7,50,211467,1386301774,138630177432","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"20X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"12.2,16777215,7,50,211467,1386301774,138630177433","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"18X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"12.5,16777215,7,50,211467,1386301774,138630177434","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"19X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"13.2,16777215,7,50,211467,1386301775,138630177530","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"22X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"13,16777215,7,50,211467,1386301775,138630177531","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"21X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"13.4,16777215,7,50,211467,1386301776,138630177695","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"23X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"13.7,16777215,7,50,211467,1386301776,138630177628","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"24X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"14.4,16777215,7,50,211467,1386301777,138630177725","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"26X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"14.05,16777215,7,50,211467,1386301777,138630177726","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"25X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"14.8,16777215,7,50,211467,1386301777,138630177727","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"27X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"15.6,16777215,7,50,211467,1386301778,138630177823","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"29X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"15.2,16777215,7,50,211467,1386301778,138630177824","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"28X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"16.2,16777215,7,50,211467,1386301779,138630177920","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"32X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"16,16777215,7,50,211467,1386301779,138630177921","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"31X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"15.8,16777215,7,50,211467,1386301779,138630177922","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"30X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"16.9,16777215,7,50,211467,1386301780,138630178018","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"34X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"16.5,16777215,7,50,211467,1386301780,138630178019","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"33X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"17.6,16777215,7,50,211467,1386301781,138630178115","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"36X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"17.3,16777215,7,50,211467,1386301781,138630178116","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"35X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"17.9,16777215,7,50,211467,1386301781,138630178117","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"37X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"18.3,16777215,7,50,211467,1386301782,138630178213","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"38X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"18.7,16777215,7,50,211467,1386301782,138630178214","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"39X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"5,16777215,7,20,211467,1386301783,138630178310","m":"{\"f\":1.2,\"a\":0,\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":-120},\"c\":3,\"n\":\"□\",\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,16777215,1,8,8,4,2,false,false]],\"b\":true},\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"e\":25}"},{"c":"18.9,16777215,7,50,211467,1386301783,138630178311","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"40X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"19.1,16777215,7,50,211467,1386301783,138630178312","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"41X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"5,16763904,7,20,211467,1386301784,13863017848","m":"{\"a\":0,\"t\":0,\"b\":false,\"c\":3,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"e\":10,\"k\":0,\"f\":1.2,\"z\":[{\"c\":16763904,\"l\":0},{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"p\":{\"y\":56,\"x\":330},\"n\":\"■\"}"},{"c":"5,16711680,7,20,211467,1386301784,13863017849","m":"{\"f\":1.2,\"a\":0,\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":-120},\"c\":3,\"n\":\"■\",\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,16777215,1,8,8,4,2,false,false]],\"b\":true},\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"e\":25}"},{"c":"5,16763904,7,60,211467,1386301785,13863017855","m":"{\"n\":\"■\",\"a\":0,\"t\":0,\"b\":false,\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"p\":{\"y\":10,\"x\":600},\"c\":3,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,8,8,4,2,false,false]],\"b\":true},\"r\":45}"},{"c":"5,16711680,7,40,211467,1386301785,13863017856","m":"{\"n\":\"気\",\"a\":1,\"t\":0,\"b\":false,\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"p\":{\"y\":60,\"x\":600},\"c\":3,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,2,2,4,2,false,false]],\"b\":false},\"r\":-10}"},{"c":"5,16777215,7,60,211467,1386301785,13863017857","m":"{\"n\":\"100%\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":800},\"c\":3,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,2,2,4,2,false,false]],\"b\":false},\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}]}"},{"c":"20.5,13056,7,1,253165,1386302940,138630294088","m":"{\"z\":[{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3}],\"n\":\"一                                                                                                                                           \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                               ▏▎▉▌▎        ▏                                               \\r                                                                               ▎▋▏▍▋▌▎▍▌▍▌▌▍▌▌▌▌▍▎                                          \\r                                                                              ▎▌▋▏▎▌▋▍▎▎▎▏▏▏▏▏▎▎▍▌▋▎▏   ▏▋▊▌                                \\r                                                                            ▏▌▊▊▊▉▌▎▏▏▏▏▏▏▏▏▏▏▏▏▏▏▎▌▌▍ ▎▍▌▌▋▊                               \\r                                                                           ▎▌▉▋▌▍▍▎▏▏▏▏▏▏▏▏▏▏▏▎▏▏▏▏ ▏▍▋▋▋▌▍▋█▎▏                             \\r                                                                           ▋▉▍▏▏  ▏▏▏▏▏▏▏▎▎▏▎▏▏▎▏▏▏ ▏▍▋▋▋▎▏▎▍▊▍                             \\r                                                                          ▋▋▌  ▏▎▏▏▏▏▏▏▏▎▎▍▏▏▏▎▏▏▏ ▍▌▌▌▌▍    ▍▋▌                            \\r                                                                          ▊▍▏▏▍▍▎▏▏▏▏▏▏▏▎▎▎▎▎▏▏▏▏▎▎▌▌▌▍▌▌▏▏▏▏▏▍▋▍▏                          \\r                                                                        ▎▌▍▎▎▋▍▎▏▏▏▏▏▏▎▍▎▏▏▌▋▍▏▏▏▎▎▌▌▋▍▍▍▍▏▏▏▏▎▍▋▏                          \\r                                                                       ▏▍▋▏▌▋▌▏▏▏▏▏▎▍▍▌▋▏▏▏▍▎▍▌ ▏▏▎▏▍▋▌▎▎▌▏▏▏▏▏▎▋▏                          \\r                                                                       ▌▌▎▋▋▌▏▏▏▏▏▍▌▎▏▏▍▎▏▎▍▏▏▍▌▎▏▏ ▏▍▋▍▎▋▎▏▏▏▏▏▍▌▎                         \\r                                                                       ▍▌▋▊▍▏ ▏▏▏▌▍▏  ▎▌▎▎▎▍▏  ▊▌▎▏▏▏▏▌▌▌▌▍▏ ▏▏▏▎▌▍                         \\r                                                                     ▏▍▌▋▉▍▏ ▏▏▎▋▍▏   ▎▌▎▎▎▍▏  ▏▍▌▏▏▏ ▎▌▋▋▍▎ ▏▏▏▏▌▍                         \\r               ▌▌▎                                                   ▏▋▊▊▊ ▏▏▏▍▌▌     ▎▌▍▍▍▍▏   ▎▌▍▏▏▏ ▎▌▊▊▌ ▏▏▏▏▍▍▍                        \\r               ▍▌▍▌▎                                                ▏▎▊▊▋▍ ▏▏▎▌▍      ▏▍▌▍▎▍▏    ▏▌▎▏▏▏▏▎▋▋▌▏▏▏▏▏▎▍▋                        \\r              ▏▎▎▏▎▍▍▏                                              ▍▋▊▌▍▏▏▏▎▌▏  ▏    ▏▏▋▍▍▌▏    ▏▌▎▎▏▏▏▏▏▎▍▍▏▏▏▏▏▎▋                        \\r             ▏▎▍▎▏▏▎▎▌▍▎                                            ▌▋▌▌▎ ▏▎▌▊▍▎▍       ▋▌▍▊▎▏    ▏▍▎▏▎▏▏▏▏▎▌▏▏▏▏▏▎▍▍▏                      \\r             ▏▍▍▍▎▏▏▏▏▍▍▌▏                                          ▌▋▌▍▎▏▌▋▋▎▏         ▋▌▌▌▏▏▏▍▏  ▍▍▏▏▏▎▏▏▎▌▎▏▏▏▏▏▎▋▎                      \\r               ▎▎▍▎▏▏▏▏▏▎▌▍▎                                       ▏▍▌▌▎▏▏▋▋▌           ▍▌▌▌▏   ▏▏▎▌▌▏▏▏▏▏▏▎▌▎▏▏▏▏▏▏▋▎                      \\r                  ▍▍▎▏▏▏▏▏▎▍▍▏                                     ▎▍▌▌▎▏▏▌▎▏ ▎▎         ▍▋▌▏      ▌▋▋▎▏▏▏▏▎▌▍▎▏▎▏▏▏▌▍▎                     \\r       ▏▏▏▏▏▏▏▏▏▏ ▍▌▋▌▍▎▎▏▏▏▎▌▌▍                                   ▍▍▍▌▎▏▏▌▍▍▌▌▌▌        ▍▌▊▏  ▋▌▍  ▎▋▎▎▎▏ ▎▋▌▎▏▏▎▏ ▍▌▌                     \\r     ▏▎▋▌▍▍▌▍▍▍▍▍▍▎▎▎▍▍▍▍▌▍▎▏▎▎▎▏▎▎▎▏                              ▌▍▍▌▎▏▎▌▋▌  ▏▍         ▏▊▎▏▍▎▎▎▎ ▎▌▏▎▎▏ ▎▋▊▎ ▎▎▏▏▏▌▌                     \\r      ▏▍▎▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▎▎▍▌▍▏       ▏▎▎▏                        ▏▎▎▍▍▍▎▎▎▍▌▌  ▏▎         ▏▋▌▌▌  ▏▍▏▎▌▏▏▏▏▏▎▋▋▍▏▏▎▎▏▏▍▌▎▏                   \\r      ▏▍▎▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▎▌▏          ▏▎▍▏                     ▎▌▏▍▌▍▎▎▍▎▎▎▍▏▎▌           ▌▋▌  ▏▍▏▎▌▏▎▎▏▏▎▌▋▍▏ ▎▎▏▏▎▍▌▏                   \\r      ▏▌▎▎▎▎▎▎▎▎▎▎▎▍▍▍▍▍▍▍▌▌▍▌▌▍           ▎▍▍                   ▎▌ ▍▌▍▎▎▌▎▏▏▌▋▌▎            ▎▌▌▋▌▏ ▎▌▎▎▎▏▏▍▊▉▌▎ ▎▎▎▏▏▎▋▏                   \\r      ▏▌▌▍▍▎▎▍▋▌▌▍▍▌▌▌▌▌▋▌▌▌▌▍▍▎▏▏▏▏▎▏▏       ▎▎▎        ▏▎▋▊▊▋▎▎▎▎▏▍▌▍▎▍▋▎▏                   ▌▌▎  ▎▌▎▎▎▏▎▍▊▉▋▍ ▏▎▎▏▏▎▋▎▏                  \\r       ▎▏▏ ▏▎▍▌▌▍▍▍▍▎▎▏▏              ▏▎▎▍▎▏▏   ▏▍▏▏   ▏▎▊▉▊▊▊▊▉▋▍ ▏▌▋▍▎▍▍                          ▎▌▍▎▏▏▎▌▊▉▋▌ ▏▎▎▏▏▏▌▌▎                  \\r         ▏▍▋▌▎▏▏▏▏                         ▎▍▌▏▏  ▏▎▎  ▎▉▊▋▋▌▌▋▋▋▍ ▏▍▌▍▎▎▏                          ▎▌▌▎▏▏▌▋▊▊▋▌ ▏▎▍▏▏▏▎▋▍                  \\r         ▏▎                                   ▍▍▎    ▏▍▋▊▋▋▌▋▌▌▋▋▌▍ ▍▌▌▎▏▏       ▌▌▋▌▍▎▎▏           ▎▌▌▎▏▎▌▋▊▊▊▋▏▏▎▍▎▏▏▎▌▍▏                 \\r                                                ▏▍▏  ▍▋▊▋▌▌▋▌▋▋▌▋▋▋▎▍▌▌▏▏▎       ▋▍▎▍▍▍▍▋▌▎         ▎▌▌▎▏▌▋▋▋▊▋▋▎▏▏▍▎▏▏▏▌▌▍                 \\r                                                  ▏▎▎▌▋▋▌▌▌▌▌▌▌▌▌▋▋▌▌▍▌▎▎▏       ▌▎     ▏▎▎         ▏▎▌▍▍▋▋▋▊▌▌▍▎▏▏▎▍▎▏▏▎▌▋                 \\r                                                    ▏▊▋▋▌▌▌▋▌▌▋▌▋▋▌▋▌▌▌▎▏        ▌▎     ▏▎▎         ▏▍▋▋▋▋▋▊▉▊▌▍▍▏▏▎▍▎▏▏▎▍▋                 \\r                                                   ▏▎▊▋▋▌▋▋▋▋▌▌▋▌▌▋▋▋▋▋▍▍▍       ▍▏     ▎▎▎         ▎▌▊▋▌▍▋▋▌▍▏▏▍▏▏▏▍▎▏▏▏▍▋▎▏               \\r                                                   ▎▋▊▋▋▋▋▋▋▋▌▌▌▋▋▌▌▋▋▊▍▍▋▌▎    ▏▍▏     ▏▎▎         ▎▌▍▍▍▍▍▎   ▏▌▎▏▏▍▎▎▏▏▎▍▌▎               \\r                                                   ▎▋▊▋▋▌▋▋▋▋▌▌▋▋▋▋▌▌▋▋▌▍▍▋▎   ▏▎▏▏     ▏▏▏        ▎▎▎▍▍▌▋▏    ▏▌▎▏▏▍▎▎▏▏▎▍▋▎               \\r                                                   ▏▎▉▋▋▋▋▋▋▋▋▋▌▋▌▌▋▌▌▋▌▌▌▌▎▏  ▏▎▏      ▎▎▎        ▍▍▎▌▌▌▌▏    ▏▌▍▎▏▍▎▎▏▏▏▎▋▎               \\r                                                     ▉▊▋▌▋▋▋▋▋▌▌▌▌▌▌▋▋▌▋▋▌▋▋▌▏ ▏▎       ▎▎▏        ▍▌▍▋▋▌      ▏▍▍▎ ▍▍▎▏▏▏▎▌▍▎              \\r                                                     ▉▊▊▋▋▋▋▋▋▋▋▋▌▌▌▌▌▌▋▋▋▋▊▊▋▏▏▎       ▎▏▏       ▎▍▌▌▋▍▏      ▏▍▍▎ ▎▎▎▏▏▏▏▍▌▌              \\r                                                     ▎▋▉▊▊▋▋▋▋▋▋▋▋▋▌▌▋▌▋▋▋▋▋▋▊▎▎▌       ▏▏      ▏▍▋▋▌▌▌▎       ▏▎▌▍ ▎▍▍▏▏▏▏▎▌▌              \\r                                                       ▏▌▋▋▊▊▋▋▋▋▋▋▋▌▌▋▌▌▋▋▋▋▊▏▎▌▍▎▏▏   ▏▏   ▏▎▏▌▋▊▌▌▌▍▎        ▏▌▍ ▎▎▍▏▏▏▏▎▍▌▎             \\r                                                          ▎▋▋▋▋▋▋▋▋▌▋▌▌▋▋▋▋▌▌▎▎▏▎▋▋▋▋▋▌▌▋▌▍▍▊▉▉ ▎▍  ▎▌▉▍        ▏▌▍ ▎▎▍▎▏▏▏▏▍▌▍▏            \\r                                                          ▏▍ ▎▍▌▋▋▋▋▋▋▋▋▋▋▌▎  ▍▎      ▎▊▊▊▋▌▊▋▍▊▌▎    ▋▌▍        ▌▍▏▏▎▍▎▏▏▏▏▎▍▋▏            \\r                                                         ▎▍▎ ▏▏▎▎▍▌▋▋▊▋▋▋▋     ▎▌    ▍▌▋▎▏ ▎▌▌▍▋▌▍               ▌▌▏▏▎▍▎▏▏▏▏▎▍▋▏            \\r                                                         ▌▍▎▏▎▎▎▎▎▏▎▍▌▋▊▋▋      ▏▌▍▌▉▋▌▏  ▏▌▋▋▌  ▏▌▏             ▌▌▏▏▎▍▎▏▏▏▏▎▎▋▎▏           \\r                                                         ▌▍▏▏▎▎▎▎▎▎▎▏▏▏▌▋▊▎▏     ▌▌▌▌▌▎ ▏▎▌▋▊▌▎    ▍▍            ▋▌▏▏▎▎▍▏▏▎▏▎▎▌▌▎           \\r                                                        ▏▍▎▏▏▎▍▎▎▎▎▎▎▎▎▌▍▎▍▍▍  ▏▎▋▌▍▍▋▍  ▍▋▎▋▍     ▏▎▎           ▋▌▏▏▎▍▍▎▏▏▎▎▎▍▌▍           \\r                                                       ▏▍▍▎ ▎▎▎▍▎▎▎▎▎▎▎▋▌  ▎▎▏ ▎▌▋▎▏▎▋▌▏▍▌▍▏▌▍      ▏▍           ▋▌▏▏▎▎▍▎▏▏▎▎▎▎▋▍           \\r                                                       ▏▌▎▏▏▎▎▍▎▎▎▎▎▎▎▎▋▌▏    ▍▌▋▌▎ ▏▌▌▍▌▎▏ ▌▍   ▏▎▏▏▍           ▋▌▏▏▎▎▍▎▏▏▎▎▎▎▌▍▏          \\r                                                       ▏▌▎▏▏▍▎▎▎▎▎▎▎▎▎▎▋▌     ▌▌▍▌▌▍▌▌▌▋▌▎  ▌▍  ▍▋▍▏▏▎▏          ▋▌▏▏▏▎▍▎▏▏▎▎▎▎▌▌▍          \\r                                                      ▏▏▌▏▏▎▎▎▎▎▎▎▎▎▎▎▎▋▌▏  ▏▌▎▎▎▌▍▍▌▎▌▉▍▏  ▌▍▎     ▎▋▎▏         ▋▌▏▏▏▎▍▎▎▏▎▎▎▎▍▌▋          \\r                                                      ▎▍▍▏▏▎▍▎▎▍▎▎▎▎▎▎▎▋▌▏  ▏▌▏▎▌▎▎▎▍▏▍▋▏▏  ▏▍▋▎▏  ▍▌▊▍▏         ▋▌▏▏▎▎▎▎▎▏▏▎▎▎▎▌▋          \\r                                                      ▎▍▎▏▏▎▎▎▎▎▎▎▎▎▎▎▎▋▌▏ ▎▍▏▎▍▌▏▏▎▌▏▏▎▏▏▏▏ ▎▌▊▋▌▋▊▊▊▌▎         ▋▌▏▏▎▎▎▎▎▏▏▎▎▎▎▍▋▏         \\r                                                      ▍▌▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▋▌  ▎▍ ▍▍▎▏▎▎▌▏  ▎▎▎▍▏▎▍▊▋▋▋▊▊▊▊▍         ▋▌▏▏▎▎▎▎▎▏▏▎▎▎▎▍▌▍▏        \\r                                                     ▏▍▍▏▏▎▍▍▎▎▎▎▎▎▎▎▎▎▋▌▏▏▏▎▎▌▍ ▏▏▎▌▏▏▏  ▏▍▎▎▎▊▋▋▋▋▋▋▊▍        ▏▋▌▏▏▎▍▎▎▎▏▏▎▎▎▎▍▌▌▎        \\r                                                     ▎▍▍▏▏▎▍▎▎▎▎▎▎▍▎▎▎▎▌▌▎▎▏▏▍▌▍▏ ▎▍▍▏▏▏   ▎▏▎▍▊▋▋▋▋▋▋▉▍▏       ▏▋▌ ▏▎▍▎▏▏▎▏▏▎▎▎▎▍▋▎        \\r                                                     ▌▍▎▏▏▎▍▎▎▎▎▎▎▎▎▎▎▎▍▌▋▏▏▎▌▌▍▏ ▎▌▍▏ ▏▏▎▎▎▏▎▎▊▋▋▋▋▋▋▊▋▍      ▏▎▋▌▏▏▎▍▏▏▏▏▏▏▎▎▎▎▎▋▎        \\r                                                     ▌▍▎▏▎▎▍▎▎▎▎▎▎▎▎▎▎▏▍▋▉▎▎▍▋▍▎ ▏▍▌▌▎▏▎▎▎▎▎▏▎▎▊▋▋▌▋▋▋▊▋▌      ▏▎▋▌▏▏▎▎▎▏▏▏▏▏▎▎▎▎▎▋▎▏       \\r                                                     ▋▎▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▎▌▋▊▎▍▍▎▏▏▏▎▍▌▍▎▎▎▎▎▎▎▏▏▎▊▋▋▋▌▌▌▋▊▋      ▏▍▋▍▏▏▎▎▏▏▏▏▏▏▏▎▎▎▎▌▍▎       \\r                                                    ▏▌▎▏▏▎▎▎▍▎▎▎▎▎▎▎▍▌▋▌▍▏▏▍▌▎▎▎▎▎▌▋▎▏▏▎▎▎▎▎▏▏▍▊▋▋▋▌▌▌▋▊▋▏     ▏▌▋▍ ▏▎▎▏▏▏▏▏▏▏▎▎▎▎▍▌▍       \\r                                                   ▏▎▍▎▏▏▎▎▍▎▎▎▎▎▎▎▌▋▌▎   ▎▌▌▎▎▎▏▌▋▌▏  ▏▎▎▎▎▏▎▍▊▋▋▋▌▌▋▋▋▊▌▏    ▏▋▌▍▏▏▎▎▏▎▎▏▏▏▏▎▎▎▎▍▌▌       \\r                                                   ▏▍▎▏▏▏▎▍▎▎▎▎▎▎▎▎▋▌▎    ▎▍▌▍▎▎▎▊▌▎    ▏▏▏▎▏▎▍▊▋▋▋▋▋▋▋▋▋▊▏    ▏▋▌▎ ▏▏▏▏▎▎▎▏▏▏▎▎▎▎▎▌▌       \\r                                                   ▎▌▎▏▏▎▎▍▍▎▎▎▎▎▎▏▌▌▌ ▏▏▏ ▍▌▎▏▍▌▌▎ ▏    ▏▏▏▏▎▌▊▋▋▋▋▋▋▋▋▋▊▏    ▏▊▍▎▏▏▏▏▏▎▎▏▏▏▏▎▎▎▎▎▌▌       \\r                                                   ▎▌▏▏▏▎▎▎▎▎▎▎▎▎▎▎▌▋▋  ▏  ▎▍▎▎▌▊  ▏▏▍▎▏   ▏▏▎▌▋▋▋▌▌▌▌▌▋▋▊▌▎   ▏▊▍▎ ▏▏▏▏▎▎▎▏▏▏▎▎▎▎▎▌▌▎      \\r                                                   ▎▌▏▏▏▎▎▎▍▎▎▎▎▎▍▌▋▊▋▎   ▏▍▌▏▌▋▊▎▏ ▏▎▍▍▏▏▏ ▏▎▋▊▋▌▌▍▍▍▌▋▋▋▋▍   ▏▉▍▏▏▏▏▏▏▎▎▎▏▏▏▎▎▎▎▎▍▌▍▏     \\r                                                   ▎▌▏▏▏▎▎▎▎▍▎▎▎▍▌▌▎▋▊▍▏▏▏▋▋▋▍▋▋▋▌▎  ▏▎▍▍▎▎▏ ▎▋▋▋▋▌▌▍▍▌▋▋▋▊▌   ▎▊▎▏▏▏▏▏▏▎▎▍▏▏▏▏▎▎▎▎▍▌▌▏     \\r                                                  ▏▎▌▏▏▏▎▎▎▎▎▎▎▎▎▍▌▏▌▋▋▍▍▋▋▋▋▋▌▌▍▊▌▎ ▏▏▎▏▎▎▏ ▎▋▋▋▋▌▌▌▍▌▌▋▋▊▋▎ ▏▎▊▎▏▏▏▏▏▏▎▎▍▏▏▏▏▎▎▎▎▍▍▌▏     \\r                                                  ▎▍▍▏▏▎▎▏▎▎▍▎▎▎▎▍▌▎▎▍▋▋▋▌▌▋▋▋▍▍▍▋▌▌  ▏▏▏▏   ▎▊▋▋▋▌▋▌▍▌▌▋▋▋▋▋ ▏▍▋▎▏▏▎▏▏▏▏▎▍▎▏▏▏▎▎▎▎▎▍▋▏     \\r                                                  ▍▍▎▏▎▎▎▏▎▍▎▎▎▎▎▎▍▌▍▍▋▌▌▌▌▌▌▍▌▍▍▌▋▋▎  ▏    ▎▌▋▋▋▋▌▌▌▍▍▌▋▋▋▋▊ ▎▍▌▏▏▏▏▏▏▏▏▎▍▎▏▏▏▎▎▎▎▎▍▋▏     \\r                                                  ▍▍▎▎▎▎▏▏▎▍▎▎▎▎▎▎▎▌▋▋▊▋▋▌▌▌▌▌▌▌▌▍▌▋▌▏  ▏▎▍▌▋▋▋▋▋▋▌▌▌▍▌▌▌▋▋▋▊▎▌▌▍▏▏▏▎▏▏▏▏▎▍▎▎▏▏▎▍▎▎▎▍▋▏     \\r                                                  ▍▍▎▌▎▏▏▏▎▍▎▎▎▎▎▎▏▍▋▋▍▋▋▋▌▋▋▌▌▌▋▌▌▌▋▍▎▎▌▋▋▌▌▋▋▋▋▋▋▌▌▌▍▌▋▋▋▋▋▋▋▌▎▏▏▎▏▏▏▏▏▎▍▍▎▏▏▎▎▍▎▎▍▋▎▏    \\r                                                  ▍▍▍▍▎▏▏▏▎▎▍▎▎▎▎▎▎▍▌▌ ▍▌▋▋▋▋▌▍▍▋▋▋▋▋▋▋▌▋▋▌▌▌▋▋▋▋▋▌▌▌▌▌▌▌▋▋▋▋▌▌▌▏▏▏▏▎▏▏▏▏▎▍▍▎▏▏▎▎▎▎▎▎▌▎▏    \\r                                                  ▍▌▌▍▏▏▏▎▎▍▎▎▎▎▎▎▎▎▍▌▍▏▎▌▋▋▋▌▌▌▌▋▋▋▍▌▌▋▌▋▋▋▋▋▋▋▋▋▌▌▌▌▍▌▌▋▋▋▋▍▌▌▏▏▏▎▏▎▎▏▏▎▎▍▎▏▏▎▎▍▎▎▎▌▍▎    \\r                                                  ▍▌▋▏▏▏▏▎▎▍▍▎▎▎▎▎▎▎▎▍▌▎▎▎▊▋▋▋▋▌▌▌▋▋▍▌▌▌▌▌▋▋▋▋▋▌▋▋▌▌▌▍▌▌▌▋▊▋▍▎▍▌▏▏▏▏▎▏▏▏▏▎▎▍▎▎▏▎▎▎▍▍▍▌▍▎    \\r                                                  ▌▋▋▏▏▏▏▏▎▍▎▎▎▎▎▎▎▎▎▎▍▌▋▋▌▍▍▋▋▋▋▋▋▋▋▋▋▌▍▌▋▋▌▌▋▋▋▌▋▌▌▌▌▋▋▊▊▌ ▎▍▍▏▏▏▏▏▏▏▏▏▎▎▍▎▎▏▎▎▎▎▍▍▍▍▎    \\r                                                  ▋▋▌ ▏▏▏▎▎▎▎▎▎▎▎▎▎▎▎▎▏▎▌▉▌▏ ▏▍▌▋▋▋▋▋▋▋▋▌▋▋▌▏▏▍▊▊▋▋▋▋▋▋▊▊▊▌▎ ▌▍▎▏▎▎▏▏▏▏▏▏▎▎▍▎▎▏▎▎▎▎▍▌▍▍▎    \\r                                                  ▋▋▎▏▏▏▎▎▎▍▎▎▎▎▎▎▎▎▎▎▎▎▌▋▍▍▎  ▏▏▋▋▋▋▌▌▌▍▌▌▋▍▎▎▌▋▋▋▊▊▊▋▊▋▍▏  ▋▍▎▎▎▎▏▏▏▏▏▏▎▎▍▎▎▏▎▎▎▏▍▌▌▌▎    \\r                                                  ▌▌▎ ▏▎▎▎▎▎▍▎▎▎▎▎▎▎▎▎▎▍▍▍ ▍▌▋▎▏▏▋▌▍    ▎▎▍▊▋▍   ▏▌▌▌▌▌▎▏▋▍▎▏▌▍▎▎▎▏▏▎▏▏▏▏▎▎▍▍▎▏▎▎▎▎▍▌▋▌▎    \\r                                                  ▌▌▍▏▏▎▎▏▎▍▎▎▎▎▎▎▎▎▎▎▎▍▌▌ ▏▏▏▎▍▌▉▌▎   ▏▍▌▌▋▏   ▎▍▋▏  ▍▏▏▍▏▏▏▌▌▌▌▏▏▏▏▏▏▏▏▎▎▍▎▎▏▎▎▍▎▎▍▋▌▍    \\r                                                  ▍▍▍ ▏▎▎▎▎▎▍▎▎▍▎▎▎▎▎▎▎▍▌▌ ▏▏    ▌▌▌▌▌▌▌▎▏ ▏▎▎▏▌▊▉▊▍▎▏▍▌▌  ▏▍▋▋▋▌▎▏▏▏▏▏▏▏▎▎▎▎▎▎▎▎▎▎▎▍▊▋▍    \\r                                                  ▏▎▍▏▏▎▍▏▎▍▎▎▎▎▎▎▎▎▎▎▎▍▌▍ ▎▌▋▏  ▏▎▍▍▏▏▌    ▍▌▋▋▋▊▋▌▎  ▏▏  ▍▊▍▎▏▌▎▏▏▏▏▏▏▎▎▎▍▎▎▎▎▎▍▎▎▍▌▋▍    \\r                                                  ▏▎▌ ▏▎▎▎▎▎▍▎▎▎▎▎▎▎▎▎▎▌▌▎ ▎▌▉▋▌▌▌▋▋▍▏▎▌▌▍▎▍▍▌▌▋▋▋▌▏       ▍▉  ▏▋▎▏▏▎▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▌▋▍    \\r                                                  ▏▎▌ ▏▎▍▏▎▎▎▎▎▎▎▎▎▎▎▎▎▌▌▎ ▎▌▉▊▋▋▊▊▋▍▏▏▍▉▋▋▋▋▋▋▋▋▋▊▏      ▎▎▎ ▎▍▋▎▏▏▏▏▏▏▎▎▎▍▎▎▎▎▎▎▎▎▎▍▌▍    \\r                                                  ▏▍▌ ▏▎▍▎▎▎▎▎▎▎▎▎▍▎▎▎▎▋▍  ▏▍▊▋▋▋▋▋▋▌▏▏▏▉▊▋▋▋▋▋▋▋▋▊▏      ▏▏  ▎▍▋▎▏▏▎▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▌▍▎    \\r                                                  ▏▍▌▏▏▎▍▎▎▎▎▎▎▎▎▎▎▎▎▎▎▋▍  ▎▍▊▋▌▌▋▋▋▋▏  ▊▋▌▌▌▌▌▋▋▋▊▏          ▎▍▋▎▏▏▏▏▏▏▎▎▎▎▎▎▎▎▎▍▎▎▍▌▎▏    \\r                                                   ▎▋ ▏▎▍▎▎▏▎▎▎▍▎▎▍▎▎▎▌▌▍  ▏▍▊▋▋▋▌▋▋▋▏  ▊▋▌▌▋▋▋▋▋▋▊▏          ▏▍▋▎▏▏▏▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▍▌▏     \\r                                                   ▎▋▏▏▏▍▎▎▏▏▎▎▍▍▎▎▎▎▍▊▎▏  ▏▍▊▋▋▌▋▋▋▋▏  ▊▋▋▌▋▋▌▋▋▋▉▏          ▏▎▋▎▏▏▏▏▏▏▎▍▎▎▎▎▎▎▎▎▎▎▍▌▏     \\r                                                   ▎▋▎▏▏▎▍▎▏▏▏▎▍▎▎▎▎▍▌▊▏   ▏▎▊▋▋▋▌▋▋▊▏  ▊▋▋▋▌▌▋▋▋▋▊▎           ▏▋▍▎▏▏▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▍▋▏     \\r                                                   ▎▌▍▎▏▎▍▎▎▏▏▎▎▎▎▎▎▋▋▏    ▏▎▊▋▋▌▋▋▋▊▏  ▊▋▋▌▋▋▌▋▋▋▉▏           ▏▋▍▎▎▏▏▏▏▎▎▎▎▎▎▍▎▎▎▎▎▍▋▏     \\r                                                   ▏▎▌▎▏▎▍▍▎▏▏▏▎▎▎▎▋▋▌      ▎▉▋▋▋▌▋▋▊▏  ▊▋▋▌▌▌▌▋▋▋▊▏           ▏▋▌▍▎▏▏▏▎▎▎▎▎▎▎▎▎▎▎▎▎▍▋▏     \\r                                                     ▋▍▏▎▎▍▍▎▎▎▎▎▎▍▊▎       ▎▊▋▋▌▋▋▋▊▏  ▊▋▋▌▋▋▌▋▋▋▊▏           ▏▍▌▌▎▏▏▏▎▍▎▎▎▎▎▎▎▎▎▎▍▍▌▏     \\r                                                     ▌▌▎▏▎▍▎▎▎▎▎▎▍▊         ▏▊▋▋▋▌▋▋▊▏  ▋▋▋▋▌▋▋▋▋▋▊▏             ▋▋▎▏▏▏▎▍▍▎▎▎▎▎▎▎▎▎▍▍▌▏     \\r                                                     ▎▌▌▏▎▎▍▎▎▎▎▌▌▌         ▏▊▋▋▌▌▋▋▊▎▏ ▋▋▋▋▋▋▌▌▌▋▊▏             ▌▌▋▏▏▏▎▍▍▎▎▎▎▎▎▎▎▎▍▌▎▏     \\r                                                      ▍▋▎▎▎▎▎▎▎▎▋▌          ▏▉▋▋▋▌▋▋▋▍▏ ▋▋▋▋▌▌▌▌▋▋▊▏              ▍▊▎▏▏▎▎▎▍▎▎▎▎▎▎▎▎▌▌▏      \\r                                                      ▎▍▋▎▎▎▎▎▎▌▋▍          ▏▊▋▋▌▋▋▋▊▍▎ ▊▋▋▌▋▌▌▋▋▋▊▏              ▎▋▋▍▎▎▍▍▎▍▎▎▎▎▎▎▎▌▌       \\r                                                       ▏▋▌▍▎▎▎▎▋▍▎          ▏▋▋▋▋▌▌▋▋▌▎ ▊▋▋▌▌▋▋▋▋▊▋▏                ▊▌▎▎▎▎▎▎▎▎▎▎▎▎▍▌▌       \\r                                                        ▏▋▌▎▎▎▍▋▏           ▏▌▊▋▌▌▌▋▋▌▍▏▋▋▋▌▋▋▌▋▋▊▌▏                ▌▌▌▎▎▎▎▎▎▎▎▎▎▎▌▌▍       \\r                                                         ▍▌▋▎▎▎▋▏           ▏▍▋▋▋▌▌▋▋▌▍▎▋▋▌▋▌▌▋▋▊▊▍▏                 ▌▋▎▎▎▎▎▎▎▎▎▎▎▊▍        \\r                                                          ▎▌▋▌▍▌▏            ▏▋▊▌▋▌▌▋▌▌▍▋▋▋▌▌▌▌▋▊▋▏                  ▎▌▋▎▎▎▎▎▎▎▎▎▌▋▎        \\r                                                            ▌▋▊▊▏             ▋▊▋▌▋▋▋▋▌▍▋▋▌▋▋▋▋▋▊▋                    ▏▊▍▎▎▎▎▎▎▎▌▊▏         \\r                                                             ▏▎▊▎▏            ▋▊▋▋▋▋▋▌▌▌▋▋▋▌▌▌▌▊▋▌                    ▏▍▌▌▎▎▎▎▎▌▌▌          \\r                                                                              ▍▋▊▌▋▋▋▋▍▎▊▋▋▋▌▋▋▉▌▎                     ▏▋▌▎▎▎▎▍▋▌           \\r                                                                               ▍▉▋▋▋▉▌▎ ▊▋▋▌▌▋▊▊▍                       ▋▌▎▎▎▍▊▏            \\r                                                                               ▏▍▉▉▉▉▎  ▌▊▉▋▊▉█                         ▌▍▏▍▋▋▎▏            \\r                                                                                 ▌▌▌▏    ▌▉▉▉▋▎                         ▌▌▌▊▍▏              \\r                                                                                           ▎                           ▎▊▊▋                 \\r                                                                                                                      ▏▎▍▎                  \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \",\"t\":0,\"b\":false,\"e\":1.9,\"p\":{\"y\":1000,\"x\":750},\"c\":7,\"f\":1.9,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,10,10,10,5,false,false]],\"b\":true},\"r\":15}"},{"c":"24.1,13056,7,1,253165,1386302941,138630294187","m":"{\"z\":[{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3}],\"n\":\"二                                                                                                                                           \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                               ▏▎▉▌▎        ▏                                               \\r                                                                               ▎▋▏▍▋▌▎▍▌▍▌▌▍▌▌▌▌▍▎                                          \\r                                                                              ▎▌▋▏▎▌▋▍▎▎▎▏▏▏▏▏▎▎▍▌▋▎▏   ▏▋▊▌                                \\r                                                                            ▏▌▊▊▊▉▌▎▏▏▏▏▏▏▏▏▏▏▏▏▏▏▎▌▌▍ ▎▍▌▌▋▊                               \\r                                                                           ▎▌▉▋▌▍▍▎▏▏▏▏▏▏▏▏▏▏▏▎▏▏▏▏ ▏▍▋▋▋▌▍▋█▎▏                             \\r                                                                           ▋▉▍▏▏  ▏▏▏▏▏▏▏▎▎▏▎▏▏▎▏▏▏ ▏▍▋▋▋▎▏▎▍▊▍                             \\r                                                                          ▋▋▌  ▏▎▏▏▏▏▏▏▏▎▎▍▏▏▏▎▏▏▏ ▍▌▌▌▌▍    ▍▋▌                            \\r                                                                          ▊▍▏▏▍▍▎▏▏▏▏▏▏▏▎▎▎▎▎▏▏▏▏▎▎▌▌▌▍▌▌▏▏▏▏▏▍▋▍▏                          \\r                                                                        ▎▌▍▎▎▋▍▎▏▏▏▏▏▏▎▍▎▏▏▌▋▍▏▏▏▎▎▌▌▋▍▍▍▍▏▏▏▏▎▍▋▏                          \\r                                                                       ▏▍▋▏▌▋▌▏▏▏▏▏▎▍▍▌▋▏▏▏▍▎▍▌ ▏▏▎▏▍▋▌▎▎▌▏▏▏▏▏▎▋▏                          \\r                                                                       ▌▌▎▋▋▌▏▏▏▏▏▍▌▎▏▏▍▎▏▎▍▏▏▍▌▎▏▏ ▏▍▋▍▎▋▎▏▏▏▏▏▍▌▎                         \\r                                                                       ▍▌▋▊▍▏ ▏▏▏▌▍▏  ▎▌▎▎▎▍▏  ▊▌▎▏▏▏▏▌▌▌▌▍▏ ▏▏▏▎▌▍                         \\r                                                                     ▏▍▌▋▉▍▏ ▏▏▎▋▍▏   ▎▌▎▎▎▍▏  ▏▍▌▏▏▏ ▎▌▋▋▍▎ ▏▏▏▏▌▍                         \\r               ▌▌▎                                                   ▏▋▊▊▊ ▏▏▏▍▌▌     ▎▌▍▍▍▍▏   ▎▌▍▏▏▏ ▎▌▊▊▌ ▏▏▏▏▍▍▍                        \\r               ▍▌▍▌▎                                                ▏▎▊▊▋▍ ▏▏▎▌▍      ▏▍▌▍▎▍▏    ▏▌▎▏▏▏▏▎▋▋▌▏▏▏▏▏▎▍▋                        \\r              ▏▎▎▏▎▍▍▏                                              ▍▋▊▌▍▏▏▏▎▌▏  ▏    ▏▏▋▍▍▌▏    ▏▌▎▎▏▏▏▏▏▎▍▍▏▏▏▏▏▎▋                        \\r             ▏▎▍▎▏▏▎▎▌▍▎                                            ▌▋▌▌▎ ▏▎▌▊▍▎▍       ▋▌▍▊▎▏    ▏▍▎▏▎▏▏▏▏▎▌▏▏▏▏▏▎▍▍▏                      \\r             ▏▍▍▍▎▏▏▏▏▍▍▌▏                                          ▌▋▌▍▎▏▌▋▋▎▏         ▋▌▌▌▏▏▏▍▏  ▍▍▏▏▏▎▏▏▎▌▎▏▏▏▏▏▎▋▎                      \\r               ▎▎▍▎▏▏▏▏▏▎▌▍▎                                       ▏▍▌▌▎▏▏▋▋▌           ▍▌▌▌▏   ▏▏▎▌▌▏▏▏▏▏▏▎▌▎▏▏▏▏▏▏▋▎                      \\r                  ▍▍▎▏▏▏▏▏▎▍▍▏                                     ▎▍▌▌▎▏▏▌▎▏ ▎▎         ▍▋▌▏      ▌▋▋▎▏▏▏▏▎▌▍▎▏▎▏▏▏▌▍▎                     \\r       ▏▏▏▏▏▏▏▏▏▏ ▍▌▋▌▍▎▎▏▏▏▎▌▌▍                                   ▍▍▍▌▎▏▏▌▍▍▌▌▌▌        ▍▌▊▏  ▋▌▍  ▎▋▎▎▎▏ ▎▋▌▎▏▏▎▏ ▍▌▌                     \\r     ▏▎▋▌▍▍▌▍▍▍▍▍▍▎▎▎▍▍▍▍▌▍▎▏▎▎▎▏▎▎▎▏                              ▌▍▍▌▎▏▎▌▋▌  ▏▍         ▏▊▎▏▍▎▎▎▎ ▎▌▏▎▎▏ ▎▋▊▎ ▎▎▏▏▏▌▌                     \\r      ▏▍▎▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▎▎▍▌▍▏       ▏▎▎▏                        ▏▎▎▍▍▍▎▎▎▍▌▌  ▏▎         ▏▋▌▌▌  ▏▍▏▎▌▏▏▏▏▏▎▋▋▍▏▏▎▎▏▏▍▌▎▏                   \\r      ▏▍▎▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▎▌▏          ▏▎▍▏                     ▎▌▏▍▌▍▎▎▍▎▎▎▍▏▎▌           ▌▋▌  ▏▍▏▎▌▏▎▎▏▏▎▌▋▍▏ ▎▎▏▏▎▍▌▏                   \\r      ▏▌▎▎▎▎▎▎▎▎▎▎▎▍▍▍▍▍▍▍▌▌▍▌▌▍           ▎▍▍                   ▎▌ ▍▌▍▎▎▌▎▏▏▌▋▌▎            ▎▌▌▋▌▏ ▎▌▎▎▎▏▏▍▊▉▌▎ ▎▎▎▏▏▎▋▏                   \\r      ▏▌▌▍▍▎▎▍▋▌▌▍▍▌▌▌▌▌▋▌▌▌▌▍▍▎▏▏▏▏▎▏▏       ▎▎▎        ▏▎▋▊▊▋▎▎▎▎▏▍▌▍▎▍▋▎▏                   ▌▌▎  ▎▌▎▎▎▏▎▍▊▉▋▍ ▏▎▎▏▏▎▋▎▏                  \\r       ▎▏▏ ▏▎▍▌▌▍▍▍▍▎▎▏▏              ▏▎▎▍▎▏▏   ▏▍▏▏   ▏▎▊▉▊▊▊▊▉▋▍ ▏▌▋▍▎▍▍                          ▎▌▍▎▏▏▎▌▊▉▋▌ ▏▎▎▏▏▏▌▌▎                  \\r         ▏▍▋▌▎▏▏▏▏                         ▎▍▌▏▏  ▏▎▎  ▎▉▊▋▋▌▌▋▋▋▍ ▏▍▌▍▎▎▏                          ▎▌▌▎▏▏▌▋▊▊▋▌ ▏▎▍▏▏▏▎▋▍                  \\r         ▏▎                                   ▍▍▎    ▏▍▋▊▋▋▌▋▌▌▋▋▌▍ ▍▌▌▎▏▏       ▌▌▋▌▍▎▎▏           ▎▌▌▎▏▎▌▋▊▊▊▋▏▏▎▍▎▏▏▎▌▍▏                 \\r                                                ▏▍▏  ▍▋▊▋▌▌▋▌▋▋▌▋▋▋▎▍▌▌▏▏▎       ▋▍▎▍▍▍▍▋▌▎         ▎▌▌▎▏▌▋▋▋▊▋▋▎▏▏▍▎▏▏▏▌▌▍                 \\r                                                  ▏▎▎▌▋▋▌▌▌▌▌▌▌▌▌▋▋▌▌▍▌▎▎▏       ▌▎     ▏▎▎         ▏▎▌▍▍▋▋▋▊▌▌▍▎▏▏▎▍▎▏▏▎▌▋                 \\r                                                    ▏▊▋▋▌▌▌▋▌▌▋▌▋▋▌▋▌▌▌▎▏        ▌▎     ▏▎▎         ▏▍▋▋▋▋▋▊▉▊▌▍▍▏▏▎▍▎▏▏▎▍▋                 \\r                                                   ▏▎▊▋▋▌▋▋▋▋▌▌▋▌▌▋▋▋▋▋▍▍▍       ▍▏     ▎▎▎         ▎▌▊▋▌▍▋▋▌▍▏▏▍▏▏▏▍▎▏▏▏▍▋▎▏               \\r                                                   ▎▋▊▋▋▋▋▋▋▋▌▌▌▋▋▌▌▋▋▊▍▍▋▌▎    ▏▍▏     ▏▎▎         ▎▌▍▍▍▍▍▎   ▏▌▎▏▏▍▎▎▏▏▎▍▌▎               \\r                                                   ▎▋▊▋▋▌▋▋▋▋▌▌▋▋▋▋▌▌▋▋▌▍▍▋▎   ▏▎▏▏     ▏▏▏        ▎▎▎▍▍▌▋▏    ▏▌▎▏▏▍▎▎▏▏▎▍▋▎               \\r                                                   ▏▎▉▋▋▋▋▋▋▋▋▋▌▋▌▌▋▌▌▋▌▌▌▌▎▏  ▏▎▏      ▎▎▎        ▍▍▎▌▌▌▌▏    ▏▌▍▎▏▍▎▎▏▏▏▎▋▎               \\r                                                     ▉▊▋▌▋▋▋▋▋▌▌▌▌▌▌▋▋▌▋▋▌▋▋▌▏ ▏▎       ▎▎▏        ▍▌▍▋▋▌      ▏▍▍▎ ▍▍▎▏▏▏▎▌▍▎              \\r                                                     ▉▊▊▋▋▋▋▋▋▋▋▋▌▌▌▌▌▌▋▋▋▋▊▊▋▏▏▎       ▎▏▏       ▎▍▌▌▋▍▏      ▏▍▍▎ ▎▎▎▏▏▏▏▍▌▌              \\r                                                     ▎▋▉▊▊▋▋▋▋▋▋▋▋▋▌▌▋▌▋▋▋▋▋▋▊▎▎▌       ▏▏      ▏▍▋▋▌▌▌▎       ▏▎▌▍ ▎▍▍▏▏▏▏▎▌▌              \\r                                                       ▏▌▋▋▊▊▋▋▋▋▋▋▋▌▌▋▌▌▋▋▋▋▊▏▎▌▍▎▏▏   ▏▏   ▏▎▏▌▋▊▌▌▌▍▎        ▏▌▍ ▎▎▍▏▏▏▏▎▍▌▎             \\r                                                          ▎▋▋▋▋▋▋▋▋▌▋▌▌▋▋▋▋▌▌▎▎▏▎▋▋▋▋▋▌▌▋▌▍▍▊▉▉ ▎▍  ▎▌▉▍        ▏▌▍ ▎▎▍▎▏▏▏▏▍▌▍▏            \\r                                                          ▏▍ ▎▍▌▋▋▋▋▋▋▋▋▋▋▌▎  ▍▎      ▎▊▊▊▋▌▊▋▍▊▌▎    ▋▌▍        ▌▍▏▏▎▍▎▏▏▏▏▎▍▋▏            \\r                                                         ▎▍▎ ▏▏▎▎▍▌▋▋▊▋▋▋▋     ▎▌    ▍▌▋▎▏ ▎▌▌▍▋▌▍               ▌▌▏▏▎▍▎▏▏▏▏▎▍▋▏            \\r                                                         ▌▍▎▏▎▎▎▎▎▏▎▍▌▋▊▋▋      ▏▌▍▌▉▋▌▏  ▏▌▋▋▌  ▏▌▏             ▌▌▏▏▎▍▎▏▏▏▏▎▎▋▎▏           \\r                                                         ▌▍▏▏▎▎▎▎▎▎▎▏▏▏▌▋▊▎▏     ▌▌▌▌▌▎ ▏▎▌▋▊▌▎    ▍▍            ▋▌▏▏▎▎▍▏▏▎▏▎▎▌▌▎           \\r                                                        ▏▍▎▏▏▎▍▎▎▎▎▎▎▎▎▌▍▎▍▍▍  ▏▎▋▌▍▍▋▍  ▍▋▎▋▍     ▏▎▎           ▋▌▏▏▎▍▍▎▏▏▎▎▎▍▌▍           \\r                                                       ▏▍▍▎ ▎▎▎▍▎▎▎▎▎▎▎▋▌  ▎▎▏ ▎▌▋▎▏▎▋▌▏▍▌▍▏▌▍      ▏▍           ▋▌▏▏▎▎▍▎▏▏▎▎▎▎▋▍           \\r                                                       ▏▌▎▏▏▎▎▍▎▎▎▎▎▎▎▎▋▌▏    ▍▌▋▌▎ ▏▌▌▍▌▎▏ ▌▍   ▏▎▏▏▍           ▋▌▏▏▎▎▍▎▏▏▎▎▎▎▌▍▏          \\r                                                       ▏▌▎▏▏▍▎▎▎▎▎▎▎▎▎▎▋▌     ▌▌▍▌▌▍▌▌▌▋▌▎  ▌▍  ▍▋▍▏▏▎▏          ▋▌▏▏▏▎▍▎▏▏▎▎▎▎▌▌▍          \\r                                                      ▏▏▌▏▏▎▎▎▎▎▎▎▎▎▎▎▎▋▌▏  ▏▌▎▎▎▌▍▍▌▎▌▉▍▏  ▌▍▎     ▎▋▎▏         ▋▌▏▏▏▎▍▎▎▏▎▎▎▎▍▌▋          \\r                                                      ▎▍▍▏▏▎▍▎▎▍▎▎▎▎▎▎▎▋▌▏  ▏▌▏▎▌▎▎▎▍▏▍▋▏▏  ▏▍▋▎▏  ▍▌▊▍▏         ▋▌▏▏▎▎▎▎▎▏▏▎▎▎▎▌▋          \\r                                                      ▎▍▎▏▏▎▎▎▎▎▎▎▎▎▎▎▎▋▌▏ ▎▍▏▎▍▌▏▏▎▌▏▏▎▏▏▏▏ ▎▌▊▋▌▋▊▊▊▌▎         ▋▌▏▏▎▎▎▎▎▏▏▎▎▎▎▍▋▏         \\r                                                      ▍▌▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▋▌  ▎▍ ▍▍▎▏▎▎▌▏  ▎▎▎▍▏▎▍▊▋▋▋▊▊▊▊▍         ▋▌▏▏▎▎▎▎▎▏▏▎▎▎▎▍▌▍▏        \\r                                                     ▏▍▍▏▏▎▍▍▎▎▎▎▎▎▎▎▎▎▋▌▏▏▏▎▎▌▍ ▏▏▎▌▏▏▏  ▏▍▎▎▎▊▋▋▋▋▋▋▊▍        ▏▋▌▏▏▎▍▎▎▎▏▏▎▎▎▎▍▌▌▎        \\r                                                     ▎▍▍▏▏▎▍▎▎▎▎▎▎▍▎▎▎▎▌▌▎▎▏▏▍▌▍▏ ▎▍▍▏▏▏   ▎▏▎▍▊▋▋▋▋▋▋▉▍▏       ▏▋▌ ▏▎▍▎▏▏▎▏▏▎▎▎▎▍▋▎        \\r                                                     ▌▍▎▏▏▎▍▎▎▎▎▎▎▎▎▎▎▎▍▌▋▏▏▎▌▌▍▏ ▎▌▍▏ ▏▏▎▎▎▏▎▎▊▋▋▋▋▋▋▊▋▍      ▏▎▋▌▏▏▎▍▏▏▏▏▏▏▎▎▎▎▎▋▎        \\r                                                     ▌▍▎▏▎▎▍▎▎▎▎▎▎▎▎▎▎▏▍▋▉▎▎▍▋▍▎ ▏▍▌▌▎▏▎▎▎▎▎▏▎▎▊▋▋▌▋▋▋▊▋▌      ▏▎▋▌▏▏▎▎▎▏▏▏▏▏▎▎▎▎▎▋▎▏       \\r                                                     ▋▎▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▎▌▋▊▎▍▍▎▏▏▏▎▍▌▍▎▎▎▎▎▎▎▏▏▎▊▋▋▋▌▌▌▋▊▋      ▏▍▋▍▏▏▎▎▏▏▏▏▏▏▏▎▎▎▎▌▍▎       \\r                                                    ▏▌▎▏▏▎▎▎▍▎▎▎▎▎▎▎▍▌▋▌▍▏▏▍▌▎▎▎▎▎▌▋▎▏▏▎▎▎▎▎▏▏▍▊▋▋▋▌▌▌▋▊▋▏     ▏▌▋▍ ▏▎▎▏▏▏▏▏▏▏▎▎▎▎▍▌▍       \\r                                                   ▏▎▍▎▏▏▎▎▍▎▎▎▎▎▎▎▌▋▌▎   ▎▌▌▎▎▎▏▌▋▌▏  ▏▎▎▎▎▏▎▍▊▋▋▋▌▌▋▋▋▊▌▏    ▏▋▌▍▏▏▎▎▏▎▎▏▏▏▏▎▎▎▎▍▌▌       \\r                                                   ▏▍▎▏▏▏▎▍▎▎▎▎▎▎▎▎▋▌▎    ▎▍▌▍▎▎▎▊▌▎    ▏▏▏▎▏▎▍▊▋▋▋▋▋▋▋▋▋▊▏    ▏▋▌▎ ▏▏▏▏▎▎▎▏▏▏▎▎▎▎▎▌▌       \\r                                                   ▎▌▎▏▏▎▎▍▍▎▎▎▎▎▎▏▌▌▌ ▏▏▏ ▍▌▎▏▍▌▌▎ ▏    ▏▏▏▏▎▌▊▋▋▋▋▋▋▋▋▋▊▏    ▏▊▍▎▏▏▏▏▏▎▎▏▏▏▏▎▎▎▎▎▌▌       \\r                                                   ▎▌▏▏▏▎▎▎▎▎▎▎▎▎▎▎▌▋▋  ▏  ▎▍▎▎▌▊  ▏▏▍▎▏   ▏▏▎▌▋▋▋▌▌▌▌▌▋▋▊▌▎   ▏▊▍▎ ▏▏▏▏▎▎▎▏▏▏▎▎▎▎▎▌▌▎      \\r                                                   ▎▌▏▏▏▎▎▎▍▎▎▎▎▎▍▌▋▊▋▎   ▏▍▌▏▌▋▊▎▏ ▏▎▍▍▏▏▏ ▏▎▋▊▋▌▌▍▍▍▌▋▋▋▋▍   ▏▉▍▏▏▏▏▏▏▎▎▎▏▏▏▎▎▎▎▎▍▌▍▏     \\r                                                   ▎▌▏▏▏▎▎▎▎▍▎▎▎▍▌▌▎▋▊▍▏▏▏▋▋▋▍▋▋▋▌▎  ▏▎▍▍▎▎▏ ▎▋▋▋▋▌▌▍▍▌▋▋▋▊▌   ▎▊▎▏▏▏▏▏▏▎▎▍▏▏▏▏▎▎▎▎▍▌▌▏     \\r                                                  ▏▎▌▏▏▏▎▎▎▎▎▎▎▎▎▍▌▏▌▋▋▍▍▋▋▋▋▋▌▌▍▊▌▎ ▏▏▎▏▎▎▏ ▎▋▋▋▋▌▌▌▍▌▌▋▋▊▋▎ ▏▎▊▎▏▏▏▏▏▏▎▎▍▏▏▏▏▎▎▎▎▍▍▌▏     \\r                                                  ▎▍▍▏▏▎▎▏▎▎▍▎▎▎▎▍▌▎▎▍▋▋▋▌▌▋▋▋▍▍▍▋▌▌  ▏▏▏▏   ▎▊▋▋▋▌▋▌▍▌▌▋▋▋▋▋ ▏▍▋▎▏▏▎▏▏▏▏▎▍▎▏▏▏▎▎▎▎▎▍▋▏     \\r                                                  ▍▍▎▏▎▎▎▏▎▍▎▎▎▎▎▎▍▌▍▍▋▌▌▌▌▌▌▍▌▍▍▌▋▋▎  ▏    ▎▌▋▋▋▋▌▌▌▍▍▌▋▋▋▋▊ ▎▍▌▏▏▏▏▏▏▏▏▎▍▎▏▏▏▎▎▎▎▎▍▋▏     \\r                                                  ▍▍▎▎▎▎▏▏▎▍▎▎▎▎▎▎▎▌▋▋▊▋▋▌▌▌▌▌▌▌▌▍▌▋▌▏  ▏▎▍▌▋▋▋▋▋▋▌▌▌▍▌▌▌▋▋▋▊▎▌▌▍▏▏▏▎▏▏▏▏▎▍▎▎▏▏▎▍▎▎▎▍▋▏     \\r                                                  ▍▍▎▌▎▏▏▏▎▍▎▎▎▎▎▎▏▍▋▋▍▋▋▋▌▋▋▌▌▌▋▌▌▌▋▍▎▎▌▋▋▌▌▋▋▋▋▋▋▌▌▌▍▌▋▋▋▋▋▋▋▌▎▏▏▎▏▏▏▏▏▎▍▍▎▏▏▎▎▍▎▎▍▋▎▏    \\r                                                  ▍▍▍▍▎▏▏▏▎▎▍▎▎▎▎▎▎▍▌▌ ▍▌▋▋▋▋▌▍▍▋▋▋▋▋▋▋▌▋▋▌▌▌▋▋▋▋▋▌▌▌▌▌▌▌▋▋▋▋▌▌▌▏▏▏▏▎▏▏▏▏▎▍▍▎▏▏▎▎▎▎▎▎▌▎▏    \\r                                                  ▍▌▌▍▏▏▏▎▎▍▎▎▎▎▎▎▎▎▍▌▍▏▎▌▋▋▋▌▌▌▌▋▋▋▍▌▌▋▌▋▋▋▋▋▋▋▋▋▌▌▌▌▍▌▌▋▋▋▋▍▌▌▏▏▏▎▏▎▎▏▏▎▎▍▎▏▏▎▎▍▎▎▎▌▍▎    \\r                                                  ▍▌▋▏▏▏▏▎▎▍▍▎▎▎▎▎▎▎▎▍▌▎▎▎▊▋▋▋▋▌▌▌▋▋▍▌▌▌▌▌▋▋▋▋▋▌▋▋▌▌▌▍▌▌▌▋▊▋▍▎▍▌▏▏▏▏▎▏▏▏▏▎▎▍▎▎▏▎▎▎▍▍▍▌▍▎    \\r                                                  ▌▋▋▏▏▏▏▏▎▍▎▎▎▎▎▎▎▎▎▎▍▌▋▋▌▍▍▋▋▋▋▋▋▋▋▋▋▌▍▌▋▋▌▌▋▋▋▌▋▌▌▌▌▋▋▊▊▌ ▎▍▍▏▏▏▏▏▏▏▏▏▎▎▍▎▎▏▎▎▎▎▍▍▍▍▎    \\r                                                  ▋▋▌ ▏▏▏▎▎▎▎▎▎▎▎▎▎▎▎▎▏▎▌▉▌▏ ▏▍▌▋▋▋▋▋▋▋▋▌▋▋▌▏▏▍▊▊▋▋▋▋▋▋▊▊▊▌▎ ▌▍▎▏▎▎▏▏▏▏▏▏▎▎▍▎▎▏▎▎▎▎▍▌▍▍▎    \\r                                                  ▋▋▎▏▏▏▎▎▎▍▎▎▎▎▎▎▎▎▎▎▎▎▌▋▍▍▎  ▏▏▋▋▋▋▌▌▌▍▌▌▋▍▎▎▌▋▋▋▊▊▊▋▊▋▍▏  ▋▍▎▎▎▎▏▏▏▏▏▏▎▎▍▎▎▏▎▎▎▏▍▌▌▌▎    \\r                                                  ▌▌▎ ▏▎▎▎▎▎▍▎▎▎▎▎▎▎▎▎▎▍▍▍ ▍▌▋▎▏▏▋▌▍    ▎▎▍▊▋▍   ▏▌▌▌▌▌▎▏▋▍▎▏▌▍▎▎▎▏▏▎▏▏▏▏▎▎▍▍▎▏▎▎▎▎▍▌▋▌▎    \\r                                                  ▌▌▍▏▏▎▎▏▎▍▎▎▎▎▎▎▎▎▎▎▎▍▌▌ ▏▏▏▎▍▌▉▌▎   ▏▍▌▌▋▏   ▎▍▋▏  ▍▏▏▍▏▏▏▌▌▌▌▏▏▏▏▏▏▏▏▎▎▍▎▎▏▎▎▍▎▎▍▋▌▍    \\r                                                  ▍▍▍ ▏▎▎▎▎▎▍▎▎▍▎▎▎▎▎▎▎▍▌▌ ▏▏    ▌▌▌▌▌▌▌▎▏ ▏▎▎▏▌▊▉▊▍▎▏▍▌▌  ▏▍▋▋▋▌▎▏▏▏▏▏▏▏▎▎▎▎▎▎▎▎▎▎▎▍▊▋▍    \\r                                                  ▏▎▍▏▏▎▍▏▎▍▎▎▎▎▎▎▎▎▎▎▎▍▌▍ ▎▌▋▏  ▏▎▍▍▏▏▌    ▍▌▋▋▋▊▋▌▎  ▏▏  ▍▊▍▎▏▌▎▏▏▏▏▏▏▎▎▎▍▎▎▎▎▎▍▎▎▍▌▋▍    \\r                                                  ▏▎▌ ▏▎▎▎▎▎▍▎▎▎▎▎▎▎▎▎▎▌▌▎ ▎▌▉▋▌▌▌▋▋▍▏▎▌▌▍▎▍▍▌▌▋▋▋▌▏       ▍▉  ▏▋▎▏▏▎▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▌▋▍    \\r                                                  ▏▎▌ ▏▎▍▏▎▎▎▎▎▎▎▎▎▎▎▎▎▌▌▎ ▎▌▉▊▋▋▊▊▋▍▏▏▍▉▋▋▋▋▋▋▋▋▋▊▏      ▎▎▎ ▎▍▋▎▏▏▏▏▏▏▎▎▎▍▎▎▎▎▎▎▎▎▎▍▌▍    \\r                                                  ▏▍▌ ▏▎▍▎▎▎▎▎▎▎▎▎▍▎▎▎▎▋▍  ▏▍▊▋▋▋▋▋▋▌▏▏▏▉▊▋▋▋▋▋▋▋▋▊▏      ▏▏  ▎▍▋▎▏▏▎▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▌▍▎    \\r                                                  ▏▍▌▏▏▎▍▎▎▎▎▎▎▎▎▎▎▎▎▎▎▋▍  ▎▍▊▋▌▌▋▋▋▋▏  ▊▋▌▌▌▌▌▋▋▋▊▏          ▎▍▋▎▏▏▏▏▏▏▎▎▎▎▎▎▎▎▎▍▎▎▍▌▎▏    \\r                                                   ▎▋ ▏▎▍▎▎▏▎▎▎▍▎▎▍▎▎▎▌▌▍  ▏▍▊▋▋▋▌▋▋▋▏  ▊▋▌▌▋▋▋▋▋▋▊▏          ▏▍▋▎▏▏▏▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▍▌▏     \\r                                                   ▎▋▏▏▏▍▎▎▏▏▎▎▍▍▎▎▎▎▍▊▎▏  ▏▍▊▋▋▌▋▋▋▋▏  ▊▋▋▌▋▋▌▋▋▋▉▏          ▏▎▋▎▏▏▏▏▏▏▎▍▎▎▎▎▎▎▎▎▎▎▍▌▏     \\r                                                   ▎▋▎▏▏▎▍▎▏▏▏▎▍▎▎▎▎▍▌▊▏   ▏▎▊▋▋▋▌▋▋▊▏  ▊▋▋▋▌▌▋▋▋▋▊▎           ▏▋▍▎▏▏▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▍▋▏     \\r                                                   ▎▌▍▎▏▎▍▎▎▏▏▎▎▎▎▎▎▋▋▏    ▏▎▊▋▋▌▋▋▋▊▏  ▊▋▋▌▋▋▌▋▋▋▉▏           ▏▋▍▎▎▏▏▏▏▎▎▎▎▎▎▍▎▎▎▎▎▍▋▏     \\r                                                   ▏▎▌▎▏▎▍▍▎▏▏▏▎▎▎▎▋▋▌      ▎▉▋▋▋▌▋▋▊▏  ▊▋▋▌▌▌▌▋▋▋▊▏           ▏▋▌▍▎▏▏▏▎▎▎▎▎▎▎▎▎▎▎▎▎▍▋▏     \\r                                                     ▋▍▏▎▎▍▍▎▎▎▎▎▎▍▊▎       ▎▊▋▋▌▋▋▋▊▏  ▊▋▋▌▋▋▌▋▋▋▊▏           ▏▍▌▌▎▏▏▏▎▍▎▎▎▎▎▎▎▎▎▎▍▍▌▏     \\r                                                     ▌▌▎▏▎▍▎▎▎▎▎▎▍▊         ▏▊▋▋▋▌▋▋▊▏  ▋▋▋▋▌▋▋▋▋▋▊▏             ▋▋▎▏▏▏▎▍▍▎▎▎▎▎▎▎▎▎▍▍▌▏     \\r                                                     ▎▌▌▏▎▎▍▎▎▎▎▌▌▌         ▏▊▋▋▌▌▋▋▊▎▏ ▋▋▋▋▋▋▌▌▌▋▊▏             ▌▌▋▏▏▏▎▍▍▎▎▎▎▎▎▎▎▎▍▌▎▏     \\r                                                      ▍▋▎▎▎▎▎▎▎▎▋▌          ▏▉▋▋▋▌▋▋▋▍▏ ▋▋▋▋▌▌▌▌▋▋▊▏              ▍▊▎▏▏▎▎▎▍▎▎▎▎▎▎▎▎▌▌▏      \\r                                                      ▎▍▋▎▎▎▎▎▎▌▋▍          ▏▊▋▋▌▋▋▋▊▍▎ ▊▋▋▌▋▌▌▋▋▋▊▏              ▎▋▋▍▎▎▍▍▎▍▎▎▎▎▎▎▎▌▌       \\r                                                       ▏▋▌▍▎▎▎▎▋▍▎          ▏▋▋▋▋▌▌▋▋▌▎ ▊▋▋▌▌▋▋▋▋▊▋▏                ▊▌▎▎▎▎▎▎▎▎▎▎▎▎▍▌▌       \\r                                                        ▏▋▌▎▎▎▍▋▏           ▏▌▊▋▌▌▌▋▋▌▍▏▋▋▋▌▋▋▌▋▋▊▌▏                ▌▌▌▎▎▎▎▎▎▎▎▎▎▎▌▌▍       \\r                                                         ▍▌▋▎▎▎▋▏           ▏▍▋▋▋▌▌▋▋▌▍▎▋▋▌▋▌▌▋▋▊▊▍▏                 ▌▋▎▎▎▎▎▎▎▎▎▎▎▊▍        \\r                                                          ▎▌▋▌▍▌▏            ▏▋▊▌▋▌▌▋▌▌▍▋▋▋▌▌▌▌▋▊▋▏                  ▎▌▋▎▎▎▎▎▎▎▎▎▌▋▎        \\r                                                            ▌▋▊▊▏             ▋▊▋▌▋▋▋▋▌▍▋▋▌▋▋▋▋▋▊▋                    ▏▊▍▎▎▎▎▎▎▎▌▊▏         \\r                                                             ▏▎▊▎▏            ▋▊▋▋▋▋▋▌▌▌▋▋▋▌▌▌▌▊▋▌                    ▏▍▌▌▎▎▎▎▎▌▌▌          \\r                                                                              ▍▋▊▌▋▋▋▋▍▎▊▋▋▋▌▋▋▉▌▎                     ▏▋▌▎▎▎▎▍▋▌           \\r                                                                               ▍▉▋▋▋▉▌▎ ▊▋▋▌▌▋▊▊▍                       ▋▌▎▎▎▍▊▏            \\r                                                                               ▏▍▉▉▉▉▎  ▌▊▉▋▊▉█                         ▌▍▏▍▋▋▎▏            \\r                                                                                 ▌▌▌▏    ▌▉▉▉▋▎                         ▌▌▌▊▍▏              \\r                                                                                           ▎                           ▎▊▊▋                 \\r                                                                                                                      ▏▎▍▎                  \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \",\"t\":0,\"b\":false,\"e\":1.9,\"p\":{\"y\":1000,\"x\":400},\"c\":7,\"f\":1.9,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,10,10,10,5,false,false]],\"b\":true},\"r\":15}"},{"c":"27.9,13056,7,1,253165,1386302943,138630294386","m":"{\"z\":[{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3},{\"d\":15,\"l\":0.3},{\"d\":10,\"l\":0.3}],\"n\":\"三                                                                                                                                           \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                               ▏▎▉▌▎        ▏                                               \\r                                                                               ▎▋▏▍▋▌▎▍▌▍▌▌▍▌▌▌▌▍▎                                          \\r                                                                              ▎▌▋▏▎▌▋▍▎▎▎▏▏▏▏▏▎▎▍▌▋▎▏   ▏▋▊▌                                \\r                                                                            ▏▌▊▊▊▉▌▎▏▏▏▏▏▏▏▏▏▏▏▏▏▏▎▌▌▍ ▎▍▌▌▋▊                               \\r                                                                           ▎▌▉▋▌▍▍▎▏▏▏▏▏▏▏▏▏▏▏▎▏▏▏▏ ▏▍▋▋▋▌▍▋█▎▏                             \\r                                                                           ▋▉▍▏▏  ▏▏▏▏▏▏▏▎▎▏▎▏▏▎▏▏▏ ▏▍▋▋▋▎▏▎▍▊▍                             \\r                                                                          ▋▋▌  ▏▎▏▏▏▏▏▏▏▎▎▍▏▏▏▎▏▏▏ ▍▌▌▌▌▍    ▍▋▌                            \\r                                                                          ▊▍▏▏▍▍▎▏▏▏▏▏▏▏▎▎▎▎▎▏▏▏▏▎▎▌▌▌▍▌▌▏▏▏▏▏▍▋▍▏                          \\r                                                                        ▎▌▍▎▎▋▍▎▏▏▏▏▏▏▎▍▎▏▏▌▋▍▏▏▏▎▎▌▌▋▍▍▍▍▏▏▏▏▎▍▋▏                          \\r                                                                       ▏▍▋▏▌▋▌▏▏▏▏▏▎▍▍▌▋▏▏▏▍▎▍▌ ▏▏▎▏▍▋▌▎▎▌▏▏▏▏▏▎▋▏                          \\r                                                                       ▌▌▎▋▋▌▏▏▏▏▏▍▌▎▏▏▍▎▏▎▍▏▏▍▌▎▏▏ ▏▍▋▍▎▋▎▏▏▏▏▏▍▌▎                         \\r                                                                       ▍▌▋▊▍▏ ▏▏▏▌▍▏  ▎▌▎▎▎▍▏  ▊▌▎▏▏▏▏▌▌▌▌▍▏ ▏▏▏▎▌▍                         \\r                                                                     ▏▍▌▋▉▍▏ ▏▏▎▋▍▏   ▎▌▎▎▎▍▏  ▏▍▌▏▏▏ ▎▌▋▋▍▎ ▏▏▏▏▌▍                         \\r               ▌▌▎                                                   ▏▋▊▊▊ ▏▏▏▍▌▌     ▎▌▍▍▍▍▏   ▎▌▍▏▏▏ ▎▌▊▊▌ ▏▏▏▏▍▍▍                        \\r               ▍▌▍▌▎                                                ▏▎▊▊▋▍ ▏▏▎▌▍      ▏▍▌▍▎▍▏    ▏▌▎▏▏▏▏▎▋▋▌▏▏▏▏▏▎▍▋                        \\r              ▏▎▎▏▎▍▍▏                                              ▍▋▊▌▍▏▏▏▎▌▏  ▏    ▏▏▋▍▍▌▏    ▏▌▎▎▏▏▏▏▏▎▍▍▏▏▏▏▏▎▋                        \\r             ▏▎▍▎▏▏▎▎▌▍▎                                            ▌▋▌▌▎ ▏▎▌▊▍▎▍       ▋▌▍▊▎▏    ▏▍▎▏▎▏▏▏▏▎▌▏▏▏▏▏▎▍▍▏                      \\r             ▏▍▍▍▎▏▏▏▏▍▍▌▏                                          ▌▋▌▍▎▏▌▋▋▎▏         ▋▌▌▌▏▏▏▍▏  ▍▍▏▏▏▎▏▏▎▌▎▏▏▏▏▏▎▋▎                      \\r               ▎▎▍▎▏▏▏▏▏▎▌▍▎                                       ▏▍▌▌▎▏▏▋▋▌           ▍▌▌▌▏   ▏▏▎▌▌▏▏▏▏▏▏▎▌▎▏▏▏▏▏▏▋▎                      \\r                  ▍▍▎▏▏▏▏▏▎▍▍▏                                     ▎▍▌▌▎▏▏▌▎▏ ▎▎         ▍▋▌▏      ▌▋▋▎▏▏▏▏▎▌▍▎▏▎▏▏▏▌▍▎                     \\r       ▏▏▏▏▏▏▏▏▏▏ ▍▌▋▌▍▎▎▏▏▏▎▌▌▍                                   ▍▍▍▌▎▏▏▌▍▍▌▌▌▌        ▍▌▊▏  ▋▌▍  ▎▋▎▎▎▏ ▎▋▌▎▏▏▎▏ ▍▌▌                     \\r     ▏▎▋▌▍▍▌▍▍▍▍▍▍▎▎▎▍▍▍▍▌▍▎▏▎▎▎▏▎▎▎▏                              ▌▍▍▌▎▏▎▌▋▌  ▏▍         ▏▊▎▏▍▎▎▎▎ ▎▌▏▎▎▏ ▎▋▊▎ ▎▎▏▏▏▌▌                     \\r      ▏▍▎▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▎▎▍▌▍▏       ▏▎▎▏                        ▏▎▎▍▍▍▎▎▎▍▌▌  ▏▎         ▏▋▌▌▌  ▏▍▏▎▌▏▏▏▏▏▎▋▋▍▏▏▎▎▏▏▍▌▎▏                   \\r      ▏▍▎▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▏▎▌▏          ▏▎▍▏                     ▎▌▏▍▌▍▎▎▍▎▎▎▍▏▎▌           ▌▋▌  ▏▍▏▎▌▏▎▎▏▏▎▌▋▍▏ ▎▎▏▏▎▍▌▏                   \\r      ▏▌▎▎▎▎▎▎▎▎▎▎▎▍▍▍▍▍▍▍▌▌▍▌▌▍           ▎▍▍                   ▎▌ ▍▌▍▎▎▌▎▏▏▌▋▌▎            ▎▌▌▋▌▏ ▎▌▎▎▎▏▏▍▊▉▌▎ ▎▎▎▏▏▎▋▏                   \\r      ▏▌▌▍▍▎▎▍▋▌▌▍▍▌▌▌▌▌▋▌▌▌▌▍▍▎▏▏▏▏▎▏▏       ▎▎▎        ▏▎▋▊▊▋▎▎▎▎▏▍▌▍▎▍▋▎▏                   ▌▌▎  ▎▌▎▎▎▏▎▍▊▉▋▍ ▏▎▎▏▏▎▋▎▏                  \\r       ▎▏▏ ▏▎▍▌▌▍▍▍▍▎▎▏▏              ▏▎▎▍▎▏▏   ▏▍▏▏   ▏▎▊▉▊▊▊▊▉▋▍ ▏▌▋▍▎▍▍                          ▎▌▍▎▏▏▎▌▊▉▋▌ ▏▎▎▏▏▏▌▌▎                  \\r         ▏▍▋▌▎▏▏▏▏                         ▎▍▌▏▏  ▏▎▎  ▎▉▊▋▋▌▌▋▋▋▍ ▏▍▌▍▎▎▏                          ▎▌▌▎▏▏▌▋▊▊▋▌ ▏▎▍▏▏▏▎▋▍                  \\r         ▏▎                                   ▍▍▎    ▏▍▋▊▋▋▌▋▌▌▋▋▌▍ ▍▌▌▎▏▏       ▌▌▋▌▍▎▎▏           ▎▌▌▎▏▎▌▋▊▊▊▋▏▏▎▍▎▏▏▎▌▍▏                 \\r                                                ▏▍▏  ▍▋▊▋▌▌▋▌▋▋▌▋▋▋▎▍▌▌▏▏▎       ▋▍▎▍▍▍▍▋▌▎         ▎▌▌▎▏▌▋▋▋▊▋▋▎▏▏▍▎▏▏▏▌▌▍                 \\r                                                  ▏▎▎▌▋▋▌▌▌▌▌▌▌▌▌▋▋▌▌▍▌▎▎▏       ▌▎     ▏▎▎         ▏▎▌▍▍▋▋▋▊▌▌▍▎▏▏▎▍▎▏▏▎▌▋                 \\r                                                    ▏▊▋▋▌▌▌▋▌▌▋▌▋▋▌▋▌▌▌▎▏        ▌▎     ▏▎▎         ▏▍▋▋▋▋▋▊▉▊▌▍▍▏▏▎▍▎▏▏▎▍▋                 \\r                                                   ▏▎▊▋▋▌▋▋▋▋▌▌▋▌▌▋▋▋▋▋▍▍▍       ▍▏     ▎▎▎         ▎▌▊▋▌▍▋▋▌▍▏▏▍▏▏▏▍▎▏▏▏▍▋▎▏               \\r                                                   ▎▋▊▋▋▋▋▋▋▋▌▌▌▋▋▌▌▋▋▊▍▍▋▌▎    ▏▍▏     ▏▎▎         ▎▌▍▍▍▍▍▎   ▏▌▎▏▏▍▎▎▏▏▎▍▌▎               \\r                                                   ▎▋▊▋▋▌▋▋▋▋▌▌▋▋▋▋▌▌▋▋▌▍▍▋▎   ▏▎▏▏     ▏▏▏        ▎▎▎▍▍▌▋▏    ▏▌▎▏▏▍▎▎▏▏▎▍▋▎               \\r                                                   ▏▎▉▋▋▋▋▋▋▋▋▋▌▋▌▌▋▌▌▋▌▌▌▌▎▏  ▏▎▏      ▎▎▎        ▍▍▎▌▌▌▌▏    ▏▌▍▎▏▍▎▎▏▏▏▎▋▎               \\r                                                     ▉▊▋▌▋▋▋▋▋▌▌▌▌▌▌▋▋▌▋▋▌▋▋▌▏ ▏▎       ▎▎▏        ▍▌▍▋▋▌      ▏▍▍▎ ▍▍▎▏▏▏▎▌▍▎              \\r                                                     ▉▊▊▋▋▋▋▋▋▋▋▋▌▌▌▌▌▌▋▋▋▋▊▊▋▏▏▎       ▎▏▏       ▎▍▌▌▋▍▏      ▏▍▍▎ ▎▎▎▏▏▏▏▍▌▌              \\r                                                     ▎▋▉▊▊▋▋▋▋▋▋▋▋▋▌▌▋▌▋▋▋▋▋▋▊▎▎▌       ▏▏      ▏▍▋▋▌▌▌▎       ▏▎▌▍ ▎▍▍▏▏▏▏▎▌▌              \\r                                                       ▏▌▋▋▊▊▋▋▋▋▋▋▋▌▌▋▌▌▋▋▋▋▊▏▎▌▍▎▏▏   ▏▏   ▏▎▏▌▋▊▌▌▌▍▎        ▏▌▍ ▎▎▍▏▏▏▏▎▍▌▎             \\r                                                          ▎▋▋▋▋▋▋▋▋▌▋▌▌▋▋▋▋▌▌▎▎▏▎▋▋▋▋▋▌▌▋▌▍▍▊▉▉ ▎▍  ▎▌▉▍        ▏▌▍ ▎▎▍▎▏▏▏▏▍▌▍▏            \\r                                                          ▏▍ ▎▍▌▋▋▋▋▋▋▋▋▋▋▌▎  ▍▎      ▎▊▊▊▋▌▊▋▍▊▌▎    ▋▌▍        ▌▍▏▏▎▍▎▏▏▏▏▎▍▋▏            \\r                                                         ▎▍▎ ▏▏▎▎▍▌▋▋▊▋▋▋▋     ▎▌    ▍▌▋▎▏ ▎▌▌▍▋▌▍               ▌▌▏▏▎▍▎▏▏▏▏▎▍▋▏            \\r                                                         ▌▍▎▏▎▎▎▎▎▏▎▍▌▋▊▋▋      ▏▌▍▌▉▋▌▏  ▏▌▋▋▌  ▏▌▏             ▌▌▏▏▎▍▎▏▏▏▏▎▎▋▎▏           \\r                                                         ▌▍▏▏▎▎▎▎▎▎▎▏▏▏▌▋▊▎▏     ▌▌▌▌▌▎ ▏▎▌▋▊▌▎    ▍▍            ▋▌▏▏▎▎▍▏▏▎▏▎▎▌▌▎           \\r                                                        ▏▍▎▏▏▎▍▎▎▎▎▎▎▎▎▌▍▎▍▍▍  ▏▎▋▌▍▍▋▍  ▍▋▎▋▍     ▏▎▎           ▋▌▏▏▎▍▍▎▏▏▎▎▎▍▌▍           \\r                                                       ▏▍▍▎ ▎▎▎▍▎▎▎▎▎▎▎▋▌  ▎▎▏ ▎▌▋▎▏▎▋▌▏▍▌▍▏▌▍      ▏▍           ▋▌▏▏▎▎▍▎▏▏▎▎▎▎▋▍           \\r                                                       ▏▌▎▏▏▎▎▍▎▎▎▎▎▎▎▎▋▌▏    ▍▌▋▌▎ ▏▌▌▍▌▎▏ ▌▍   ▏▎▏▏▍           ▋▌▏▏▎▎▍▎▏▏▎▎▎▎▌▍▏          \\r                                                       ▏▌▎▏▏▍▎▎▎▎▎▎▎▎▎▎▋▌     ▌▌▍▌▌▍▌▌▌▋▌▎  ▌▍  ▍▋▍▏▏▎▏          ▋▌▏▏▏▎▍▎▏▏▎▎▎▎▌▌▍          \\r                                                      ▏▏▌▏▏▎▎▎▎▎▎▎▎▎▎▎▎▋▌▏  ▏▌▎▎▎▌▍▍▌▎▌▉▍▏  ▌▍▎     ▎▋▎▏         ▋▌▏▏▏▎▍▎▎▏▎▎▎▎▍▌▋          \\r                                                      ▎▍▍▏▏▎▍▎▎▍▎▎▎▎▎▎▎▋▌▏  ▏▌▏▎▌▎▎▎▍▏▍▋▏▏  ▏▍▋▎▏  ▍▌▊▍▏         ▋▌▏▏▎▎▎▎▎▏▏▎▎▎▎▌▋          \\r                                                      ▎▍▎▏▏▎▎▎▎▎▎▎▎▎▎▎▎▋▌▏ ▎▍▏▎▍▌▏▏▎▌▏▏▎▏▏▏▏ ▎▌▊▋▌▋▊▊▊▌▎         ▋▌▏▏▎▎▎▎▎▏▏▎▎▎▎▍▋▏         \\r                                                      ▍▌▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▋▌  ▎▍ ▍▍▎▏▎▎▌▏  ▎▎▎▍▏▎▍▊▋▋▋▊▊▊▊▍         ▋▌▏▏▎▎▎▎▎▏▏▎▎▎▎▍▌▍▏        \\r                                                     ▏▍▍▏▏▎▍▍▎▎▎▎▎▎▎▎▎▎▋▌▏▏▏▎▎▌▍ ▏▏▎▌▏▏▏  ▏▍▎▎▎▊▋▋▋▋▋▋▊▍        ▏▋▌▏▏▎▍▎▎▎▏▏▎▎▎▎▍▌▌▎        \\r                                                     ▎▍▍▏▏▎▍▎▎▎▎▎▎▍▎▎▎▎▌▌▎▎▏▏▍▌▍▏ ▎▍▍▏▏▏   ▎▏▎▍▊▋▋▋▋▋▋▉▍▏       ▏▋▌ ▏▎▍▎▏▏▎▏▏▎▎▎▎▍▋▎        \\r                                                     ▌▍▎▏▏▎▍▎▎▎▎▎▎▎▎▎▎▎▍▌▋▏▏▎▌▌▍▏ ▎▌▍▏ ▏▏▎▎▎▏▎▎▊▋▋▋▋▋▋▊▋▍      ▏▎▋▌▏▏▎▍▏▏▏▏▏▏▎▎▎▎▎▋▎        \\r                                                     ▌▍▎▏▎▎▍▎▎▎▎▎▎▎▎▎▎▏▍▋▉▎▎▍▋▍▎ ▏▍▌▌▎▏▎▎▎▎▎▏▎▎▊▋▋▌▋▋▋▊▋▌      ▏▎▋▌▏▏▎▎▎▏▏▏▏▏▎▎▎▎▎▋▎▏       \\r                                                     ▋▎▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▎▌▋▊▎▍▍▎▏▏▏▎▍▌▍▎▎▎▎▎▎▎▏▏▎▊▋▋▋▌▌▌▋▊▋      ▏▍▋▍▏▏▎▎▏▏▏▏▏▏▏▎▎▎▎▌▍▎       \\r                                                    ▏▌▎▏▏▎▎▎▍▎▎▎▎▎▎▎▍▌▋▌▍▏▏▍▌▎▎▎▎▎▌▋▎▏▏▎▎▎▎▎▏▏▍▊▋▋▋▌▌▌▋▊▋▏     ▏▌▋▍ ▏▎▎▏▏▏▏▏▏▏▎▎▎▎▍▌▍       \\r                                                   ▏▎▍▎▏▏▎▎▍▎▎▎▎▎▎▎▌▋▌▎   ▎▌▌▎▎▎▏▌▋▌▏  ▏▎▎▎▎▏▎▍▊▋▋▋▌▌▋▋▋▊▌▏    ▏▋▌▍▏▏▎▎▏▎▎▏▏▏▏▎▎▎▎▍▌▌       \\r                                                   ▏▍▎▏▏▏▎▍▎▎▎▎▎▎▎▎▋▌▎    ▎▍▌▍▎▎▎▊▌▎    ▏▏▏▎▏▎▍▊▋▋▋▋▋▋▋▋▋▊▏    ▏▋▌▎ ▏▏▏▏▎▎▎▏▏▏▎▎▎▎▎▌▌       \\r                                                   ▎▌▎▏▏▎▎▍▍▎▎▎▎▎▎▏▌▌▌ ▏▏▏ ▍▌▎▏▍▌▌▎ ▏    ▏▏▏▏▎▌▊▋▋▋▋▋▋▋▋▋▊▏    ▏▊▍▎▏▏▏▏▏▎▎▏▏▏▏▎▎▎▎▎▌▌       \\r                                                   ▎▌▏▏▏▎▎▎▎▎▎▎▎▎▎▎▌▋▋  ▏  ▎▍▎▎▌▊  ▏▏▍▎▏   ▏▏▎▌▋▋▋▌▌▌▌▌▋▋▊▌▎   ▏▊▍▎ ▏▏▏▏▎▎▎▏▏▏▎▎▎▎▎▌▌▎      \\r                                                   ▎▌▏▏▏▎▎▎▍▎▎▎▎▎▍▌▋▊▋▎   ▏▍▌▏▌▋▊▎▏ ▏▎▍▍▏▏▏ ▏▎▋▊▋▌▌▍▍▍▌▋▋▋▋▍   ▏▉▍▏▏▏▏▏▏▎▎▎▏▏▏▎▎▎▎▎▍▌▍▏     \\r                                                   ▎▌▏▏▏▎▎▎▎▍▎▎▎▍▌▌▎▋▊▍▏▏▏▋▋▋▍▋▋▋▌▎  ▏▎▍▍▎▎▏ ▎▋▋▋▋▌▌▍▍▌▋▋▋▊▌   ▎▊▎▏▏▏▏▏▏▎▎▍▏▏▏▏▎▎▎▎▍▌▌▏     \\r                                                  ▏▎▌▏▏▏▎▎▎▎▎▎▎▎▎▍▌▏▌▋▋▍▍▋▋▋▋▋▌▌▍▊▌▎ ▏▏▎▏▎▎▏ ▎▋▋▋▋▌▌▌▍▌▌▋▋▊▋▎ ▏▎▊▎▏▏▏▏▏▏▎▎▍▏▏▏▏▎▎▎▎▍▍▌▏     \\r                                                  ▎▍▍▏▏▎▎▏▎▎▍▎▎▎▎▍▌▎▎▍▋▋▋▌▌▋▋▋▍▍▍▋▌▌  ▏▏▏▏   ▎▊▋▋▋▌▋▌▍▌▌▋▋▋▋▋ ▏▍▋▎▏▏▎▏▏▏▏▎▍▎▏▏▏▎▎▎▎▎▍▋▏     \\r                                                  ▍▍▎▏▎▎▎▏▎▍▎▎▎▎▎▎▍▌▍▍▋▌▌▌▌▌▌▍▌▍▍▌▋▋▎  ▏    ▎▌▋▋▋▋▌▌▌▍▍▌▋▋▋▋▊ ▎▍▌▏▏▏▏▏▏▏▏▎▍▎▏▏▏▎▎▎▎▎▍▋▏     \\r                                                  ▍▍▎▎▎▎▏▏▎▍▎▎▎▎▎▎▎▌▋▋▊▋▋▌▌▌▌▌▌▌▌▍▌▋▌▏  ▏▎▍▌▋▋▋▋▋▋▌▌▌▍▌▌▌▋▋▋▊▎▌▌▍▏▏▏▎▏▏▏▏▎▍▎▎▏▏▎▍▎▎▎▍▋▏     \\r                                                  ▍▍▎▌▎▏▏▏▎▍▎▎▎▎▎▎▏▍▋▋▍▋▋▋▌▋▋▌▌▌▋▌▌▌▋▍▎▎▌▋▋▌▌▋▋▋▋▋▋▌▌▌▍▌▋▋▋▋▋▋▋▌▎▏▏▎▏▏▏▏▏▎▍▍▎▏▏▎▎▍▎▎▍▋▎▏    \\r                                                  ▍▍▍▍▎▏▏▏▎▎▍▎▎▎▎▎▎▍▌▌ ▍▌▋▋▋▋▌▍▍▋▋▋▋▋▋▋▌▋▋▌▌▌▋▋▋▋▋▌▌▌▌▌▌▌▋▋▋▋▌▌▌▏▏▏▏▎▏▏▏▏▎▍▍▎▏▏▎▎▎▎▎▎▌▎▏    \\r                                                  ▍▌▌▍▏▏▏▎▎▍▎▎▎▎▎▎▎▎▍▌▍▏▎▌▋▋▋▌▌▌▌▋▋▋▍▌▌▋▌▋▋▋▋▋▋▋▋▋▌▌▌▌▍▌▌▋▋▋▋▍▌▌▏▏▏▎▏▎▎▏▏▎▎▍▎▏▏▎▎▍▎▎▎▌▍▎    \\r                                                  ▍▌▋▏▏▏▏▎▎▍▍▎▎▎▎▎▎▎▎▍▌▎▎▎▊▋▋▋▋▌▌▌▋▋▍▌▌▌▌▌▋▋▋▋▋▌▋▋▌▌▌▍▌▌▌▋▊▋▍▎▍▌▏▏▏▏▎▏▏▏▏▎▎▍▎▎▏▎▎▎▍▍▍▌▍▎    \\r                                                  ▌▋▋▏▏▏▏▏▎▍▎▎▎▎▎▎▎▎▎▎▍▌▋▋▌▍▍▋▋▋▋▋▋▋▋▋▋▌▍▌▋▋▌▌▋▋▋▌▋▌▌▌▌▋▋▊▊▌ ▎▍▍▏▏▏▏▏▏▏▏▏▎▎▍▎▎▏▎▎▎▎▍▍▍▍▎    \\r                                                  ▋▋▌ ▏▏▏▎▎▎▎▎▎▎▎▎▎▎▎▎▏▎▌▉▌▏ ▏▍▌▋▋▋▋▋▋▋▋▌▋▋▌▏▏▍▊▊▋▋▋▋▋▋▊▊▊▌▎ ▌▍▎▏▎▎▏▏▏▏▏▏▎▎▍▎▎▏▎▎▎▎▍▌▍▍▎    \\r                                                  ▋▋▎▏▏▏▎▎▎▍▎▎▎▎▎▎▎▎▎▎▎▎▌▋▍▍▎  ▏▏▋▋▋▋▌▌▌▍▌▌▋▍▎▎▌▋▋▋▊▊▊▋▊▋▍▏  ▋▍▎▎▎▎▏▏▏▏▏▏▎▎▍▎▎▏▎▎▎▏▍▌▌▌▎    \\r                                                  ▌▌▎ ▏▎▎▎▎▎▍▎▎▎▎▎▎▎▎▎▎▍▍▍ ▍▌▋▎▏▏▋▌▍    ▎▎▍▊▋▍   ▏▌▌▌▌▌▎▏▋▍▎▏▌▍▎▎▎▏▏▎▏▏▏▏▎▎▍▍▎▏▎▎▎▎▍▌▋▌▎    \\r                                                  ▌▌▍▏▏▎▎▏▎▍▎▎▎▎▎▎▎▎▎▎▎▍▌▌ ▏▏▏▎▍▌▉▌▎   ▏▍▌▌▋▏   ▎▍▋▏  ▍▏▏▍▏▏▏▌▌▌▌▏▏▏▏▏▏▏▏▎▎▍▎▎▏▎▎▍▎▎▍▋▌▍    \\r                                                  ▍▍▍ ▏▎▎▎▎▎▍▎▎▍▎▎▎▎▎▎▎▍▌▌ ▏▏    ▌▌▌▌▌▌▌▎▏ ▏▎▎▏▌▊▉▊▍▎▏▍▌▌  ▏▍▋▋▋▌▎▏▏▏▏▏▏▏▎▎▎▎▎▎▎▎▎▎▎▍▊▋▍    \\r                                                  ▏▎▍▏▏▎▍▏▎▍▎▎▎▎▎▎▎▎▎▎▎▍▌▍ ▎▌▋▏  ▏▎▍▍▏▏▌    ▍▌▋▋▋▊▋▌▎  ▏▏  ▍▊▍▎▏▌▎▏▏▏▏▏▏▎▎▎▍▎▎▎▎▎▍▎▎▍▌▋▍    \\r                                                  ▏▎▌ ▏▎▎▎▎▎▍▎▎▎▎▎▎▎▎▎▎▌▌▎ ▎▌▉▋▌▌▌▋▋▍▏▎▌▌▍▎▍▍▌▌▋▋▋▌▏       ▍▉  ▏▋▎▏▏▎▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▌▋▍    \\r                                                  ▏▎▌ ▏▎▍▏▎▎▎▎▎▎▎▎▎▎▎▎▎▌▌▎ ▎▌▉▊▋▋▊▊▋▍▏▏▍▉▋▋▋▋▋▋▋▋▋▊▏      ▎▎▎ ▎▍▋▎▏▏▏▏▏▏▎▎▎▍▎▎▎▎▎▎▎▎▎▍▌▍    \\r                                                  ▏▍▌ ▏▎▍▎▎▎▎▎▎▎▎▎▍▎▎▎▎▋▍  ▏▍▊▋▋▋▋▋▋▌▏▏▏▉▊▋▋▋▋▋▋▋▋▊▏      ▏▏  ▎▍▋▎▏▏▎▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▎▌▍▎    \\r                                                  ▏▍▌▏▏▎▍▎▎▎▎▎▎▎▎▎▎▎▎▎▎▋▍  ▎▍▊▋▌▌▋▋▋▋▏  ▊▋▌▌▌▌▌▋▋▋▊▏          ▎▍▋▎▏▏▏▏▏▏▎▎▎▎▎▎▎▎▎▍▎▎▍▌▎▏    \\r                                                   ▎▋ ▏▎▍▎▎▏▎▎▎▍▎▎▍▎▎▎▌▌▍  ▏▍▊▋▋▋▌▋▋▋▏  ▊▋▌▌▋▋▋▋▋▋▊▏          ▏▍▋▎▏▏▏▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▍▌▏     \\r                                                   ▎▋▏▏▏▍▎▎▏▏▎▎▍▍▎▎▎▎▍▊▎▏  ▏▍▊▋▋▌▋▋▋▋▏  ▊▋▋▌▋▋▌▋▋▋▉▏          ▏▎▋▎▏▏▏▏▏▏▎▍▎▎▎▎▎▎▎▎▎▎▍▌▏     \\r                                                   ▎▋▎▏▏▎▍▎▏▏▏▎▍▎▎▎▎▍▌▊▏   ▏▎▊▋▋▋▌▋▋▊▏  ▊▋▋▋▌▌▋▋▋▋▊▎           ▏▋▍▎▏▏▏▏▏▎▎▍▎▎▎▎▎▎▎▎▎▍▋▏     \\r                                                   ▎▌▍▎▏▎▍▎▎▏▏▎▎▎▎▎▎▋▋▏    ▏▎▊▋▋▌▋▋▋▊▏  ▊▋▋▌▋▋▌▋▋▋▉▏           ▏▋▍▎▎▏▏▏▏▎▎▎▎▎▎▍▎▎▎▎▎▍▋▏     \\r                                                   ▏▎▌▎▏▎▍▍▎▏▏▏▎▎▎▎▋▋▌      ▎▉▋▋▋▌▋▋▊▏  ▊▋▋▌▌▌▌▋▋▋▊▏           ▏▋▌▍▎▏▏▏▎▎▎▎▎▎▎▎▎▎▎▎▎▍▋▏     \\r                                                     ▋▍▏▎▎▍▍▎▎▎▎▎▎▍▊▎       ▎▊▋▋▌▋▋▋▊▏  ▊▋▋▌▋▋▌▋▋▋▊▏           ▏▍▌▌▎▏▏▏▎▍▎▎▎▎▎▎▎▎▎▎▍▍▌▏     \\r                                                     ▌▌▎▏▎▍▎▎▎▎▎▎▍▊         ▏▊▋▋▋▌▋▋▊▏  ▋▋▋▋▌▋▋▋▋▋▊▏             ▋▋▎▏▏▏▎▍▍▎▎▎▎▎▎▎▎▎▍▍▌▏     \\r                                                     ▎▌▌▏▎▎▍▎▎▎▎▌▌▌         ▏▊▋▋▌▌▋▋▊▎▏ ▋▋▋▋▋▋▌▌▌▋▊▏             ▌▌▋▏▏▏▎▍▍▎▎▎▎▎▎▎▎▎▍▌▎▏     \\r                                                      ▍▋▎▎▎▎▎▎▎▎▋▌          ▏▉▋▋▋▌▋▋▋▍▏ ▋▋▋▋▌▌▌▌▋▋▊▏              ▍▊▎▏▏▎▎▎▍▎▎▎▎▎▎▎▎▌▌▏      \\r                                                      ▎▍▋▎▎▎▎▎▎▌▋▍          ▏▊▋▋▌▋▋▋▊▍▎ ▊▋▋▌▋▌▌▋▋▋▊▏              ▎▋▋▍▎▎▍▍▎▍▎▎▎▎▎▎▎▌▌       \\r                                                       ▏▋▌▍▎▎▎▎▋▍▎          ▏▋▋▋▋▌▌▋▋▌▎ ▊▋▋▌▌▋▋▋▋▊▋▏                ▊▌▎▎▎▎▎▎▎▎▎▎▎▎▍▌▌       \\r                                                        ▏▋▌▎▎▎▍▋▏           ▏▌▊▋▌▌▌▋▋▌▍▏▋▋▋▌▋▋▌▋▋▊▌▏                ▌▌▌▎▎▎▎▎▎▎▎▎▎▎▌▌▍       \\r                                                         ▍▌▋▎▎▎▋▏           ▏▍▋▋▋▌▌▋▋▌▍▎▋▋▌▋▌▌▋▋▊▊▍▏                 ▌▋▎▎▎▎▎▎▎▎▎▎▎▊▍        \\r                                                          ▎▌▋▌▍▌▏            ▏▋▊▌▋▌▌▋▌▌▍▋▋▋▌▌▌▌▋▊▋▏                  ▎▌▋▎▎▎▎▎▎▎▎▎▌▋▎        \\r                                                            ▌▋▊▊▏             ▋▊▋▌▋▋▋▋▌▍▋▋▌▋▋▋▋▋▊▋                    ▏▊▍▎▎▎▎▎▎▎▌▊▏         \\r                                                             ▏▎▊▎▏            ▋▊▋▋▋▋▋▌▌▌▋▋▋▌▌▌▌▊▋▌                    ▏▍▌▌▎▎▎▎▎▌▌▌          \\r                                                                              ▍▋▊▌▋▋▋▋▍▎▊▋▋▋▌▋▋▉▌▎                     ▏▋▌▎▎▎▎▍▋▌           \\r                                                                               ▍▉▋▋▋▉▌▎ ▊▋▋▌▌▋▊▊▍                       ▋▌▎▎▎▍▊▏            \\r                                                                               ▏▍▉▉▉▉▎  ▌▊▉▋▊▉█                         ▌▍▏▍▋▋▎▏            \\r                                                                                 ▌▌▌▏    ▌▉▉▉▋▎                         ▌▌▌▊▍▏              \\r                                                                                           ▎                           ▎▊▊▋                 \\r                                                                                                                      ▏▎▍▎                  \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \\r                                                                                                                                            \",\"t\":0,\"b\":false,\"e\":1.9,\"p\":{\"y\":1000,\"x\":50},\"c\":7,\"f\":1.9,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,10,10,10,5,false,false]],\"b\":true},\"r\":10}"},{"c":"37.3,10053120,7,25,578012,1386308605,138630860574","m":"{\"b\":false,\"n\":\"Hits*1\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"37.6,10053120,7,25,578012,1386308606,138630860671","m":"{\"b\":false,\"n\":\"Hits*4\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"37.5,10053120,7,25,578012,1386308606,138630860672","m":"{\"b\":false,\"n\":\"Hits*3\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"37.4,10053120,7,25,578012,1386308606,138630860673","m":"{\"b\":false,\"n\":\"Hits*2\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"37.8,10053120,7,25,578012,1386308607,138630860769","m":"{\"b\":false,\"n\":\"Hits*6\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"37.7,10053120,7,25,578012,1386308607,138630860770","m":"{\"b\":false,\"n\":\"Hits*5\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38,10053120,7,25,578012,1386308608,138630860867","m":"{\"b\":false,\"n\":\"Hits*8\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"37.9,10053120,7,25,578012,1386308608,138630860868","m":"{\"b\":false,\"n\":\"Hits*7\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38.3,10053120,7,25,578012,1386308609,138630860964","m":"{\"b\":false,\"n\":\"Hits*11\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38.2,10053120,7,25,578012,1386308609,138630860965","m":"{\"b\":false,\"n\":\"Hits*10\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38.1,10053120,7,25,578012,1386308609,138630860966","m":"{\"b\":false,\"n\":\"Hits*9\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38.5,10053120,7,25,578012,1386308610,138630861093","m":"{\"b\":false,\"n\":\"Hits*13\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38.4,10053120,7,25,578012,1386308610,138630861063","m":"{\"b\":false,\"n\":\"Hits*12\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38.8,10053120,7,25,578012,1386308611,138630861159","m":"{\"b\":false,\"n\":\"Hits*16\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38.7,10053120,7,25,578012,1386308611,138630861160","m":"{\"b\":false,\"n\":\"Hits*15\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38.6,10053120,7,25,578012,1386308611,138630861161","m":"{\"b\":false,\"n\":\"Hits*14\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"39,10053120,7,25,578012,1386308612,138630861257","m":"{\"b\":false,\"n\":\"Hits*18\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"38.9,10053120,7,25,578012,1386308612,138630861258","m":"{\"b\":false,\"n\":\"Hits*17\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"39.2,10053120,7,25,578012,1386308613,138630861389","m":"{\"b\":false,\"n\":\"Hits*20\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"39.3,10053120,7,25,578012,1386308613,138630861354","m":"{\"b\":false,\"n\":\"Hits*21\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"39.1,10053120,7,25,578012,1386308613,138630861356","m":"{\"b\":false,\"n\":\"Hits*19\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"39.5,10053120,7,25,578012,1386308614,138630861452","m":"{\"b\":false,\"n\":\"Hits*23\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"39.4,10053120,7,25,578012,1386308614,138630861453","m":"{\"b\":false,\"n\":\"Hits*22\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"39.7,10053120,7,25,578012,1386308615,138630861550","m":"{\"b\":false,\"n\":\"Hits*25\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"39.6,10053120,7,25,578012,1386308615,138630861551","m":"{\"b\":false,\"n\":\"Hits*24\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"40,10053120,7,25,578012,1386308616,138630861647","m":"{\"b\":false,\"n\":\"Hits*28\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"39.9,10053120,7,25,578012,1386308616,138630861648","m":"{\"b\":false,\"n\":\"Hits*27\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"39.8,10053120,7,25,578012,1386308616,138630861649","m":"{\"b\":false,\"n\":\"Hits*26\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"40.2,10053120,7,25,578012,1386308617,138630861745","m":"{\"b\":false,\"n\":\"Hits*30\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"40.1,10053120,7,25,578012,1386308617,138630861746","m":"{\"b\":false,\"n\":\"Hits*29\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"40.5,10053120,7,25,578012,1386308618,138630861842","m":"{\"b\":false,\"n\":\"Hits*33\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"40.4,10053120,7,25,578012,1386308618,138630861843","m":"{\"b\":false,\"n\":\"Hits*32\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"40.3,10053120,7,25,578012,1386308618,138630861844","m":"{\"b\":false,\"n\":\"Hits*31\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"40.7,10053120,7,25,578012,1386308619,138630861940","m":"{\"b\":false,\"n\":\"Hits*35\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"40.6,10053120,7,25,578012,1386308619,138630861941","m":"{\"b\":false,\"n\":\"Hits*34\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"48.3,10053120,7,25,578012,1386308650,138630865038","m":"{\"b\":false,\"n\":\"Hits*111\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"48.2,10053120,7,25,578012,1386308650,138630865039","m":"{\"b\":false,\"n\":\"Hits*110\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"48.5,10053120,7,25,578012,1386308651,138630865136","m":"{\"b\":false,\"n\":\"Hits*113\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"48.4,10053120,7,25,578012,1386308651,138630865137","m":"{\"b\":false,\"n\":\"Hits*112\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"48.8,10053120,7,25,578012,1386308652,138630865233","m":"{\"b\":false,\"n\":\"Hits*116\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"48.7,10053120,7,25,578012,1386308652,138630865234","m":"{\"b\":false,\"n\":\"Hits*115\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"48.6,10053120,7,25,578012,1386308652,138630865235","m":"{\"b\":false,\"n\":\"Hits*114\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49,10053120,7,25,578012,1386308653,138630865331","m":"{\"b\":false,\"n\":\"Hits*118\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"48.9,10053120,7,25,578012,1386308653,138630865332","m":"{\"b\":false,\"n\":\"Hits*117\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49.3,10053120,7,25,578012,1386308654,138630865428","m":"{\"b\":false,\"n\":\"Hits*121\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49.2,10053120,7,25,578012,1386308654,138630865429","m":"{\"b\":false,\"n\":\"Hits*120\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49.1,10053120,7,25,578012,1386308654,138630865430","m":"{\"b\":false,\"n\":\"Hits*119\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49.5,10053120,7,25,578012,1386308655,138630865526","m":"{\"b\":false,\"n\":\"Hits*123\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49.4,10053120,7,25,578012,1386308655,138630865527","m":"{\"b\":false,\"n\":\"Hits*122\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49.7,10053120,7,25,578012,1386308656,138630865692","m":"{\"b\":false,\"n\":\"Hits*125\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49.8,10053120,7,25,578012,1386308656,138630865624","m":"{\"b\":false,\"n\":\"Hits*126\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49.6,10053120,7,25,578012,1386308656,138630865625","m":"{\"b\":false,\"n\":\"Hits*124\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"50,10053120,7,25,578012,1386308657,138630865722","m":"{\"b\":false,\"n\":\"Hits*128\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"49.9,10053120,7,25,578012,1386308657,138630865723","m":"{\"b\":false,\"n\":\"Hits*127\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"50.2,10053120,7,25,578012,1386308658,138630865820","m":"{\"b\":false,\"n\":\"Hits*130\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"50.1,10053120,7,25,578012,1386308658,138630865821","m":"{\"b\":false,\"n\":\"Hits*129\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"50.3,10053120,7,25,578012,1386308658,138630865862","m":"{\"b\":false,\"n\":\"Hits*131\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"50.5,10053120,7,25,578012,1386308659,138630865955","m":"{\"b\":false,\"n\":\"Hits*133\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"50.6,10053120,7,25,578012,1386308660,138630866075","m":"{\"b\":false,\"n\":\"Hits*134\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"50.7,10053120,7,25,578012,1386308660,138630866076","m":"{\"b\":false,\"n\":\"Hits*135\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"50.8,10053120,7,25,578012,1386308660,138630866077","m":"{\"b\":false,\"n\":\"Hits*136\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"50.9,10053120,7,25,578012,1386308661,138630866178","m":"{\"b\":false,\"n\":\"Hits*137\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51,10053120,7,25,578012,1386308661,138630866179","m":"{\"b\":false,\"n\":\"Hits*138\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51.2,10053120,7,25,578012,1386308662,138630866218","m":"{\"b\":false,\"n\":\"Hits*140\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51.1,10053120,7,25,578012,1386308662,138630866219","m":"{\"b\":false,\"n\":\"Hits*139\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51.3,10053120,7,25,578012,1386308663,138630866391","m":"{\"b\":false,\"n\":\"Hits*141\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51.5,10053120,7,25,578012,1386308663,138630866316","m":"{\"b\":false,\"n\":\"Hits*143\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51.4,10053120,7,25,578012,1386308663,138630866317","m":"{\"b\":false,\"n\":\"Hits*142\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51.7,10053120,7,25,578012,1386308664,138630866414","m":"{\"b\":false,\"n\":\"Hits*145\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51.6,10053120,7,25,578012,1386308664,138630866415","m":"{\"b\":false,\"n\":\"Hits*144\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51.9,10053120,7,25,578012,1386308665,138630866590","m":"{\"b\":false,\"n\":\"Hits*147\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52,10053120,7,25,578012,1386308665,138630866512","m":"{\"b\":false,\"n\":\"Hits*148\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"51.8,10053120,7,25,578012,1386308665,138630866513","m":"{\"b\":false,\"n\":\"Hits*146\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52.2,10053120,7,25,578012,1386308666,138630866610","m":"{\"b\":false,\"n\":\"Hits*150\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52.1,10053120,7,25,578012,1386308666,138630866611","m":"{\"b\":false,\"n\":\"Hits*149\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52.5,10053120,7,25,578012,1386308667,13863086677","m":"{\"b\":false,\"n\":\"Hits*153\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52.4,10053120,7,25,578012,1386308667,13863086678","m":"{\"b\":false,\"n\":\"Hits*152\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52.3,10053120,7,25,578012,1386308667,13863086679","m":"{\"b\":false,\"n\":\"Hits*151\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52.7,10053120,7,25,578012,1386308668,13863086685","m":"{\"b\":false,\"n\":\"Hits*155\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52.6,10053120,7,25,578012,1386308668,13863086686","m":"{\"b\":false,\"n\":\"Hits*154\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"53,10053120,7,25,578012,1386308669,13863086692","m":"{\"b\":false,\"n\":\"Hits*158\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52.9,10053120,7,25,578012,1386308669,13863086693","m":"{\"b\":false,\"n\":\"Hits*157\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"52.8,10053120,7,25,578012,1386308669,13863086694","m":"{\"b\":false,\"n\":\"Hits*156\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"53.2,10053120,7,25,578012,1386308670,138630867099","m":"{\"b\":false,\"n\":\"Hits*160\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"53.1,10053120,7,25,578012,1386308670,13863086701","m":"{\"b\":false,\"n\":\"Hits*159\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"53.5,10053120,7,25,578012,1386308671,138630867196","m":"{\"b\":false,\"n\":\"Hits*163\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"53.4,10053120,7,25,578012,1386308671,138630867197","m":"{\"b\":false,\"n\":\"Hits*162\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"53.3,10053120,7,25,578012,1386308671,138630867198","m":"{\"b\":false,\"n\":\"Hits*161\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"53.7,10053120,7,25,578012,1386308672,138630867294","m":"{\"b\":false,\"n\":\"Hits*165\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"53.6,10053120,7,25,578012,1386308672,138630867295","m":"{\"b\":false,\"n\":\"Hits*164\",\"t\":0,\"p\":{\"y\":528,\"x\":27},\"c\":0,\"l\":0.1}"},{"c":"53.37,16711680,7,30,253165,1386405384,138640538441","m":"{\"n\":\"界\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.71},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"53.31,16711680,7,30,253165,1386405385,138640538550","m":"{\"n\":\"世\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.71},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"53.25,16711680,7,30,253165,1386405385,138640538551","m":"{\"n\":\"的\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.71},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"53.19,16711680,7,30,253165,1386405386,138640538652","m":"{\"n\":\"结\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.71},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"53.13,16711680,7,30,253165,1386405386,138640538653","m":"{\"n\":\"终\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.71},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"52.86,16711680,7,30,253165,1386405386,138640538654","m":"{\"n\":\"到\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.41},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":702.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"52.8,16711680,7,30,253165,1386405387,138640538755","m":"{\"n\":\"见\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.41},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":657.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"52.74,16711680,7,30,253165,1386405387,138640538756","m":"{\"n\":\"能\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.41},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":612.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"52.68,16711680,7,30,253165,1386405388,138640538857","m":"{\"n\":\"我\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.41},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":567.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"52.62,16711680,7,30,253165,1386405388,138640538859","m":"{\"n\":\"焉\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.41},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":522.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"52.56,16711680,7,30,253165,1386405388,138640538860","m":"{\"n\":\"终\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.41},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":477.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"52.5,16711680,7,30,253165,1386405389,138640538961","m":"{\"n\":\"的\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.41},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":432.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"52.44,16711680,7,30,253165,1386405389,138640538962","m":"{\"n\":\"走\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.41},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":387.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"52.38,16711680,7,30,253165,1386405390,138640539063","m":"{\"n\":\"暴\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.41},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":342.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"52.32,16711680,7,30,253165,1386405390,138640539064","m":"{\"n\":\"在\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.41},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":297.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"52.03,16711680,7,30,253165,1386405390,138640539065","m":"{\"n\":\"逝\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.25},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"51.97,16711680,7,30,253165,1386405391,138640539166","m":"{\"n\":\"消\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.25},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"51.91,16711680,7,30,253165,1386405391,138640539168","m":"{\"n\":\"的\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.25},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"51.85,16711680,7,30,253165,1386405392,138640539269","m":"{\"n\":\"心\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.25},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"51.79,16711680,7,30,253165,1386405392,138640539270","m":"{\"n\":\"内\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.25},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"51.73,16711680,7,30,253165,1386405393,138640539372","m":"{\"n\":\"是\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.25},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"51.67,16711680,7,30,253165,1386405393,138640539373","m":"{\"n\":\"即\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.25},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"51.34,16711680,7,30,253165,1386405393,138640539374","m":"{\"n\":\"时\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.41},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"51.28,16711680,7,30,253165,1386405394,138640539476","m":"{\"n\":\"之\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.41},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"51.22,16711680,7,30,253165,1386405394,138640539478","m":"{\"n\":\"忘\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.41},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"51.16,16711680,7,30,253165,1386405395,138640539579","m":"{\"n\":\"遗\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.41},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"51.1,16711680,7,30,253165,1386405395,138640539580","m":"{\"n\":\"人\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.41},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"51.04,16711680,7,30,253165,1386405395,138640539582","m":"{\"n\":\"有\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.41},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"50.98,16711680,7,30,253165,1386405396,138640539683","m":"{\"n\":\"所\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.41},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"50.92,16711680,7,30,253165,1386405396,138640539684","m":"{\"n\":\"被\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.41},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"50.86,16711680,7,30,253165,1386405397,138640539789","m":"{\"n\":\"当\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.41},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"50.31,16711680,7,30,253165,1386405397,138640539790","m":"{\"n\":\"墟\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.75},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"50.25,16711680,7,30,253165,1386405397,138640539791","m":"{\"n\":\"废\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.75},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"50.19,16711680,7,30,253165,1386405398,138640539892","m":"{\"n\":\"为\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.75},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"50.13,16711680,7,30,253165,1386405398,138640539893","m":"{\"n\":\"成\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.75},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"50.07,16711680,7,30,253165,1386405399,138640539994","m":"{\"n\":\"经\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.75},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"50.01,16711680,7,30,253165,1386405399,138640539998","m":"{\"n\":\"已\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.75},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"49.95,16711680,7,30,253165,1386405399,138640539999","m":"{\"n\":\"所\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.75},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"49.89,16711680,7,30,253165,1386405400,13864054001","m":"{\"n\":\"处\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.75},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"49.83,16711680,7,30,253165,1386405400,13864054002","m":"{\"n\":\"的\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.75},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"49.77,16711680,7,30,253165,1386405401,13864054013","m":"{\"n\":\"归\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.75},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"49.71,16711680,7,30,253165,1386405401,13864054014","m":"{\"n\":\"回\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.75},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"49.43,16711680,7,30,253165,1386405401,13864054016","m":"{\"n\":\"源\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.36},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"49.37,16711680,7,30,253165,1386405402,13864054027","m":"{\"n\":\"根\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.36},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"49.31,16711680,7,30,253165,1386405402,13864054028","m":"{\"n\":\"础\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.36},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"49.13,16711680,7,30,253165,1386405403,138640540336","m":"{\"n\":\"定\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.36},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"49.19,16711680,7,30,253165,1386405403,138640540342","m":"{\"n\":\"的\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.36},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"49.25,16711680,7,30,253165,1386405403,138640540310","m":"{\"n\":\"基\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.36},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"49.01,16711680,7,30,253165,1386405404,138640540426","m":"{\"n\":\"够\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.36},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"49.07,16711680,7,30,253165,1386405404,138640540428","m":"{\"n\":\"安\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.36},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"48.43,16711680,7,30,253165,1386405405,138640540519","m":"{\"n\":\"歌\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.6},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":657.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"48.49,16711680,7,30,253165,1386405405,138640540523","m":"{\"n\":\"声\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.6},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":702.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"48.95,16711680,7,30,253165,1386405405,138640540577","m":"{\"n\":\"不\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.36},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"48.37,16711680,7,30,253165,1386405406,138640540618","m":"{\"n\":\"的\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.6},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":612.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"48.31,16711680,7,30,253165,1386405406,13864054065","m":"{\"n\":\"格\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.6},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":567.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"48.13,16711680,7,30,253165,1386405407,138640540782","m":"{\"n\":\"虚\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.6},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":432.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"48.19,16711680,7,30,253165,1386405407,138640540791","m":"{\"n\":\"拟\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.6},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":477.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"48.25,16711680,7,30,253165,1386405407,138640540781","m":"{\"n\":\"人\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.6},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":522.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"48.07,16711680,7,30,253165,1386405408,138640540892","m":"{\"n\":\"着\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.6},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":387.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"48.01,16711680,7,30,253165,1386405410,138640541090","m":"{\"n\":\"赖\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.6},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":342.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"47.95,16711680,7,30,253165,1386405410,138640541094","m":"{\"n\":\"仰\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.6},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":297.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"47.48,16711680,7,30,253165,1386405410,13864054105","m":"{\"n\":\"力\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":702.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"47.42,16711680,7,30,253165,1386405410,13864054107","m":"{\"n\":\"为\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":657.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"47.36,16711680,7,30,253165,1386405410,13864054108","m":"{\"n\":\"能\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":612.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"47.3,16711680,7,30,253165,1386405410,138640541010","m":"{\"n\":\"无\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":567.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"47.24,16711680,7,30,253165,1386405411,138640541112","m":"{\"n\":\"也\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":522.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"47.18,16711680,7,30,253165,1386405411,138640541114","m":"{\"n\":\"事\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":477.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"47.12,16711680,7,30,253165,1386405411,138640541117","m":"{\"n\":\"种\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":432.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"47.06,16711680,7,30,253165,1386405412,138640541222","m":"{\"n\":\"那\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":387.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"47,16711680,7,30,253165,1386405412,138640541227","m":"{\"n\":\"连\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":342.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"46.94,16711680,7,30,253165,1386405413,138640541335","m":"{\"n\":\"但\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":297.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"46.54,16711680,7,30,253165,1386405413,138640541337","m":"{\"n\":\"水\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.54},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":702.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"46.48,16711680,7,30,253165,1386405413,138640541338","m":"{\"n\":\"泪\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.54},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":657.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"46.36,16711680,7,30,253165,1386405414,138640541420","m":"{\"n\":\"洒\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.54},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":567.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"46.42,16711680,7,30,253165,1386405414,138640541447","m":"{\"n\":\"出\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.54},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":612.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"46.24,16711680,7,30,253165,1386405415,138640541593","m":"{\"n\":\"空\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.54},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":477.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"46.3,16711680,7,30,253165,1386405415,138640541511","m":"{\"n\":\"挥\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.54},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":522.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"46.18,16711680,7,30,253165,1386405416,138640541688","m":"{\"n\":\"天\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.54},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":432.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"46.12,16711680,7,30,253165,1386405416,138640541671","m":"{\"n\":\"着\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.54},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":387.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"46.06,16711680,7,30,253165,1386405416,138640541675","m":"{\"n\":\"望\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.54},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":342.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"45.68,16711680,7,30,253165,1386405417,138640541797","m":"{\"n\":\"葱\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.28},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"46,16711680,7,30,253165,1386405417,13864054179","m":"{\"n\":\"仰\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.54},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":297.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"45.5,16711680,7,30,253165,1386405418,138640541888","m":"{\"n\":\"咬\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.28},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"45.56,16711680,7,30,253165,1386405418,138640541895","m":"{\"n\":\"着\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.28},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"45.62,16711680,7,30,253165,1386405418,138640541896","m":"{\"n\":\"青\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.28},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"45.38,16711680,7,30,253165,1386405419,138640541986","m":"{\"n\":\"意\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.28},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"45.44,16711680,7,30,253165,1386405419,138640541987","m":"{\"n\":\"的\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.28},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"44.79,16711680,7,30,253165,1386405420,138640542046","m":"{\"n\":\"情\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":657.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"44.85,16711680,7,30,253165,1386405420,138640542048","m":"{\"n\":\"愿\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":702.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"45.32,16711680,7,30,253165,1386405420,138640542085","m":"{\"n\":\"决\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.28},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"44.67,16711680,7,30,253165,1386405421,138640542144","m":"{\"n\":\"心\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":567.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"44.73,16711680,7,30,253165,1386405421,138640542145","m":"{\"n\":\"甘\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":612.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"44.49,16711680,7,30,253165,1386405422,138640542230","m":"{\"n\":\"此\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":432.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"44.55,16711680,7,30,253165,1386405422,138640542231","m":"{\"n\":\"也\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":477.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"44.61,16711680,7,30,253165,1386405422,138640542243","m":"{\"n\":\"也\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":522.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"44.37,16711680,7,30,253165,1386405423,138640542325","m":"{\"n\":\"算\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":342.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"44.43,16711680,7,30,253165,1386405423,138640542329","m":"{\"n\":\"如\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":387.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"43.58,16711680,7,30,253165,1386405424,13864054243","m":"{\"n\":\"玩\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.81},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":657.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"44.31,16711680,7,30,253165,1386405424,138640542421","m":"{\"n\":\"就\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":297.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"43.64,16711680,7,30,253165,1386405424,138640542411","m":"{\"n\":\"具\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.81},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":702.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"43.46,16711680,7,30,253165,1386405425,138640542599","m":"{\"n\":\"唱\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.81},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":567.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"43.519999999999996,16711680,7,30,253165,1386405425,13864054251","m":"{\"n\":\"的\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.81},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":612.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"43.34,16711680,7,30,253165,1386405426,138640542680","m":"{\"n\":\"着\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.81},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":477.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"43.4,16711680,7,30,253165,1386405426,138640542698","m":"{\"n\":\"翻\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.81},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":522.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"43.28,16711680,7,30,253165,1386405426,138640542649","m":"{\"n\":\"照\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.81},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":432.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"43.16,16711680,7,30,253165,1386405427,13864054272","m":"{\"n\":\"新\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.81},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":342.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"43.22,16711680,7,30,253165,1386405427,138640542739","m":"{\"n\":\"仿\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.81},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":387.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"42.79,16711680,7,30,253165,1386405428,138640542895","m":"{\"n\":\"曲\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.51},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"43.1,16711680,7,30,253165,1386405428,138640542896","m":"{\"n\":\"重\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.81},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":297.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"42.730000000000004,16711680,7,30,253165,1386405428,138640542815","m":"{\"n\":\"歌\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.51},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"42.61,16711680,7,30,253165,1386405429,13864054299","m":"{\"n\":\"存\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.51},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"42.67,16711680,7,30,253165,1386405429,138640542913","m":"{\"n\":\"的\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.51},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"42.55,16711680,7,30,253165,1386405430,138640543084","m":"{\"n\":\"既\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.51},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"42.489999999999995,16711680,7,30,253165,1386405430,138640543086","m":"{\"n\":\"将\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.51},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"42.43,16711680,7,30,253165,1386405430,138640543024","m":"{\"n\":\"是\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.51},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"42.370000000000005,16711680,7,30,253165,1386405431,138640543183","m":"{\"n\":\"己\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.51},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"42.31,16711680,7,30,253165,1386405431,138640543185","m":"{\"n\":\"自\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.51},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"42.25,16711680,7,30,253165,1386405432,138640543297","m":"{\"n\":\"使\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.51},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"42.19,16711680,7,30,253165,1386405432,13864054326","m":"{\"n\":\"纵\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.51},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"41.8,16711680,7,30,253165,1386405432,138640543233","m":"{\"n\":\"运\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.3},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"41.68,16711680,7,30,253165,1386405433,138640543340","m":"{\"n\":\"的\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.3},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"41.739999999999995,16711680,7,30,253165,1386405433,138640543367","m":"{\"n\":\"命\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.3},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"41.620000000000005,16711680,7,30,253165,1386405434,138640543487","m":"{\"n\":\"恒\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.3},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"41.56,16711680,7,30,253165,1386405434,13864054344","m":"{\"n\":\"永\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.3},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"41.5,16711680,7,30,253165,1386405434,138640543416","m":"{\"n\":\"我\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.3},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"41.44,16711680,7,30,253165,1386405435,138640543532","m":"{\"n\":\"是\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.3},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"40.870000000000005,16711680,7,30,253165,1386405435,138640543558","m":"{\"n\":\"唱\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.77},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"40.69,16711680,7,30,253165,1386405436,138640543681","m":"{\"n\":\"继\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.77},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"40.75,16711680,7,30,253165,1386405436,138640543689","m":"{\"n\":\"续\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.77},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"40.81,16711680,7,30,253165,1386405436,138640543634","m":"{\"n\":\"歌\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.77},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"40.57,16711680,7,30,253165,1386405437,138640543745","m":"{\"n\":\"却\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.77},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"40.629999999999995,16711680,7,30,253165,1386405437,138640543746","m":"{\"n\":\"仍\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.77},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"40.39,16711680,7,30,253165,1386405438,138640543842","m":"{\"n\":\"道\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.77},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"40.45,16711680,7,30,253165,1386405438,138640543843","m":"{\"n\":\"如\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.77},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"40.510000000000005,16711680,7,30,253165,1386405438,138640543844","m":"{\"n\":\"此\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.77},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"40.269999999999996,16711680,7,30,253165,1386405439,138640543940","m":"{\"n\":\"明\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.77},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"40.33,16711680,7,30,253165,1386405439,138640543941","m":"{\"n\":\"知\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.77},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"39.739999999999995,16711680,7,30,253165,1386405440,138640544037","m":"{\"n\":\"的\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"39.8,16711680,7,30,253165,1386405440,138640544038","m":"{\"n\":\"行\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"39.86,16711680,7,30,253165,1386405440,138640544039","m":"{\"n\":\"为\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"39.620000000000005,16711680,7,30,253165,1386405441,138640544135","m":"{\"n\":\"人\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"39.68,16711680,7,30,253165,1386405441,138640544136","m":"{\"n\":\"类\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"39.44,16711680,7,30,253165,1386405442,138640544232","m":"{\"n\":\"仿\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"39.5,16711680,7,30,253165,1386405442,138640544233","m":"{\"n\":\"在\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"39.56,16711680,7,30,253165,1386405442,138640544234","m":"{\"n\":\"着\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"39.32,16711680,7,30,253165,1386405443,138640544330","m":"{\"n\":\"是\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"39.379999999999995,16711680,7,30,253165,1386405443,138640544331","m":"{\"n\":\"模\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"38.760000000000005,16711680,7,30,253165,1386405444,138640544427","m":"{\"n\":\"终\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.46},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":612.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"38.82,16711680,7,30,253165,1386405444,138640544428","m":"{\"n\":\"究\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.46},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":657.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"39.260000000000005,16711680,7,30,253165,1386405444,138640544429","m":"{\"n\":\"只\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.61},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"38.64,16711680,7,30,253165,1386405445,138640544525","m":"{\"n\":\"自\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.46},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":522.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"38.7,16711680,7,30,253165,1386405445,138640544526","m":"{\"n\":\"己\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.46},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":567.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"38.519999999999996,16711680,7,30,253165,1386405446,138640544623","m":"{\"n\":\"发\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.46},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":432.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"38.58,16711680,7,30,253165,1386405446,138640544624","m":"{\"n\":\"觉\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.46},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":477.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"38.4,16711680,7,30,253165,1386405447,138640544721","m":"{\"n\":\"最\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.46},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":342.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"38.46,16711680,7,30,253165,1386405447,138640544722","m":"{\"n\":\"后\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.46},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":387.5},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"37.85,16711680,7,30,253165,1386405448,138640544818","m":"{\"n\":\"世\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.51},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"37.91,16711680,7,30,253165,1386405448,138640544819","m":"{\"n\":\"界\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.51},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"37.67,16711680,7,30,253165,1386405449,138640544915","m":"{\"n\":\"在\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.51},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"37.730000000000004,16711680,7,30,253165,1386405449,138640544916","m":"{\"n\":\"这\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.51},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"37.79,16711680,7,30,253165,1386405449,138640544917","m":"{\"n\":\"个\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.51},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"37.55,16711680,7,30,253165,1386405450,138640545013","m":"{\"n\":\"诞\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.51},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"37.61,16711680,7,30,253165,1386405450,138640545014","m":"{\"n\":\"生\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.51},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"37.489999999999995,16711680,7,30,253165,1386405451,138640545112","m":"{\"n\":\"我\",\"a\":0,\"t\":0,\"z\":[{\"t\":1,\"l\":0.1},{\"l\":0.51},{\"t\":0,\"l\":0.5}],\"p\":{\"y\":755,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,1.8,1.8,6,2,false,false]],\"b\":true},\"b\":false}"},{"c":"50.486,0,7,33,565692,1409842165,140984216541512","m":"{\"n\":\"这节奏~~\",\"t\":0,\"b\":false,\"ovph\":true,\"c\":4,\"ver\":2,\"z\":[{\"y\":115,\"l\":5,\"x\":525},{\"y\":115,\"l\":5,\"x\":525}],\"p\":{\"y\":119,\"x\":504}}","score":140984216541512},{"c":"7.15,16777215,7,99,1257923,1460807221,a5c3675c-e67f-4dec-9090-6fcfb8adf06d","m":"{\"ver\":2,\"ovph\":true,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"f\":4,\"y\":900,\"t\":0.9,\"c\":16711680,\"v\":2,\"l\":0.3,\"g\":4},{\"x\":800,\"f\":4,\"y\":900,\"t\":0.7,\"c\":16737792,\"v\":5,\"l\":0.2,\"g\":4},{\"x\":1100,\"f\":4,\"y\":900,\"t\":0.5,\"c\":16776960,\"v\":6,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"10.95,16777215,7,99,1257923,1460807242,df1f6420-1fc5-4436-8f2f-e2c3d44a86ed","m":"{\"ver\":2,\"ovph\":true,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"f\":4,\"y\":900,\"t\":0.9,\"c\":16711680,\"v\":2,\"l\":0.3,\"g\":4},{\"x\":800,\"f\":4,\"y\":900,\"t\":0.7,\"c\":16737792,\"v\":5,\"l\":0.2,\"g\":4},{\"x\":1100,\"f\":4,\"y\":900,\"t\":0.5,\"c\":16776960,\"v\":6,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"10.55,16777215,7,99,1257923,1460807242,fbbfad5f-451b-4e03-8268-c01a8af80a6f","m":"{\"ver\":2,\"ovph\":true,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"v\":2,\"y\":900,\"t\":0.9,\"c\":16711680,\"f\":4,\"l\":0.3,\"g\":4},{\"x\":800,\"v\":5,\"y\":900,\"t\":0.7,\"c\":16737792,\"f\":4,\"l\":0.2,\"g\":4},{\"x\":1100,\"v\":6,\"y\":900,\"t\":0.5,\"c\":16776960,\"f\":4,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"10.55,16777215,7,99,1257923,1460807242,031793e9-1df3-41a6-9884-51a6026a9d17","m":"{\"ver\":2,\"ovph\":true,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"v\":2,\"y\":900,\"t\":0.9,\"c\":16711680,\"f\":4,\"l\":0.3,\"g\":4},{\"x\":800,\"v\":5,\"y\":900,\"t\":0.7,\"c\":16737792,\"f\":4,\"l\":0.2,\"g\":4},{\"x\":1100,\"v\":6,\"y\":900,\"t\":0.5,\"c\":16776960,\"f\":4,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"10.15,16777215,7,99,1257923,1460807242,0c177820-df56-4e2e-9fac-a07d71902a39","m":"{\"ver\":2,\"ovph\":true,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"v\":2,\"y\":900,\"t\":0.9,\"c\":16711680,\"f\":4,\"l\":0.3,\"g\":4},{\"x\":800,\"v\":5,\"y\":900,\"t\":0.7,\"c\":16737792,\"f\":4,\"l\":0.2,\"g\":4},{\"x\":1100,\"v\":6,\"y\":900,\"t\":0.5,\"c\":16776960,\"f\":4,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"10.15,16777215,7,99,1257923,1460807242,3bbe28ee-d1bc-44f7-be80-adb10dcbe509","m":"{\"ver\":2,\"ovph\":true,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"v\":2,\"y\":900,\"t\":0.9,\"c\":16711680,\"f\":4,\"l\":0.3,\"g\":4},{\"x\":800,\"v\":5,\"y\":900,\"t\":0.7,\"c\":16737792,\"f\":4,\"l\":0.2,\"g\":4},{\"x\":1100,\"v\":6,\"y\":900,\"t\":0.5,\"c\":16776960,\"f\":4,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"8.75,16777215,7,99,1257923,1460807243,e122f334-9f33-4519-bdd2-0dcb103802ff","m":"{\"ver\":2,\"ovph\":true,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"f\":4,\"y\":900,\"t\":0.9,\"c\":16711680,\"v\":2,\"l\":0.3,\"g\":4},{\"x\":800,\"f\":4,\"y\":900,\"t\":0.7,\"c\":16737792,\"v\":5,\"l\":0.2,\"g\":4},{\"x\":1100,\"f\":4,\"y\":900,\"t\":0.5,\"c\":16776960,\"v\":6,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"8.75,16777215,7,99,1257923,1460807243,30df9219-213d-4e20-82da-7b1b09eb9a32","m":"{\"ver\":2,\"ovph\":true,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"f\":4,\"y\":900,\"t\":0.9,\"c\":16711680,\"v\":2,\"l\":0.3,\"g\":4},{\"x\":800,\"f\":4,\"y\":900,\"t\":0.7,\"c\":16737792,\"v\":5,\"l\":0.2,\"g\":4},{\"x\":1100,\"f\":4,\"y\":900,\"t\":0.5,\"c\":16776960,\"v\":6,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"8.35,16777215,7,99,1257923,1460807243,664101f4-e629-47f3-abef-88d8afdc6484","m":"{\"ver\":2,\"ovph\":true,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"f\":4,\"y\":900,\"t\":0.9,\"c\":16711680,\"v\":2,\"l\":0.3,\"g\":4},{\"x\":800,\"f\":4,\"y\":900,\"t\":0.7,\"c\":16737792,\"v\":5,\"l\":0.2,\"g\":4},{\"x\":1100,\"f\":4,\"y\":900,\"t\":0.5,\"c\":16776960,\"v\":6,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"8.35,16777215,7,99,1257923,1460807243,b17dc044-54ce-46c0-84e5-f376870dbf0b","m":"{\"ver\":2,\"ovph\":true,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"f\":4,\"y\":900,\"t\":0.9,\"c\":16711680,\"v\":2,\"l\":0.3,\"g\":4},{\"x\":800,\"f\":4,\"y\":900,\"t\":0.7,\"c\":16737792,\"v\":5,\"l\":0.2,\"g\":4},{\"x\":1100,\"f\":4,\"y\":900,\"t\":0.5,\"c\":16776960,\"v\":6,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"7.95,16777215,7,99,1257923,1460807244,85cbc305-e56c-455a-af07-bc1460b1b3d0","m":"{\"ver\":2,\"ovph\":true,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"v\":2,\"y\":900,\"t\":0.9,\"c\":16711680,\"f\":4,\"l\":0.3,\"g\":4},{\"x\":800,\"v\":5,\"y\":900,\"t\":0.7,\"c\":16737792,\"f\":4,\"l\":0.2,\"g\":4},{\"x\":1100,\"v\":6,\"y\":900,\"t\":0.5,\"c\":16776960,\"f\":4,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"7.95,16777215,7,99,1257923,1460807244,86fcf649-fce2-4f6e-bb25-393d0cddf4d4","m":"{\"ver\":2,\"ovph\":true,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"f\":4,\"y\":900,\"t\":0.9,\"c\":16711680,\"v\":2,\"l\":0.3,\"g\":4},{\"x\":800,\"f\":4,\"y\":900,\"t\":0.7,\"c\":16737792,\"v\":5,\"l\":0.2,\"g\":4},{\"x\":1100,\"f\":4,\"y\":900,\"t\":0.5,\"c\":16776960,\"v\":6,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"7.55,16777215,7,99,1257923,1460807244,a58e287c-490b-4220-b151-420700c0a5f9","m":"{\"ver\":2,\"ovph\":true,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"v\":2,\"y\":900,\"t\":0.9,\"c\":16711680,\"f\":4,\"l\":0.3,\"g\":4},{\"x\":800,\"v\":5,\"y\":900,\"t\":0.7,\"c\":16737792,\"f\":4,\"l\":0.2,\"g\":4},{\"x\":1100,\"v\":6,\"y\":900,\"t\":0.5,\"c\":16776960,\"f\":4,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"7.55,16777215,7,99,1257923,1460807244,47f3b93e-8743-45f1-8031-01d5baead80e","m":"{\"ver\":2,\"ovph\":true,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"f\":4,\"y\":900,\"t\":0.9,\"c\":16711680,\"v\":2,\"l\":0.3,\"g\":4},{\"x\":800,\"f\":4,\"y\":900,\"t\":0.7,\"c\":16737792,\"v\":5,\"l\":0.2,\"g\":4},{\"x\":1100,\"f\":4,\"y\":900,\"t\":0.5,\"c\":16776960,\"v\":6,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"7.15,16777215,7,99,1257923,1460807244,1fe00ec5-6987-4dee-a7f2-c45f8d2ca7bc","m":"{\"ver\":2,\"ovph\":true,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"v\":2,\"y\":900,\"t\":0.9,\"c\":16711680,\"f\":4,\"l\":0.3,\"g\":4},{\"x\":800,\"v\":5,\"y\":900,\"t\":0.7,\"c\":16737792,\"f\":4,\"l\":0.2,\"g\":4},{\"x\":1100,\"v\":6,\"y\":900,\"t\":0.5,\"c\":16776960,\"f\":4,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"7.15,16777215,7,99,1257923,1460807244,b8a8b1ab-df39-4ee5-b6f8-7f3f3d353b2f","m":"{\"ver\":2,\"ovph\":true,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"f\":4,\"y\":900,\"t\":0.9,\"c\":16711680,\"v\":2,\"l\":0.3,\"g\":4},{\"x\":800,\"f\":4,\"y\":900,\"t\":0.7,\"c\":16737792,\"v\":5,\"l\":0.2,\"g\":4},{\"x\":1100,\"f\":4,\"y\":900,\"t\":0.5,\"c\":16776960,\"v\":6,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"6.75,16777215,7,99,1257923,1460807244,fcb8fa74-3998-4ec2-9442-9892e5407fc8","m":"{\"ver\":2,\"ovph\":true,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"v\":2,\"y\":900,\"t\":0.9,\"c\":16711680,\"f\":4,\"l\":0.3,\"g\":4},{\"x\":800,\"v\":5,\"y\":900,\"t\":0.7,\"c\":16737792,\"f\":4,\"l\":0.2,\"g\":4},{\"x\":1100,\"v\":6,\"y\":900,\"t\":0.5,\"c\":16776960,\"f\":4,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"6.75,16777215,7,99,1257923,1460807245,808c3e97-2ced-4be5-a7f2-0ea70af71f32","m":"{\"ovph\":true,\"ver\":2,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"f\":4,\"y\":900,\"t\":0.9,\"c\":16711680,\"v\":2,\"l\":0.3,\"g\":4},{\"x\":800,\"f\":4,\"y\":900,\"t\":0.7,\"c\":16737792,\"v\":5,\"l\":0.2,\"g\":4},{\"x\":1100,\"f\":4,\"y\":900,\"t\":0.5,\"c\":16776960,\"v\":6,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"6.3500000000000005,16777215,7,99,1257923,1460807245,ad9a0cc6-cdcf-4410-bb1d-77d3a7c3264f","m":"{\"ovph\":true,\"ver\":2,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"v\":2,\"y\":900,\"t\":0.9,\"c\":16711680,\"f\":4,\"l\":0.3,\"g\":4},{\"x\":800,\"v\":5,\"y\":900,\"t\":0.7,\"c\":16737792,\"f\":4,\"l\":0.2,\"g\":4},{\"x\":1100,\"v\":6,\"y\":900,\"t\":0.5,\"c\":16776960,\"f\":4,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"6.3500000000000005,16777215,7,99,1257923,1460807245,110dc788-a0f1-48d2-8287-3e87788e7cbb","m":"{\"ovph\":true,\"ver\":2,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"v\":2,\"y\":900,\"t\":0.9,\"c\":16711680,\"f\":4,\"l\":0.3,\"g\":4},{\"x\":800,\"v\":5,\"y\":900,\"t\":0.7,\"c\":16737792,\"f\":4,\"l\":0.2,\"g\":4},{\"x\":1100,\"v\":6,\"y\":900,\"t\":0.5,\"c\":16776960,\"f\":4,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"6,16777215,7,99,1257923,1460807245,530475a2-d6e3-4c79-abe0-2360e2a57ac4","m":"{\"ovph\":true,\"ver\":2,\"n\":\"啪\",\"t\":0,\"z\":[{\"x\":455,\"f\":4,\"y\":900,\"t\":0.9,\"c\":16711680,\"v\":2,\"l\":0.3,\"g\":4},{\"x\":800,\"f\":4,\"y\":900,\"t\":0.7,\"c\":16737792,\"v\":5,\"l\":0.2,\"g\":4},{\"x\":1100,\"f\":4,\"y\":900,\"t\":0.5,\"c\":16776960,\"v\":6,\"l\":0.1,\"g\":4}],\"p\":{\"y\":0,\"x\":0},\"c\":8,\"l\":0,\"b\":true}"},{"c":"4.4,16777215,7,99,211467,1386243422566,138624342256681","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"2\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.3}],\"e\":6}"},{"c":"4.4,16777215,7,99,211467,1386243422566,138624342256696","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"2\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.3}],\"e\":6}"},{"c":"4.8,16777215,7,99,211467,1386243423131,138624342313185","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"1\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.3}],\"e\":6}"},{"c":"4,16777215,7,99,211467,1386243423411,138624342341194","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"3\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.3}],\"e\":6}"},{"c":"4,16777215,7,99,211467,1386243423411,138624342341184","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"3\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.3}],\"e\":6}"},{"c":"5.3,16738047,7,1,211467,1386243423738,138624342373891","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":200,\"x\":300},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.4},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.3,16738047,7,1,211467,1386243423738,138624342373890","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":200,\"x\":300},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.4},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.3,16738047,7,1,211467,1386243424373,138624342437399","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":350,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":1.6},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.3,16738047,7,1,211467,1386243424373,138624342437373","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":350,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":1.6},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.3,16738047,7,1,211467,1386243424685,138624342468598","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":300,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":1.2},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.3,16738047,7,1,211467,1386243424685,138624342468574","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":300,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":1.2},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.3,16738047,7,1,211467,1386243424928,138624342492893","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":450,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":2.4},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.3,16738047,7,1,211467,1386243424928,138624342492886","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":450,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":2.4},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.3,16738047,7,1,211467,1386243425415,138624342541596","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":400,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":2},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.3,16738047,7,1,211467,1386243425415,138624342541576","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":400,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":2},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.3,16738047,7,1,211467,1386243425989,138624342598978","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":250,\"x\":350},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.8},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.7,16738047,7,80,211467,1386243426266,138624342626677","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":200,\"x\":300},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"5.3,16738047,7,1,211467,1386243426623,138624342662390","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":150,\"x\":250},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.3,16738047,7,1,211467,1386243426623,138624342662391","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":150,\"x\":250},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.2,16777215,7,99,211467,1386243427178,138624342717889","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243427178,13862434271784","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243427178,138624342717869","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.2,16777215,7,99,211467,1386243427178,138624342717894","m":"{\"f\":6,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"GO!\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"f\":2,\"l\":0.1,\"g\":2},{\"f\":0.5,\"t\":0,\"g\":0.5,\"l\":0.5}],\"e\":6}"},{"c":"5.3,16738047,7,1,211467,1386243427441,138624342744188","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":600},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":2.8},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"5.3,16738047,7,80,211467,1386243427972,138624342797287","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":150,\"x\":250},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"6.5,16738047,7,80,211467,1386243428255,138624342825584","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":300,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"6.9,16738047,7,80,211467,1386243428942,138624342894283","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":350,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"7.7,16738047,7,80,211467,1386243429766,138624342976675","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":450,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"7.3,16738047,7,80,211467,1386243430588,138624343058876","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":400,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"8.9,16738047,7,1,211467,1386243431452,138624343145271","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":550,\"x\":350},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":2.8},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.5,16738047,7,1,211467,1386243432024,138624343202470","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":450,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.5,16738047,7,1,211467,1386243432820,138624343282067","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.4},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.5,16738047,7,1,211467,1386243433555,138624343355566","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":450,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.9,16738047,7,1,211467,1386243434402,138624343440264","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":300,\"x\":600},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.8},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.5,16738047,7,80,211467,1386243435190,138624343519061","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":450,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"8.1,16738047,7,80,211467,1386243435721,138624343572160","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":600},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"8.9,16738047,7,80,211467,1386243436518,138624343651858","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"8.9,16738047,7,1,211467,1386243437412,138624343741257","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":450,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":2},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.5,16738047,7,1,211467,1386243438220,138624343822054","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.4},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.9,16738047,7,80,211467,1386243438837,138624343883753","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"8.7,16738047,7,80,211467,1386243439649,138624343964952","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":475,\"x\":525},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"8.9,16738047,7,1,211467,1386243440379,138624344037951","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":400,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":1.6},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.5,16738047,7,80,211467,1386243441179,138624344117950","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":450,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"8.9,16738047,7,1,211467,1386243441706,138624344170648","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":350,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":1.2},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.5,16738047,7,1,211467,1386243442786,138624344278647","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":475,\"x\":525},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.2},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.9,16738047,7,1,211467,1386243443340,138624344334044","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":2.4},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.9,16738047,7,1,211467,1386243444147,138624344414742","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":250,\"x\":650},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.4},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.5,16738047,7,1,211467,1386243445003,138624344500341","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":475,\"x\":525},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.2},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"8.9,16738047,7,80,211467,1386243445561,138624344556139","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":200,\"x\":700},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"8.7,16738047,7,80,211467,1386243446311,138624344631138","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":475,\"x\":525},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"8.9,16738047,7,1,211467,1386243447182,138624344718237","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":200,\"x\":700},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"9.3,16738047,7,80,211467,1386243447729,138624344772935","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":250,\"x\":650},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"9.7,16738047,7,80,211467,1386243448522,138624344852233","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":300,\"x\":600},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"10.1,16738047,7,80,211467,1386243449333,138624344933332","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":350,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"10.5,16738047,7,80,211467,1386243450125,138624345012563","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":400,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"10.9,16738047,7,80,211467,1386243450942,138624345094227","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":450,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"11.3,16738047,7,80,211467,1386243451626,138624345162617","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"11.7,16738047,7,80,211467,1386243452327,138624345232721","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":550,\"x\":350},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"12.7,16738047,7,80,211467,1386243453166,138624345316629","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":200},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"12.7,16738047,7,1,211467,1386243453722,138624345372215","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":3.2},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243454543,13862434545438","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":200},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":0},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243455474,13862434554745","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":2.4},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12,16738047,7,1,211467,1386243456020,13862434560204","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":525},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":0.6},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12,16738047,7,1,211467,1386243456900,138624345690024","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":475},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":0.2},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243457688,138624345768845","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":250},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":0.4},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243458266,138624345826630","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":2.4},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12.6,16738047,7,80,211467,1386243459090,138624345909014","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":525},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"12.7,16738047,7,1,211467,1386243460039,138624346003931","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":300},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":0.8},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243460349,138624346034916","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":3.6},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243460629,138624346062920","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":350},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":1.2},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243461155,138624346115534","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":2},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243461447,138624346144756","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":300},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":5.1},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243462003,13862434620037","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":350},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":4.7},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243462277,138624346227722","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":4.4},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243462564,138624346256449","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":4},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12.7,16738047,7,1,211467,1386243463111,138624346311172","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":1.6},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12,16738047,7,1,211467,1386243463390,138624346339046","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":0.4},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"12.6,16738047,7,80,211467,1386243464072,138624346407268","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":525},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"12.4,16738047,7,80,211467,1386243464344,138624346434455","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"12,16738047,7,1,211467,1386243464618,13862434646186","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":525},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.6},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"12,16738047,7,80,211467,1386243465156,13862434651562","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"12,16738047,7,1,211467,1386243465755,13862434657551","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"12.2,16738047,7,80,211467,1386243465988,138624346598818","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":475},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"12,16738047,7,1,211467,1386243466579,138624346657919","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.4},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"12,16738047,7,1,211467,1386243466879,13862434668793","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":750,\"x\":475},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"l\":0.7,\"t\":1},{\"l\":0.2},{\"l\":0.2,\"t\":0}],\"e\":60}"},{"c":"13.5,16738047,7,80,211467,1386243467198,138624346719810","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":300},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"13.1,16738047,7,80,211467,1386243467485,13862434674859","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":250},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"13.9,16738047,7,80,211467,1386243468035,138624346803511","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":350},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"14.3,16738047,7,80,211467,1386243468298,138624346829813","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"14.7,16738047,7,80,211467,1386243468869,138624346886973","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"15.9,16738047,7,80,211467,1386243469140,138624346914023","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"15.5,16738047,7,80,211467,1386243469731,138624346973125","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":550},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"15.1,16738047,7,80,211467,1386243470077,138624347007726","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"16.7,16738047,7,80,211467,1386243470592,138624347059228","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"16.3,16738047,7,80,211467,1386243470850,138624347085036","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"17.4,16738047,7,80,211467,1386243471132,138624347113240","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":350},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"17.9,16738047,7,1,211467,1386243471735,138624347173543","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":0.4},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"17.9,16738047,7,1,211467,1386243472008,138624347200859","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":0},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"17.9,16738047,7,80,211467,1386243472578,138624347257862","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"17.8,16738047,7,80,211467,1386243472813,138624347281369","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":300},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"17.1,16738047,7,80,211467,1386243473188,138624347318892","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"17.1,16738047,7,80,211467,1386243473188,138624347318889","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":600,\"x\":400},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"18.1,16738047,7,80,211467,1386243473788,138624347378865","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":475},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"18.1,16738047,7,1,211467,1386243474063,138624347406312","m":"{\"f\":60,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":475},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,2,2,5,15,false,false]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.7},{\"l\":0},{\"t\":0,\"l\":0.2}],\"e\":60}"},{"c":"18.3,16738047,7,80,211467,1386243474608,138624347460882","m":"{\"f\":3,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":450},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"f\":1,\"t\":1,\"g\":1,\"l\":0.7},{\"l\":0},{\"f\":3,\"v\":2,\"t\":0,\"g\":3,\"l\":0.7}],\"e\":3}"},{"c":"4,16777215,7,99,211467,1386243474913,138624347491386","m":"{\"f\":1,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":100,\"x\":100},\"c\":4,\"n\":\"→\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,false]],\"b\":true},\"z\":[{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1}],\"e\":1}"},{"c":"4,16777215,7,99,211467,1386243475231,138624347523180","m":"{\"f\":1,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":900,\"x\":100},\"c\":4,\"n\":\"→\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,false]],\"b\":true},\"z\":[{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1}],\"e\":1}"},{"c":"4,16777215,7,99,211467,1386243475903,138624347590397","m":"{\"f\":1,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":900,\"x\":870},\"c\":4,\"n\":\"←\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,false]],\"b\":true},\"z\":[{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1}],\"e\":1}"},{"c":"4,16777215,7,99,211467,1386243475903,138624347590375","m":"{\"f\":1,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":900,\"x\":870},\"c\":4,\"n\":\"←\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,false]],\"b\":true},\"z\":[{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1}],\"e\":1}"},{"c":"4,16777215,7,99,211467,1386243476227,138624347622795","m":"{\"f\":1,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":100,\"x\":870},\"c\":4,\"n\":\"←\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,false]],\"b\":true},\"z\":[{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1}],\"e\":1}"},{"c":"4,16777215,7,99,211467,1386243476227,138624347622783","m":"{\"f\":1,\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":100,\"x\":870},\"c\":4,\"n\":\"←\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,false]],\"b\":true},\"z\":[{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1},{\"t\":1,\"l\":0.1},{\"t\":0,\"l\":0.1}],\"e\":1}"},{"c":"19.5,16738047,7,80,211467,1386243476482,138624347648279","m":"{\"f\":1,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"perfect\",\"l\":0,\"w\":{\"b\":true,\"f\":\"黑体\"},\"z\":[{\"t\":1,\"l\":0.3},{\"l\":0.5},{\"t\":0,\"l\":0.3}],\"e\":1}"},{"c":"19.5,16738047,7,80,211467,1386243477015,138624347701574","m":"{\"f\":6,\"a\":0,\"t\":0,\"b\":true,\"p\":{\"y\":500,\"x\":500},\"c\":4,\"n\":\"●\",\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16751103,1,2,2,5,8,false,true]],\"b\":true},\"z\":[{\"t\":1,\"l\":0.3},{\"l\":0.5},{\"t\":0,\"l\":0.3}],\"e\":6}"},{"c":"37.598,0,7,25,8603,1386252728413,138625272841321","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.398,0,7,25,8603,1386252728414,138625272841420","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.698,0,7,25,8603,1386252728415,138625272841519","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.498,0,7,25,8603,1386252728416,138625272841618","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.998,0,7,25,8603,1386252728417,138625272841717","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.198,0,7,25,8603,1386252728418,138625272841816","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.79900000000001,0,7,25,8603,1386252728674,138625272867415","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"37.599,0,7,25,8603,1386252728675,138625272867514","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"37.499,0,7,25,8603,1386252728676,138625272867613","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.098,0,7,25,8603,1386252729199,138625272919912","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.797999999999995,0,7,25,8603,1386252729201,138625272920111","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.898,0,7,25,8603,1386252729202,138625272920210","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.199000000000005,0,7,25,8603,1386252729204,13862527292048","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.297999999999995,0,7,25,8603,1386252729204,13862527292049","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.99900000000001,0,7,25,8603,1386252729205,13862527292056","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.09900000000001,0,7,25,8603,1386252729205,13862527292057","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.29900000000001,0,7,25,8603,1386252729206,13862527292065","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"37.89900000000001,0,7,25,8603,1386252731517,13862527315174","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.39900000000001,0,7,25,8603,1386252731518,13862527315183","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"37.699000000000005,0,7,25,8603,1386252732772,13862527327722","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.1,16724787,7,25,8603,1386252732773,13862527327731","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"37.9,16724787,7,25,8603,1386252732774,138625273277499","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"38.4,16724787,7,25,8603,1386252732775,138625273277597","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"37.6,16724787,7,25,8603,1386252732775,138625273277598","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"37.8,16724787,7,25,8603,1386252733059,138625273305996","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"38.3,16724787,7,25,8603,1386252733060,138625273306094","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"37.7,16724787,7,25,8603,1386252733060,138625273306095","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"38,16724787,7,25,8603,1386252733573,138625273357392","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"38.2,16724787,7,25,8603,1386252733573,138625273357393","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"38.998,0,7,25,8603,1386252733574,138625273357490","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.498,0,7,25,8603,1386252733574,138625273357491","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.698,0,7,25,8603,1386252733575,138625273357588","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"37.5,16724787,7,25,8603,1386252733575,138625273357589","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"38.79799999999995,0,7,25,8603,1386252736170,138625273617086","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.098,0,7,25,8603,1386252736170,138625273617087","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.898,0,7,25,8603,1386252736171,138625273617185","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.29799999999995,0,7,25,8603,1386252736982,138625273698284","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.598,0,7,25,8603,1386252736983,138625273698383","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.198,0,7,25,8603,1386252736984,138625273698482","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.398,0,7,25,8603,1386252737585,138625273758581","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.599,0,7,25,8603,1386252737586,138625273758679","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.499,0,7,25,8603,1386252737586,138625273758680","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.79900000000001,0,7,25,8603,1386252737587,138625273758778","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.39900000000001,0,7,25,8603,1386252737588,138625273758876","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.699000000000005,0,7,25,8603,1386252737588,138625273758877","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.89900000000001,0,7,25,8603,1386252737589,138625273758975","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39,16724787,7,25,8603,1386252737590,138625273759074","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"38.9,16724787,7,25,8603,1386252737591,138625273759173","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"39.199000000000005,0,7,25,8603,1386252737592,138625273759272","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.1,16724787,7,25,8603,1386252741538,138625274153871","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"39.09900000000001,0,7,25,8603,1386252741540,138625274154070","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"38.99900000000001,0,7,25,8603,1386252741541,138625274154169","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.29900000000001,0,7,25,8603,1386252741847,138625274184768","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.2,16724787,7,25,8603,1386252741848,138625274184867","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"39.3,16724787,7,25,8603,1386252742089,138625274208966","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"38.7,16724787,7,25,8603,1386252744837,138625274483765","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"38.5,16724787,7,25,8603,1386252745345,138625274534563","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"39.998,0,7,25,8603,1386252745345,138625274534564","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"38.6,16724787,7,25,8603,1386252745618,138625274561862","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"38.8,16724787,7,25,8603,1386252745619,138625274561961","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"39.4,16724787,7,25,8603,1386252749007,138625274900760","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"40.297999999999995,0,7,25,8603,1386252749615,138625274961559","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.598,0,7,25,8603,1386252749616,138625274961657","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"40.198,0,7,25,8603,1386252749616,138625274961658","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.698,0,7,25,8603,1386252749617,138625274961755","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"40.398,0,7,25,8603,1386252749617,138625274961756","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.498,0,7,25,8603,1386252749618,138625274961854","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.898,0,7,25,8603,1386252749619,138625274961953","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.699000000000005,0,7,25,8603,1386252750329,138625275032951","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"40.39900000000001,0,7,25,8603,1386252750329,138625275032952","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.79900000000001,0,7,25,8603,1386252750330,138625275033050","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.499,0,7,25,8603,1386252751036,138625275103648","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.599,0,7,25,8603,1386252751036,138625275103649","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"40.098,0,7,25,8603,1386252751037,138625275103747","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.89900000000001,0,7,25,8603,1386252751519,138625275151945","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.797999999999995,0,7,25,8603,1386252751519,138625275151946","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"40.29900000000001,0,7,25,8603,1386252751520,138625275152044","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"40,16724787,7,25,8603,1386252751521,138625275152142","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.2,16724787,7,25,8603,1386252751521,138625275152143","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.199000000000005,0,7,25,8603,1386252751522,138625275152240","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.9,16724787,7,25,8603,1386252751522,138625275152241","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.1,16724787,7,25,8603,1386252753310,138625275331039","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.09900000000001,0,7,25,8603,1386252754519,138625275451938","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"39.99900000000001,0,7,25,8603,1386252754520,138625275452037","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"40.3,16724787,7,25,8603,1386252754522,138625275452236","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.4,16724787,7,25,8603,1386252754523,138625275452335","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"39.8,16724787,7,25,8603,1386252754525,138625275452534","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"39.7,16724787,7,25,8603,1386252754528,138625275452833","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"39.6,16724787,7,25,8603,1386252754531,138625275453132","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"41.398,0,7,25,8603,1386252754532,138625275453230","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"40.998,0,7,25,8603,1386252754532,138625275453231","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.198,0,7,25,8603,1386252754533,138625275453329","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"40.698,0,7,25,8603,1386252754534,138625275453427","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"40.598,0,7,25,8603,1386252754534,138625275453428","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"40.498,0,7,25,8603,1386252754535,138625275453525","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"39.5,16724787,7,25,8603,1386252754535,138625275453526","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.898,0,7,25,8603,1386252754536,138625275453623","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.29799999999995,0,7,25,8603,1386252754536,138625275453624","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"40.79799999999995,0,7,25,8603,1386252754538,138625275453822","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.098,0,7,25,8603,1386252755028,138625275502821","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"40.499,0,7,25,8603,1386252755277,138625275527720","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"40.99900000000001,0,7,25,8603,1386252759238,138625275923819","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.29900000000001,0,7,25,8603,1386252759239,138625275923918","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"40.89900000000001,0,7,25,8603,1386252760139,138625276013917","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.39900000000001,0,7,25,8603,1386252760140,138625276014016","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"40.699000000000005,0,7,25,8603,1386252760141,138625276014115","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"40.79900000000001,0,7,25,8603,1386252760142,138625276014214","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"40.599,0,7,25,8603,1386252760143,138625276014313","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.1,16724787,7,25,8603,1386252760144,138625276014412","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"41.09900000000001,0,7,25,8603,1386252760145,138625276014510","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.199000000000005,0,7,25,8603,1386252760145,138625276014511","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"40.9,16724787,7,25,8603,1386252760147,13862527601479","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"41,16724787,7,25,8603,1386252769600,138625276960022","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.998,0,7,25,8603,1386252769601,138625276960123","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.4,16724787,7,25,8603,1386252769602,138625276960224","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.5,16724787,7,25,8603,1386252772693,138625277269325","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.6,16724787,7,25,8603,1386252773550,138625277355026","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.7,16724787,7,25,8603,1386252773552,138625277355227","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"40.8,16724787,7,25,8603,1386252774679,138625277467928","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"41.3,16724787,7,25,8603,1386252774680,138625277468029","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"41.2,16724787,7,25,8603,1386252774680,138625277468030","m":"{\"n\":\"〇\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.898,0,7,25,8603,1386252775166,138625277516631","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"46.297999999999995,0,7,25,8603,1386252775166,138625277516632","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"46.198,0,7,25,8603,1386252775167,138625277516733","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.598,0,7,25,8603,1386252775167,138625277516734","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.79900000000001,0,7,25,8603,1386252775168,138625277516835","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.398,0,7,25,8603,1386252775168,138625277516836","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.698,0,7,25,8603,1386252775169,138625277516937","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.498,0,7,25,8603,1386252775170,138625277517038","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.89900000000001,0,7,25,8603,1386252775170,138625277517039","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.39900000000001,0,7,25,8603,1386252775171,138625277517140","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.699000000000005,0,7,25,8603,1386252775172,138625277517241","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.599,0,7,25,8603,1386252775172,138625277517242","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.499,0,7,25,8603,1386252784443,138625278444343","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.098,0,7,25,8603,1386252784705,138625278470544","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.797999999999995,0,7,25,8603,1386252784706,138625278470645","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.9,3407667,7,25,8603,1386252786047,138625278604746","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46.1,3407667,7,25,8603,1386252786049,138625278604947","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46.199000000000005,0,7,25,8603,1386252786516,138625278651648","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.09900000000001,0,7,25,8603,1386252786516,138625278651649","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.29900000000001,0,7,25,8603,1386252786517,138625278651750","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.99900000000001,0,7,25,8603,1386252786518,138625278651851","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.3,3407667,7,25,8603,1386252786518,138625278651852","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46.2,3407667,7,25,8603,1386252786519,138625278651953","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46,3407667,7,25,8603,1386252788545,138625278854554","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"45.7,3407667,7,25,8603,1386252788793,138625278879355","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"45.8,3407667,7,25,8603,1386252789047,138625278904756","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46.4,3407667,7,25,8603,1386252794004,138625279400457","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"47.198,0,7,25,8603,1386252794006,138625279400658","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"46.598,0,7,25,8603,1386252794007,138625279400759","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"46.698,0,7,25,8603,1386252794008,138625279400860","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.398,0,7,25,8603,1386252794009,138625279400961","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"46.498,0,7,25,8603,1386252794010,138625279401062","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"46.998,0,7,25,8603,1386252794011,138625279401163","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.5,3407667,7,25,8603,1386252794011,138625279401164","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"45.6,3407667,7,25,8603,1386252794012,138625279401265","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46.79900000000001,0,7,25,8603,1386252794013,138625279401366","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.599,0,7,25,8603,1386252794014,138625279401467","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.499,0,7,25,8603,1386252794014,138625279401468","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.098,0,7,25,8603,1386252794015,138625279401569","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"46.79799999999995,0,7,25,8603,1386252794016,138625279401670","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"46.898,0,7,25,8603,1386252794016,138625279401671","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.29799999999995,0,7,25,8603,1386252794017,138625279401772","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.1,3407667,7,25,8603,1386252794018,138625279401873","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"47.199000000000005,0,7,25,8603,1386252794018,138625279401874","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.09900000000001,0,7,25,8603,1386252794166,138625279416675","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.99900000000001,0,7,25,8603,1386252794167,138625279416776","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.29900000000001,0,7,25,8603,1386252794167,138625279416777","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.89900000000001,0,7,25,8603,1386252794168,138625279416878","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.39900000000001,0,7,25,8603,1386252794169,138625279416979","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"46.699000000000005,0,7,25,8603,1386252794169,138625279416980","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.2,3407667,7,25,8603,1386252794170,138625279417081","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"47,3407667,7,25,8603,1386252794170,138625279417082","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46.9,3407667,7,25,8603,1386252797351,138625279735183","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"47.3,3407667,7,25,8603,1386252797896,138625279789684","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46.7,3407667,7,25,8603,1386252797897,138625279789785","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46.8,3407667,7,25,8603,1386252797898,138625279789886","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"48.398,0,7,25,8603,1386252797899,138625279789987","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.698,0,7,25,8603,1386252797900,138625279790088","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.498,0,7,25,8603,1386252797900,138625279790089","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.998,0,7,25,8603,1386252797900,138625279790090","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"46.5,3407667,7,25,8603,1386252797901,138625279790191","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"46.6,3407667,7,25,8603,1386252797901,138625279790192","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"47.4,3407667,7,25,8603,1386252799270,138625279927093","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"48.198,0,7,25,8603,1386252799271,138625279927194","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.598,0,7,25,8603,1386252799272,138625279927295","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.297999999999995,0,7,25,8603,1386252799273,138625279927396","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.699000000000005,0,7,25,8603,1386252799275,138625279927597","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.79900000000001,0,7,25,8603,1386252799276,138625279927698","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.599,0,7,25,8603,1386252799276,138625279927699","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.499,0,7,25,8603,1386252799277,13862527992771","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.098,0,7,25,8603,1386252799278,13862527992782","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.797999999999995,0,7,25,8603,1386252799278,13862527992783","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"47.898,0,7,25,8603,1386252799279,13862527992794","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.39900000000001,0,7,25,8603,1386252801934,13862528019345","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.89900000000001,0,7,25,8603,1386252801935,13862528019356","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.29900000000001,0,7,25,8603,1386252803487,13862528034877","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.99900000000001,0,7,25,8603,1386252803488,13862528034888","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.3,3407667,7,25,8603,1386252803489,13862528034899","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"47.9,3407667,7,25,8603,1386252803489,138625280348910","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.2,3407667,7,25,8603,1386252803490,138625280349011","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48,3407667,7,25,8603,1386252803490,138625280349012","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.1,3407667,7,25,8603,1386252803491,138625280349113","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.199000000000005,0,7,25,8603,1386252803491,138625280349114","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.09900000000001,0,7,25,8603,1386252803492,138625280349215","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"47.7,3407667,7,25,8603,1386252803492,138625280349216","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"47.8,3407667,7,25,8603,1386252803493,138625280349317","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.4,3407667,7,25,8603,1386252803494,138625280349418","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"47.6,3407667,7,25,8603,1386252803494,138625280349419","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"47.5,3407667,7,25,8603,1386252803495,138625280349520","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49.29799999999995,0,7,25,8603,1386252803741,138625280374121","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.198,0,7,25,8603,1386252803742,138625280374222","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.598,0,7,25,8603,1386252803744,138625280374423","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.598,0,7,25,8603,1386252803744,138625280374424","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.398,0,7,25,8603,1386252806482,138625280648225","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.698,0,7,25,8603,1386252807194,138625280719426","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.498,0,7,25,8603,1386252807196,138625280719627","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.998,0,7,25,8603,1386252807197,138625280719728","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.79799999999995,0,7,25,8603,1386252807426,138625280742629","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"48.898,0,7,25,8603,1386252807427,138625280742730","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.098,0,7,25,8603,1386252807432,138625280743231","m":"{\"n\":\"▲\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.29900000000001,0,7,25,8603,1386252812357,138625281235732","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.89900000000001,0,7,25,8603,1386252812358,138625281235833","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.39900000000001,0,7,25,8603,1386252812359,138625281235934","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.699000000000005,0,7,25,8603,1386252813010,138625281301035","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.79900000000001,0,7,25,8603,1386252813011,138625281301136","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.599,0,7,25,8603,1386252813011,138625281301137","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.499,0,7,25,8603,1386252813011,138625281301138","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.199000000000005,0,7,25,8603,1386252813012,138625281301239","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.09900000000001,0,7,25,8603,1386252813013,138625281301340","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"48.99900000000001,0,7,25,8603,1386252813015,138625281301541","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.1,3407667,7,25,8603,1386252813022,138625281302242","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.6,3407667,7,25,8603,1386252816527,138625281652743","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49.4,3407667,7,25,8603,1386252816528,138625281652844","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.8,3407667,7,25,8603,1386252817239,138625281723945","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.7,3407667,7,25,8603,1386252817239,138625281723946","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49.3,3407667,7,25,8603,1386252817755,138625281775547","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49.2,3407667,7,25,8603,1386252817757,138625281775748","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"49,3407667,7,25,8603,1386252817758,138625281775849","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.9,3407667,7,25,8603,1386252817759,138625281775950","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"48.5,3407667,7,25,8603,1386252817760,138625281776051","m":"{\"n\":\"△\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,3407769,1,39270,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"50.198,0,7,25,8603,1386252858639,138625285863952","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.598,0,7,25,8603,1386252858640,138625285864053","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.398,0,7,25,8603,1386252858640,138625285864054","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.698,0,7,25,8603,1386252858641,138625285864155","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.998,0,7,25,8603,1386252858641,138625285864156","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.498,0,7,25,8603,1386252858641,138625285864157","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.098,0,7,25,8603,1386252858642,138625285864258","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.797999999999995,0,7,25,8603,1386252858643,138625285864359","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.898,0,7,25,8603,1386252858644,138625285864460","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.297999999999995,0,7,25,8603,1386252858644,138625285864461","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.499,0,7,25,8603,1386252858645,138625285864562","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.89900000000001,0,7,25,8603,1386252863281,138625286328163","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.99900000000001,0,7,25,8603,1386252863281,138625286328164","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.29900000000001,0,7,25,8603,1386252863281,138625286328165","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.39900000000001,0,7,25,8603,1386252863282,138625286328266","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.699000000000005,0,7,25,8603,1386252863282,138625286328267","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.79900000000001,0,7,25,8603,1386252863286,138625286328668","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"49.599,0,7,25,8603,1386252863287,138625286328769","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.2,16737996,7,25,8603,1386252863287,138625286328770","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50,16737996,7,25,8603,1386252863288,138625286328871","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"49.9,16737996,7,25,8603,1386252863289,138625286328972","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.1,16737996,7,25,8603,1386252865984,138625286598473","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.199000000000005,0,7,25,8603,1386252866216,138625286621674","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.09900000000001,0,7,25,8603,1386252866216,138625286621675","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.3,16737996,7,25,8603,1386252867189,138625286718976","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.498,0,7,25,8603,1386252867190,138625286719077","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.998,0,7,25,8603,1386252867190,138625286719078","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"49.5,16737996,7,25,8603,1386252867427,138625286742779","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"49.6,16737996,7,25,8603,1386252867428,138625286742880","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.4,16737996,7,25,8603,1386252867428,138625286742881","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"49.8,16737996,7,25,8603,1386252870866,138625287086682","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"49.7,16737996,7,25,8603,1386252870868,138625287086883","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.598,0,7,25,8603,1386252871156,138625287115684","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.398,0,7,25,8603,1386252871157,138625287115785","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.698,0,7,25,8603,1386252871157,138625287115786","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.198,0,7,25,8603,1386252871386,138625287138687","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.29799999999995,0,7,25,8603,1386252877292,138625287729288","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.699000000000005,0,7,25,8603,1386252877293,138625287729389","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.599,0,7,25,8603,1386252877293,138625287729390","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.499,0,7,25,8603,1386252877294,138625287729491","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.79900000000001,0,7,25,8603,1386252877294,138625287729492","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.79799999999995,0,7,25,8603,1386252877295,138625287729593","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.098,0,7,25,8603,1386252877295,138625287729594","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.898,0,7,25,8603,1386252877296,138625287729695","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.39900000000001,0,7,25,8603,1386252877297,138625287729796","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.89900000000001,0,7,25,8603,1386252877298,138625287729897","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.99900000000001,0,7,25,8603,1386252877300,138625287730098","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.3,16737996,7,25,8603,1386252881616,138625288161699","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.2,16737996,7,25,8603,1386252881618,13862528816181","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51,16737996,7,25,8603,1386252881618,13862528816182","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.9,16737996,7,25,8603,1386252881619,13862528816193","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.1,16737996,7,25,8603,1386252881619,13862528816194","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.09900000000001,0,7,25,8603,1386252881620,13862528816205","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.29900000000001,0,7,25,8603,1386252881620,13862528816206","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.199000000000005,0,7,25,8603,1386252881621,13862528816217","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"50.8,16737996,7,25,8603,1386252881621,13862528816218","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.7,16737996,7,25,8603,1386252881622,13862528816229","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.4,16737996,7,25,8603,1386252881623,138625288162310","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.598,0,7,25,8603,1386252881683,138625288168311","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.398,0,7,25,8603,1386252881684,138625288168412","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.698,0,7,25,8603,1386252881684,138625288168413","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.498,0,7,25,8603,1386252882223,138625288222314","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.998,0,7,25,8603,1386252882224,138625288222415","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"50.5,16737996,7,25,8603,1386252882225,138625288222516","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"50.6,16737996,7,25,8603,1386252882225,138625288222517","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"51.797999999999995,0,7,25,8603,1386252886205,138625288620518","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.898,0,7,25,8603,1386252886206,138625288620619","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.297999999999995,0,7,25,8603,1386252886207,138625288620720","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.198,0,7,25,8603,1386252886208,138625288620821","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.098,0,7,25,8603,1386252886209,138625288620922","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"51.499,0,7,25,8603,1386252886210,138625288621023","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.599,0,7,25,8603,1386252886212,138625288621224","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.09900000000001,0,7,25,8603,1386252886214,138625288621425","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.99900000000001,0,7,25,8603,1386252886216,138625288621626","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.29900000000001,0,7,25,8603,1386252886217,138625288621727","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.89900000000001,0,7,25,8603,1386252886218,138625288621828","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.39900000000001,0,7,25,8603,1386252886219,138625288621929","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.699000000000005,0,7,25,8603,1386252886219,138625288621930","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"51.79900000000001,0,7,25,8603,1386252886220,138625288622031","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.199000000000005,0,7,25,8603,1386252886221,138625288622132","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.1,16737996,7,25,8603,1386252889788,138625288978833","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"51.9,16737996,7,25,8603,1386252889791,138625288979134","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52,16737996,7,25,8603,1386252890962,138625289096235","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"51.5,16737996,7,25,8603,1386252890963,138625289096336","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"51.6,16737996,7,25,8603,1386252890963,138625289096337","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.4,16737996,7,25,8603,1386252890964,138625289096438","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"51.8,16737996,7,25,8603,1386252890964,138625289096439","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.2,16737996,7,25,8603,1386252890965,138625289096540","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"51.7,16737996,7,25,8603,1386252890965,138625289096541","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.3,16737996,7,25,8603,1386252894678,138625289467842","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53.398,0,7,25,8603,1386252894679,138625289467943","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.698,0,7,25,8603,1386252895012,138625289501244","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.498,0,7,25,8603,1386252895013,138625289501345","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.998,0,7,25,8603,1386252895014,138625289501446","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.598,0,7,25,8603,1386252895520,138625289552047","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.599,0,7,25,8603,1386252895520,138625289552048","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.499,0,7,25,8603,1386252899277,138625289927749","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"53.098,0,7,25,8603,1386252899831,138625289983150","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.79799999999995,0,7,25,8603,1386252899832,138625289983251","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"53.29799999999995,0,7,25,8603,1386252899833,138625289983352","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.898,0,7,25,8603,1386252899833,138625289983353","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"53.198,0,7,25,8603,1386252899834,138625289983454","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"53.39900000000001,0,7,25,8603,1386252899835,138625289983555","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.699000000000005,0,7,25,8603,1386252910646,138625291064656","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.79900000000001,0,7,25,8603,1386252910881,138625291088157","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"53.1,16737996,7,25,8603,1386252921115,138625292111558","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53.199000000000005,0,7,25,8603,1386252921116,138625292111659","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"53.09900000000001,0,7,25,8603,1386252921117,138625292111760","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"53.29900000000001,0,7,25,8603,1386252921117,138625292111761","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.99900000000001,0,7,25,8603,1386252921118,138625292111862","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.89900000000001,0,7,25,8603,1386252921119,138625292111963","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"52.7,16737996,7,25,8603,1386252921119,138625292111964","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53.3,16737996,7,25,8603,1386252921120,138625292112065","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53.2,16737996,7,25,8603,1386252921120,138625292112066","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53,16737996,7,25,8603,1386252921121,138625292112167","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.9,16737996,7,25,8603,1386252921122,138625292112268","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.9,16737996,7,25,8603,1386252921122,138625292112269","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.8,16737996,7,25,8603,1386252925264,138625292526470","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"53.4,16737996,7,25,8603,1386252925772,138625292577271","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"41.598,0,7,25,8603,1386252926087,138625292608772","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.398,0,7,25,8603,1386252926087,138625292608773","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.898,0,7,25,8603,1386252926088,138625292608874","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.698,0,7,25,8603,1386252926088,138625292608875","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.498,0,7,25,8603,1386252926089,138625292608976","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.998,0,7,25,8603,1386252926200,138625292620077","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"52.5,16737996,7,25,8603,1386252926201,138625292620178","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"52.6,16737996,7,25,8603,1386252930009,138625293000979","m":"{\"n\":\"×\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16738047,1,5,5,5,2,false,true],[3,1,45,16764159,1,16711935,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"42.297999999999995,0,7,25,8603,1386252930010,138625293001080","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.198,0,7,25,8603,1386252930733,138625293073381","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.797999999999995,0,7,25,8603,1386252934798,138625293479882","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"41.89900000000001,0,7,25,8603,1386252935482,138625293548283","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"42.39900000000001,0,7,25,8603,1386252935482,138625293548284","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.699000000000005,0,7,25,8603,1386252935483,138625293548385","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.79900000000001,0,7,25,8603,1386252935714,138625293571486","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.599,0,7,25,8603,1386252935715,138625293571587","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.499,0,7,25,8603,1386252938519,138625293851988","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"42.098,0,7,25,8603,1386252939861,138625293986189","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42,39423,7,25,8603,1386252939862,138625293986290","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"41.9,39423,7,25,8603,1386252939863,138625293986391","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.1,39423,7,25,8603,1386252939863,138625293986392","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.199000000000005,0,7,25,8603,1386252939864,138625293986493","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"42.09900000000001,0,7,25,8603,1386252939864,138625293986494","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.99900000000001,0,7,25,8603,1386252939865,138625293986595","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"42.29900000000001,0,7,25,8603,1386252939865,138625293986596","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"41.5,39423,7,25,8603,1386252939866,138625293986697","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"41.6,39423,7,25,8603,1386252939866,138625293986698","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.4,39423,7,25,8603,1386252939867,138625293986799","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"41.8,39423,7,25,8603,1386252939867,13862529398671","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"41.7,39423,7,25,8603,1386252939868,13862529398682","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.3,39423,7,25,8603,1386252939868,13862529398683","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.2,39423,7,25,8603,1386252939869,13862529398694","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"43.198,0,7,25,8603,1386252939869,13862529398695","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.598,0,7,25,8603,1386252945969,13862529459696","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.398,0,7,25,8603,1386252946332,13862529463327","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.698,0,7,25,8603,1386252946333,13862529463338","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.498,0,7,25,8603,1386252946333,13862529463339","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.998,0,7,25,8603,1386252946334,138625294633410","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.79900000000001,0,7,25,8603,1386252946969,138625294696911","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"42.599,0,7,25,8603,1386252946970,138625294697012","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"42.499,0,7,25,8603,1386252949787,138625294978713","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.098,0,7,25,8603,1386252950330,138625295033014","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.79799999999995,0,7,25,8603,1386252950330,138625295033015","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"42.898,0,7,25,8603,1386252950331,138625295033116","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.29799999999995,0,7,25,8603,1386252950331,138625295033117","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.39900000000001,0,7,25,8603,1386252950332,138625295033218","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"42.699000000000005,0,7,25,8603,1386252950333,138625295033319","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"42.89900000000001,0,7,25,8603,1386252951126,138625295112620","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.2,39423,7,25,8603,1386252951126,138625295112621","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"43,39423,7,25,8603,1386252951127,138625295112722","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"43.09900000000001,0,7,25,8603,1386252951392,138625295139223","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.199000000000005,0,7,25,8603,1386252951393,138625295139324","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"42.9,39423,7,25,8603,1386252951393,138625295139325","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"43.1,39423,7,25,8603,1386252951590,138625295159026","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.99900000000001,0,7,25,8603,1386252951590,138625295159027","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.29900000000001,0,7,25,8603,1386252951591,138625295159128","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":880,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.4,39423,7,25,8603,1386252951809,138625295180929","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.8,39423,7,25,8603,1386252955034,138625295503430","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.7,39423,7,25,8603,1386252955035,138625295503531","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"43.3,39423,7,25,8603,1386252955035,138625295503532","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.6,39423,7,25,8603,1386252955037,138625295503733","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"42.5,39423,7,25,8603,1386252955959,138625295595934","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":880,\"l\":0.3},{\"l\":2}]}"},{"c":"44.297999999999995,0,7,25,8603,1386252955960,138625295596035","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.198,0,7,25,8603,1386252955962,138625295596236","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.598,0,7,25,8603,1386252955963,138625295596337","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.498,0,7,25,8603,1386252955965,138625295596538","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.398,0,7,25,8603,1386252955966,138625295596639","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.698,0,7,25,8603,1386252955966,138625295596640","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.998,0,7,25,8603,1386252955967,138625295596741","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.499,0,7,25,8603,1386252955968,138625295596842","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":50},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.098,0,7,25,8603,1386252959049,138625295904943","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.797999999999995,0,7,25,8603,1386252959304,138625295930444","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.898,0,7,25,8603,1386252959305,138625295930545","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"43.599,0,7,25,8603,1386252959306,138625295930646","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":95},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.79900000000001,0,7,25,8603,1386252959601,138625295960147","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":185},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.29900000000001,0,7,25,8603,1386252964254,138625296425448","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":410},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.89900000000001,0,7,25,8603,1386252964255,138625296425549","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":230},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.699000000000005,0,7,25,8603,1386252964256,138625296425650","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":140},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.39900000000001,0,7,25,8603,1386252968058,138625296805851","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":455},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44,39423,7,25,8603,1386252969083,138625296908352","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":275,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.9,39423,7,25,8603,1386252969083,138625296908353","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":230,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.1,39423,7,25,8603,1386252969084,138625296908454","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":320,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.199000000000005,0,7,25,8603,1386252969085,138625296908555","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":365},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.09900000000001,0,7,25,8603,1386252969085,138625296908556","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":320},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"43.99900000000001,0,7,25,8603,1386252969085,138625296908557","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":275},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.2,39423,7,25,8603,1386252969087,138625296908758","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":365,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.998,0,7,25,8603,1386252969087,138625296908759","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.4,39423,7,25,8603,1386252969087,138625296908760","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":455,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.5,39423,7,25,8603,1386252969088,138625296908861","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":50,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.6,39423,7,25,8603,1386252972979,138625297297962","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":95,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.8,39423,7,25,8603,1386252972981,138625297298163","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":185,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"43.7,39423,7,25,8603,1386252974053,138625297405364","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":140,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.3,39423,7,25,8603,1386252974054,138625297405465","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":410,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.398,0,7,25,8603,1386252974054,138625297405466","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.698,0,7,25,8603,1386252974055,138625297405567","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.498,0,7,25,8603,1386252974056,138625297405668","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.598,0,7,25,8603,1386252974056,138625297405669","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.29799999999995,0,7,25,8603,1386252974057,138625297405770","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.79900000000001,0,7,25,8603,1386252974057,138625297405771","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.599,0,7,25,8603,1386252974058,138625297405872","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":545},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.198,0,7,25,8603,1386252974059,138625297405973","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.499,0,7,25,8603,1386252974059,138625297405974","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":500},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.098,0,7,25,8603,1386252974059,138625297405975","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.79799999999995,0,7,25,8603,1386252974060,138625297406076","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":635},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"44.898,0,7,25,8603,1386252974060,138625297406077","m":"{\"n\":\"■\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"l\":2}]}"},{"c":"45.39900000000001,0,7,25,8603,1386252974061,138625297406178","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.39900000000001,0,7,25,8603,1386252974061,138625297406179","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":905},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.699000000000005,0,7,25,8603,1386252977544,138625297754480","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":590},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.89900000000001,0,7,25,8603,1386252977545,138625297754581","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":680},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.29900000000001,0,7,25,8603,1386252977857,138625297785782","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":860},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.2,39423,7,25,8603,1386252977858,138625297785883","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":815,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45,39423,7,25,8603,1386252977859,138625297785984","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":725,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.9,39423,7,25,8603,1386252978865,138625297886585","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":680,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.1,39423,7,25,8603,1386252978866,138625297886686","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":770,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.199000000000005,0,7,25,8603,1386252978867,138625297886787","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":815},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"45.09900000000001,0,7,25,8603,1386252978868,138625297886888","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":770},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.99900000000001,0,7,25,8603,1386252978869,138625297886989","m":"{\"n\":\"➸\",\"t\":0,\"b\":false,\"p\":{\"y\":120,\"x\":725},\"c\":3,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,16777215,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"e\":0,\"d\":360,\"l\":0.3}]}"},{"c":"44.5,39423,7,25,8603,1386252978869,138625297886990","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":500,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.6,39423,7,25,8603,1386252978870,138625297887091","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":545,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.4,39423,7,25,8603,1386252978871,138625297887192","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":905,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.8,39423,7,25,8603,1386252978872,138625297887293","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":635,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"44.7,39423,7,25,8603,1386252981560,138625298156094","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":590,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"45.3,39423,7,25,8603,1386252981830,138625298183095","m":"{\"n\":\"□\",\"t\":0,\"b\":false,\"p\":{\"y\":940,\"x\":500},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false],[3,1,45,65535,1,255,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":860,\"y\":120,\"l\":0.3},{\"l\":2}]}"},{"c":"20,16777215,7,10,8603,1386260044046,13862600440462","m":"{\"k\":0,\"n\":\"■\",\"z\":[{\"l\":16.5}],\"e\":0.5,\"p\":{\"y\":168,\"x\":110},\"f\":2,\"r\":15,\"t\":0,\"b\":false,\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true}}"},{"c":"20,16777215,7,10,8603,1386260044976,13862600449763","m":"{\"k\":0,\"n\":\"■\",\"z\":[{\"l\":16.5}],\"e\":0.5,\"p\":{\"y\":168,\"x\":200},\"f\":2,\"r\":-15,\"t\":0,\"b\":false,\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true}}"},{"c":"20.65,16777215,7,45,8603,1386260232337,138626023233731","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.251,16724787,7,35,8603,1386260232805,138626023280532","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.25,16777215,7,30,8603,1386260233135,138626023313533","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.3,16777215,7,45,8603,1386260233602,138626023360234","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.301,16724787,7,35,8603,1386260234775,138626023477535","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.3,16777215,7,30,8603,1386260235240,138626023524036","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.35,16777215,7,45,8603,1386260235950,138626023595037","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.35,16777215,7,30,8603,1386260236183,138626023618338","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.351000000000003,16724787,7,35,8603,1386260236651,138626023665139","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20,16777215,7,45,8603,1386260236887,138626023688740","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.001,16724787,7,35,8603,1386260236887,138626023688741","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20,16777215,7,30,8603,1386260237123,138626023712342","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.1,16777215,7,45,8603,1386260237358,138626023735843","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.1,16777215,7,30,8603,1386260238290,138626023829044","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"20.101000000000003,16724787,7,35,8603,1386260238511,138626023851145","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.201,16724787,7,35,8603,1386260239209,138626023920946","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.2,16777215,7,45,8603,1386260239442,138626023944247","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.3,16777215,7,45,8603,1386260239676,138626023967648","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.2,16777215,7,30,8603,1386260239907,138626023990749","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"20.301,16724787,7,35,8603,1386260240371,138626024037150","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.3,16777215,7,30,8603,1386260241074,138626024107451","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.4,16777215,7,45,8603,1386260241318,138626024131852","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.801,16724787,7,35,8603,1386260241547,138626024154753","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.4,16777215,7,30,8603,1386260241781,138626024178154","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"20.5,16777215,7,45,8603,1386260242483,138626024248355","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.5,16777215,7,30,8603,1386260243651,138626024365156","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"20.501,16724787,7,35,8603,1386260243885,138626024388557","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.601000000000003,16724787,7,35,8603,1386260244128,138626024412858","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.751,16724787,7,35,8603,1386260244129,138626024412959","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.6,16777215,7,30,8603,1386260244624,138626024462460","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.9,16777215,7,45,8603,1386260245067,138626024506761","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.75,16777215,7,45,8603,1386260245773,138626024577362","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.6,16777215,7,45,8603,1386260245774,138626024577463","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.901,16724787,7,35,8603,1386260246030,138626024603064","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.25,16777215,7,45,8603,1386260246479,138626024647965","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.75,16777215,7,30,8603,1386260246713,138626024671366","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.949999999999996,16777215,7,30,8603,1386260246948,138626024694867","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.9,16777215,7,30,8603,1386260247417,138626024741768","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.651,16724787,7,35,8603,1386260247650,138626024765069","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.799999999999997,16777215,7,30,8603,1386260248118,138626024811870","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.65,16777215,7,30,8603,1386260248581,138626024858171","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"20.949999999999996,16777215,7,45,8603,1386260249055,138626024905572","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"20.950999999999997,16724787,7,35,8603,1386260249757,138626024975773","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.401000000000003,16724787,7,35,8603,1386260250226,138626025022674","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"21.051,16724787,7,35,8603,1386260250460,138626025046075","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"20.799999999999997,16777215,7,45,8603,1386260250695,138626025069576","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"21,16777215,7,45,8603,1386260251863,138626025186377","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"21,16777215,7,30,8603,1386260252565,138626025256578","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"21.301,16724787,7,35,8603,1386260252800,138626025280079","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"21.051,16724787,7,35,8603,1386260253036,138626025303680","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"21.3,16777215,7,30,8603,1386260253040,138626025304081","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"21.200000000000003,16777215,7,45,8603,1386260253276,138626025327682","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"21.049999999999997,16777215,7,45,8603,1386260253743,138626025374383","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"21.201000000000004,16724787,7,35,8603,1386260254210,138626025421084","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"21.200000000000003,16777215,7,30,8603,1386260254211,138626025421185","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"21.049999999999997,16777215,7,45,8603,1386260254711,138626025471186","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"21.09999999999999,16777215,7,30,8603,1386260254941,138626025494187","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"21.1,16777215,7,45,8603,1386260256114,138626025611488","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"21.001,16724787,7,35,8603,1386260256350,138626025635089","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"21.100999999999996,16724787,7,35,8603,1386260256582,138626025658290","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"21.049999999999997,16777215,7,30,8603,1386260257052,138626025705291","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"21.09999999999999,16777215,7,45,8603,1386260257519,138626025751992","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"21.3,16777215,7,45,8603,1386260257747,138626025774793","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"21.049999999999997,16777215,7,30,8603,1386260257984,138626025798494","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"21.101000000000003,16724787,7,35,8603,1386260258219,138626025821995","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"21.1,16777215,7,30,8603,1386260259625,138626025962596","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.601,16724787,7,35,8603,1386260259855,138626025985597","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.251,16724787,7,35,8603,1386260260090,138626026009098","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.6,16777215,7,30,8603,1386260260557,138626026055799","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.55,16777215,7,45,8603,1386260261033,13862602610331","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.551,16724787,7,35,8603,1386260261259,13862602612592","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.6,16777215,7,45,8603,1386260261727,13862602617273","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.55,16777215,7,30,8603,1386260262430,13862602624304","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.501,16724787,7,35,8603,1386260262906,13862602629065","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.65,16777215,7,30,8603,1386260263375,13862602633756","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.4,16777215,7,30,8603,1386260263608,13862602636087","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.401000000000003,16724787,7,35,8603,1386260264077,13862602640778","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.4,16777215,7,45,8603,1386260264545,13862602645459","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.3,16777215,7,30,8603,1386260264779,138626026477910","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.3,16777215,7,45,8603,1386260265333,138626026533311","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.301,16724787,7,35,8603,1386260265566,138626026556612","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.2,16777215,7,30,8603,1386260266043,138626026604313","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.201,16724787,7,35,8603,1386260266737,138626026673714","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.2,16777215,7,45,8603,1386260268140,138626026814015","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.1,16777215,7,30,8603,1386260268375,138626026837516","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.101000000000003,16724787,7,35,8603,1386260268616,138626026861617","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.1,16777215,7,45,8603,1386260268848,138626026884818","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.001,16724787,7,35,8603,1386260269079,138626026907919","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22,16777215,7,30,8603,1386260269317,138626026931720","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22,16777215,7,45,8603,1386260269555,138626026955521","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.351000000000003,16724787,7,35,8603,1386260269787,138626026978722","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.35,16777215,7,30,8603,1386260270023,138626027002323","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.35,16777215,7,45,8603,1386260270724,138626027072424","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.3,16777215,7,30,8603,1386260271429,138626027142925","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.2,16777215,7,45,8603,1386260272130,138626027213026","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.25,16777215,7,30,8603,1386260272365,138626027236527","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.65,16777215,7,45,8603,1386260272833,138626027283328","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.301,16724787,7,35,8603,1386260273770,138626027377029","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.3,16777215,7,30,8603,1386260274003,138626027400330","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.3,16777215,7,45,8603,1386260274237,138626027423731","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.8,16777215,7,30,8603,1386260274472,138626027447232","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.9,16777215,7,45,8603,1386260274707,138626027470733","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.6,16777215,7,30,8603,1386260274943,138626027494334","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.7,16777215,7,30,8603,1386260275411,138626027541135","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.801,16724787,7,35,8603,1386260275646,138626027564636","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.5,16777215,7,30,8603,1386260275879,138626027587937","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.101000000000003,16724787,7,35,8603,1386260276343,138626027634338","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.501,16724787,7,35,8603,1386260277045,138626027704539","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.4,16777215,7,30,8603,1386260277989,138626027798940","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.5,16777215,7,45,8603,1386260278231,138626027823141","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.401000000000003,16724787,7,35,8603,1386260279411,138626027941142","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.3,16777215,7,30,8603,1386260279650,138626027965043","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.4,16777215,7,45,8603,1386260279920,138626027992044","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.3,16777215,7,45,8603,1386260280144,138626028014445","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.301,16724787,7,35,8603,1386260280361,138626028036146","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.001,16724787,7,35,8603,1386260281057,138626028105747","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.25,16777215,7,45,8603,1386260281298,138626028129848","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.201,16724787,7,35,8603,1386260281531,138626028153149","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.2,16777215,7,30,8603,1386260281765,138626028176530","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.2,16777215,7,30,8603,1386260281765,138626028176550","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.25,16777215,7,45,8603,1386260282030,138626028203051","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.1,16777215,7,45,8603,1386260282264,138626028226452","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.351000000000003,16724787,7,35,8603,1386260282469,138626028246953","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22,16777215,7,45,8603,1386260282936,138626028293654","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.35,16777215,7,30,8603,1386260283170,138626028317055","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22,16777215,7,30,8603,1386260283404,138626028340456","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.301,16724787,7,35,8603,1386260283759,138626028375957","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.35,16777215,7,45,8603,1386260283992,138626028399258","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.4,16777215,7,45,8603,1386260284947,138626028494759","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.3,16777215,7,30,8603,1386260285181,138626028518160","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.401000000000003,16724787,7,35,8603,1386260285650,138626028565061","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.7,16777215,7,45,8603,1386260285897,138626028589762","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.4,16777215,7,30,8603,1386260286140,138626028614063","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.901,16724787,7,35,8603,1386260287053,138626028705364","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.9,16777215,7,30,8603,1386260287755,138626028775565","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.251,16724787,7,35,8603,1386260288220,138626028822066","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.5,16777215,7,45,8603,1386260288458,138626028845867","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.501,16724787,7,35,8603,1386260288689,138626028868968","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.6,16777215,7,45,8603,1386260288845,138626028884569","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.601,16724787,7,35,8603,1386260289380,138626028938070","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.8,16777215,7,45,8603,1386260289617,138626028961771","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.5,16777215,7,30,8603,1386260290087,138626029008772","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.5,16777215,7,45,8603,1386260291725,138626029172573","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.701000000000004,16724787,7,35,8603,1386260292657,138626029265774","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.651000000000003,16724787,7,35,8603,1386260292890,138626029289075","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.25,16777215,7,30,8603,1386260293127,138626029312776","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"22.1,16777215,7,30,8603,1386260293358,138626029335877","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.3,16777215,7,45,8603,1386260293826,138626029382678","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.301,16724787,7,35,8603,1386260294066,138626029406679","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"22.5,16777215,7,30,8603,1386260294311,138626029431180","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"22.3,16777215,7,45,8603,1386260294777,138626029477781","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"22.3,16777215,7,45,8603,1386260294777,138626029477782","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.550000000000004,16777215,7,30,8603,1386260295480,138626029548083","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23,16777215,7,30,8603,1386260295947,138626029594784","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23.001,16724787,7,35,8603,1386260296183,138626029618385","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23,16777215,7,45,8603,1386260296420,138626029642086","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.101,16724787,7,35,8603,1386260296958,138626029695887","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.1,16777215,7,45,8603,1386260297200,138626029720088","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.1,16777215,7,30,8603,1386260298407,138626029840789","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23.15,16777215,7,45,8603,1386260299001,138626029900190","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.151,16724787,7,35,8603,1386260299483,138626029948391","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.15,16777215,7,30,8603,1386260299712,138626029971292","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"23.25,16777215,7,45,8603,1386260299975,138626029997593","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.251,16724787,7,35,8603,1386260300184,138626030018494","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.25,16777215,7,30,8603,1386260301349,138626030134995","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23.35,16777215,7,45,8603,1386260301583,138626030158396","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.351,16724787,7,35,8603,1386260301817,138626030181797","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.35,16777215,7,30,8603,1386260302054,138626030205498","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23.450000000000003,16777215,7,45,8603,1386260302519,138626030251999","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.451000000000004,16724787,7,35,8603,1386260302989,13862603029891","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.450000000000003,16777215,7,30,8603,1386260303222,13862603032222","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23.500000000000004,16777215,7,45,8603,1386260303493,13862603034933","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.501,16724787,7,35,8603,1386260303962,13862603039624","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.500000000000004,16777215,7,30,8603,1386260304435,13862603044355","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23.550000000000004,16777215,7,45,8603,1386260304905,13862603049056","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.551000000000005,16724787,7,35,8603,1386260305607,13862603056077","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.500000000000004,16777215,7,30,8603,1386260305734,13862603057348","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23.200000000000003,16777215,7,45,8603,1386260306196,13862603061969","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.201000000000004,16724787,7,35,8603,1386260306428,138626030642810","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.201000000000004,16724787,7,35,8603,1386260306428,138626030642811","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.200000000000003,16777215,7,30,8603,1386260307364,138626030736412","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23.301000000000005,16724787,7,35,8603,1386260307832,138626030783213","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.300000000000004,16777215,7,45,8603,1386260308060,138626030806014","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.300000000000004,16777215,7,30,8603,1386260309007,138626030900715","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"23.401000000000003,16724787,7,35,8603,1386260309243,138626030924316","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.4,16777215,7,45,8603,1386260309478,138626030947817","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.4,16777215,7,30,8603,1386260309719,138626030971918","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"23.500000000000004,16777215,7,45,8603,1386260310591,138626031059119","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.6,16777215,7,45,8603,1386260310824,138626031082420","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.700000000000003,16777215,7,30,8603,1386260311057,138626031105721","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"23.501,16724787,7,35,8603,1386260311424,138626031142422","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.60100000000001,16724787,7,35,8603,1386260312591,138626031259123","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.700000000000003,16777215,7,45,8603,1386260313060,138626031306024","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.6,16777215,7,30,8603,1386260313292,138626031329225","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"23.701000000000004,16724787,7,35,8603,1386260313759,138626031375926","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.85,16777215,7,45,8603,1386260313997,138626031399727","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.950000000000003,16777215,7,45,8603,1386260314237,138626031423728","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"23.85,16777215,7,30,8603,1386260314474,138626031447429","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"23.851000000000003,16724787,7,35,8603,1386260314476,138626031447630","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.951000000000004,16724787,7,35,8603,1386260314710,138626031471031","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.951000000000004,16724787,7,35,8603,1386260314710,138626031471042","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"23.950000000000003,16777215,7,30,8603,1386260314955,138626031495532","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"23.950000000000003,16777215,7,30,8603,1386260314955,138626031495543","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"24.05,16777215,7,45,8603,1386260315194,138626031519433","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.05,16777215,7,45,8603,1386260315194,138626031519444","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.05,16777215,7,30,8603,1386260316133,138626031613334","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"24.05,16777215,7,30,8603,1386260316133,138626031613345","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"24.051,16724787,7,35,8603,1386260316362,138626031636235","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"24.051,16724787,7,35,8603,1386260316362,138626031636246","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"24.1,16777215,7,45,8603,1386260318001,138626031800136","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.1,16777215,7,45,8603,1386260318001,138626031800147","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.101,16724787,7,35,8603,1386260318466,138626031846637","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"24.101,16724787,7,35,8603,1386260318466,138626031846648","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"24.1,16777215,7,30,8603,1386260318706,138626031870638","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"24.1,16777215,7,30,8603,1386260318706,138626031870649","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"24.201,16724787,7,35,8603,1386260319175,138626031917539","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"24.201,16724787,7,35,8603,1386260319175,138626031917550","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"24.200000000000003,16777215,7,45,8603,1386260319408,138626031940840","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.200000000000003,16777215,7,45,8603,1386260319408,138626031940851","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.200000000000003,16777215,7,30,8603,1386260319644,138626031964441","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"24.200000000000003,16777215,7,30,8603,1386260319644,138626031964452","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"24.299999999999997,16777215,7,45,8603,1386260319877,138626031987753","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.299999999999997,16777215,7,45,8603,1386260319877,138626031987756","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.301,16724787,7,35,8603,1386260320115,138626032011554","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"24.301,16724787,7,35,8603,1386260320115,138626032011557","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"24.65,16777215,7,45,8603,1386260320609,138626032060955","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.65,16777215,7,45,8603,1386260320609,138626032060958","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.299999999999997,16777215,7,30,8603,1386260325686,138626032568659","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"24.75,16777215,7,45,8603,1386260325926,138626032592660","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.700000000000003,16777215,7,30,8603,1386260326192,138626032619261","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"24.700000000000003,16777215,7,45,8603,1386260326396,138626032639662","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.701,16724787,7,35,8603,1386260326626,138626032662663","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"24.65,16777215,7,30,8603,1386260326860,138626032686064","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"24.651000000000003,16724787,7,35,8603,1386260327095,138626032709565","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.101,16724787,7,35,8603,1386260327377,138626032737766","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.1,16777215,7,45,8603,1386260327603,138626032760367","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.05,16777215,7,30,8603,1386260327836,138626032783668","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.051,16724787,7,35,8603,1386260328320,138626032832069","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.05,16777215,7,45,8603,1386260328539,138626032853970","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"24.75,16777215,7,30,8603,1386260328776,138626032877671","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"24.751000000000005,16724787,7,35,8603,1386260328777,138626032877772","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.1,16777215,7,30,8603,1386260329702,138626032970273","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.15,16777215,7,45,8603,1386260330881,138626033088174","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.15,16777215,7,30,8603,1386260331095,138626033109575","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.151000000000003,16724787,7,35,8603,1386260331325,138626033132576","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.451,16724787,7,35,8603,1386260331574,138626033157477","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.45,16777215,7,45,8603,1386260332052,138626033205278","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.45,16777215,7,30,8603,1386260332287,138626033228779","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.5,16777215,7,45,8603,1386260332521,138626033252180","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.5,16777215,7,30,8603,1386260332757,138626033275781","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.501,16724787,7,35,8603,1386260332993,138626033299382","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.55,16777215,7,45,8603,1386260333227,138626033322783","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.551,16724787,7,35,8603,1386260333461,138626033346184","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.851,16724787,7,35,8603,1386260333693,138626033369385","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.85,16777215,7,45,8603,1386260333933,138626033393386","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.55,16777215,7,30,8603,1386260333935,138626033393587","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.85,16777215,7,30,8603,1386260334397,138626033439788","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.9,16777215,7,45,8603,1386260334832,138626033483289","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.950000000000003,16777215,7,45,8603,1386260335535,138626033553590","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.950000000000003,16777215,7,45,8603,1386260335535,138626033553591","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.9,16777215,7,30,8603,1386260335764,138626033576492","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.900999999999996,16724787,7,35,8603,1386260335998,138626033599893","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.951,16724787,7,35,8603,1386260336701,138626033670194","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.950000000000003,16777215,7,30,8603,1386260337641,138626033764195","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.6,16777215,7,45,8603,1386260338051,138626033805196","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.6,16777215,7,30,8603,1386260338984,138626033898497","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.601,16724787,7,35,8603,1386260339452,138626033945298","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.700000000000003,16777215,7,30,8603,1386260339687,138626033968799","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"25.701,16724787,7,35,8603,1386260339920,13862603399201","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.700000000000003,16777215,7,45,8603,1386260340159,13862603401592","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.801,16724787,7,35,8603,1386260341340,13862603413403","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"25.799999999999997,16777215,7,45,8603,1386260341574,13862603415744","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.799999999999997,16777215,7,30,8603,1386260342045,13862603420455","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"25.9,16777215,7,45,8603,1386260342512,13862603425126","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"25.9,16777215,7,30,8603,1386260342747,13862603427477","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"25.900999999999996,16724787,7,35,8603,1386260342748,13862603427488","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26,16777215,7,45,8603,1386260490651,13862604906519","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.001000000000005,16724787,7,35,8603,1386260491070,138626049107010","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26,16777215,7,30,8603,1386260491678,138626049167811","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.1,16777215,7,45,8603,1386260491974,138626049197412","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.101,16724787,7,35,8603,1386260492439,138626049243913","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.1,16777215,7,30,8603,1386260492909,138626049290914","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.25,16777215,7,45,8603,1386260493139,138626049313915","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.251,16724787,7,35,8603,1386260493823,138626049382316","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.25,16777215,7,30,8603,1386260494289,138626049428917","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.3,16777215,7,45,8603,1386260494529,138626049452918","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.301,16724787,7,35,8603,1386260494770,138626049477019","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.3,16777215,7,30,8603,1386260495229,138626049522920","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.35,16777215,7,45,8603,1386260495470,138626049547021","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.351000000000003,16724787,7,35,8603,1386260495809,138626049580922","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.35,16777215,7,30,8603,1386260496358,138626049635823","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26,16777215,7,45,8603,1386260496818,138626049681824","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.001,16724787,7,35,8603,1386260497280,138626049728025","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26,16777215,7,30,8603,1386260497515,138626049751526","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.101000000000003,16724787,7,35,8603,1386260498449,138626049844927","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.1,16777215,7,45,8603,1386260498450,138626049845028","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.1,16777215,7,30,8603,1386260498685,138626049868529","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"26.2,16777215,7,45,8603,1386260499152,138626049915230","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.201,16724787,7,35,8603,1386260499628,138626049962831","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.2,16777215,7,30,8603,1386260499860,138626049986032","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"26.3,16777215,7,45,8603,1386260500329,138626050032933","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.301,16724787,7,35,8603,1386260500609,138626050060934","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.3,16777215,7,30,8603,1386260501321,138626050132135","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.4,16777215,7,45,8603,1386260501555,138626050155536","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.401000000000003,16724787,7,35,8603,1386260502015,138626050201537","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.4,16777215,7,30,8603,1386260502267,138626050226738","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"26.5,16777215,7,45,8603,1386260502656,138626050265639","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.501,16724787,7,35,8603,1386260503054,138626050305440","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.5,16777215,7,30,8603,1386260503459,138626050345941","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"26.55,16777215,7,45,8603,1386260503863,138626050386342","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.551,16724787,7,35,8603,1386260504346,138626050434643","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.55,16777215,7,30,8603,1386260504831,138626050483144","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.6,16777215,7,45,8603,1386260505388,138626050538845","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.601,16724787,7,35,8603,1386260505843,138626050584346","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.6,16777215,7,30,8603,1386260506082,138626050608247","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.65,16777215,7,45,8603,1386260506399,138626050639948","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.651000000000003,16724787,7,35,8603,1386260506940,138626050694049","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.65,16777215,7,30,8603,1386260507182,138626050718250","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.3,16777215,7,45,8603,1386260507709,138626050770951","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.301,16724787,7,35,8603,1386260507939,138626050793952","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.3,16777215,7,30,8603,1386260508398,138626050839853","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.4,16777215,7,45,8603,1386260508691,138626050869154","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.401000000000003,16724787,7,35,8603,1386260509009,138626050900955","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.4,16777215,7,30,8603,1386260509766,138626050976656","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"26.5,16777215,7,45,8603,1386260510011,138626051001157","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.501,16724787,7,35,8603,1386260510240,138626051024058","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.5,16777215,7,30,8603,1386260510610,138626051061059","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"26.6,16777215,7,45,8603,1386260511009,138626051100960","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.601,16724787,7,35,8603,1386260511421,138626051142161","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.6,16777215,7,30,8603,1386260511815,138626051181562","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"26.7,16777215,7,45,8603,1386260512282,138626051228263","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.701000000000004,16724787,7,35,8603,1386260512789,138626051278964","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.7,16777215,7,30,8603,1386260513023,138626051302365","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"26.8,16777215,7,45,8603,1386260513496,138626051349666","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.801,16724787,7,35,8603,1386260513964,138626051396467","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.8,16777215,7,30,8603,1386260514430,138626051443068","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"26.9,16777215,7,45,8603,1386260514908,138626051490869","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"26.901,16724787,7,35,8603,1386260515145,138626051514570","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"26.9,16777215,7,30,8603,1386260515453,138626051545371","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"27,16777215,7,45,8603,1386260515923,138626051592372","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.001,16724787,7,35,8603,1386260516389,138626051638973","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27,16777215,7,30,8603,1386260516860,138626051686074","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"27.1,16777215,7,45,8603,1386260517094,138626051709475","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.101,16724787,7,35,8603,1386260517561,138626051756176","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.1,16777215,7,30,8603,1386260518030,138626051803077","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"27.15,16777215,7,45,8603,1386260518500,138626051850078","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.151,16724787,7,35,8603,1386260518731,138626051873179","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.15,16777215,7,30,8603,1386260519048,138626051904880","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"27.25,16777215,7,45,8603,1386260519450,138626051945081","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.251,16724787,7,35,8603,1386260519811,138626051981182","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.25,16777215,7,30,8603,1386260520278,138626052027883","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"27.35,16777215,7,45,8603,1386260520610,138626052061084","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.351,16724787,7,35,8603,1386260521005,138626052100585","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.35,16777215,7,30,8603,1386260521710,138626052171086","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"27.450000000000003,16777215,7,45,8603,1386260521942,138626052194287","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.451000000000004,16724787,7,35,8603,1386260522645,138626052264588","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.450000000000003,16777215,7,30,8603,1386260522883,138626052288389","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"27.500000000000004,16777215,7,45,8603,1386260523346,138626052334690","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.501,16724787,7,35,8603,1386260523580,138626052358091","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.500000000000004,16777215,7,30,8603,1386260524050,138626052405092","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"27.550000000000004,16777215,7,45,8603,1386260524323,138626052432393","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.551000000000005,16724787,7,35,8603,1386260524796,138626052479694","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.550000000000004,16777215,7,30,8603,1386260525031,138626052503195","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"27.200000000000003,16777215,7,45,8603,1386260525503,138626052550396","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.201000000000004,16724787,7,35,8603,1386260525808,138626052580897","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.200000000000003,16777215,7,30,8603,1386260526276,138626052627698","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"27.300000000000004,16777215,7,45,8603,1386260526743,138626052674399","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.301000000000005,16724787,7,35,8603,1386260527211,13862605272111","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.300000000000004,16777215,7,30,8603,1386260527447,13862605274472","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"27.4,16777215,7,45,8603,1386260528013,13862605280133","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.401000000000003,16724787,7,35,8603,1386260528481,13862605284814","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.4,16777215,7,30,8603,1386260528714,13862605287145","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"27.500000000000004,16777215,7,45,8603,1386260529183,13862605291836","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.501,16724787,7,35,8603,1386260529650,13862605296507","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.500000000000004,16777215,7,30,8603,1386260530117,13862605301178","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"27.6,16777215,7,45,8603,1386260530359,13862605303599","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.60100000000001,16724787,7,35,8603,1386260530822,138626053082210","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.6,16777215,7,30,8603,1386260531294,138626053129411","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"27.700000000000003,16777215,7,45,8603,1386260531525,138626053152512","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"27.701000000000004,16724787,7,35,8603,1386260532181,138626053218113","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"27.700000000000003,16777215,7,30,8603,1386260532893,138626053289314","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"28.85,16777215,7,45,8603,1386260533375,138626053337515","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"28.851,16724787,7,35,8603,1386260533903,138626053390316","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"28.85,16777215,7,30,8603,1386260534376,138626053437617","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"28.95,16777215,7,45,8603,1386260535076,138626053507618","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"28.951,16724787,7,35,8603,1386260535390,138626053539019","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"28.95,16777215,7,30,8603,1386260536029,138626053602920","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"29.049999999999997,16777215,7,45,8603,1386260536526,138626053652621","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.051,16724787,7,35,8603,1386260537155,138626053715522","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.049999999999997,16777215,7,30,8603,1386260537573,138626053757323","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"29.15,16777215,7,45,8603,1386260538274,138626053827424","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.151000000000003,16724787,7,35,8603,1386260538749,138626053874925","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.15,16777215,7,30,8603,1386260539065,138626053906526","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"29.25,16777215,7,45,8603,1386260539603,138626053960327","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.251000000000005,16724787,7,35,8603,1386260540309,138626054030928","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.25,16777215,7,30,8603,1386260540776,138626054077629","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"29.35,16777215,7,45,8603,1386260541489,138626054148930","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.351,16724787,7,35,8603,1386260541721,138626054172131","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.35,16777215,7,30,8603,1386260542414,138626054241432","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"29.85,16777215,7,45,8603,1386260542647,138626054264733","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.851,16724787,7,35,8603,1386260543349,138626054334934","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.85,16777215,7,30,8603,1386260544071,138626054407135","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"29.9,16777215,7,45,8603,1386260544531,138626054453136","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.900999999999996,16724787,7,35,8603,1386260545004,138626054500437","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.9,16777215,7,30,8603,1386260545483,138626054548338","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"29.950000000000003,16777215,7,45,8603,1386260545784,138626054578439","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.951,16724787,7,35,8603,1386260546546,138626054654640","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.950000000000003,16777215,7,30,8603,1386260547012,138626054701241","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"29.6,16777215,7,45,8603,1386260547480,138626054748042","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.601,16724787,7,35,8603,1386260548650,138626054865043","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.6,16777215,7,30,8603,1386260548652,138626054865244","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"29.700000000000003,16777215,7,45,8603,1386260548885,138626054888545","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.701,16724787,7,35,8603,1386260549352,138626054935246","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.700000000000003,16777215,7,30,8603,1386260549823,138626054982347","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"29.799999999999997,16777215,7,45,8603,1386260550518,138626055051848","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.801,16724787,7,35,8603,1386260551244,138626055124449","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.799999999999997,16777215,7,30,8603,1386260551454,138626055145450","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"29.9,16777215,7,45,8603,1386260551921,138626055192151","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.900999999999996,16724787,7,35,8603,1386260552405,138626055240552","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.9,16777215,7,30,8603,1386260553007,138626055300753","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30,16777215,7,45,8603,1386260553235,138626055323554","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.001000000000005,16724787,7,35,8603,1386260553924,138626055392455","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30,16777215,7,30,8603,1386260554441,138626055444156","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.1,16777215,7,45,8603,1386260554869,138626055486957","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.101,16724787,7,35,8603,1386260555369,138626055536958","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.1,16777215,7,30,8603,1386260555878,138626055587859","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.1,16777215,7,30,8603,1386260555878,138626055587860","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.1,16777215,7,30,8603,1386260555878,138626055587861","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.15,16777215,7,45,8603,1386260556465,138626055646562","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.150999999999996,16724787,7,35,8603,1386260557166,138626055716663","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.15,16777215,7,30,8603,1386260557401,138626055740164","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30.200000000000003,16777215,7,45,8603,1386260557868,138626055786865","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.201,16724787,7,35,8603,1386260558569,138626055856966","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.201,16724787,7,35,8603,1386260558569,138626055856967","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.200000000000003,16777215,7,30,8603,1386260559007,138626055900768","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30.25,16777215,7,45,8603,1386260559714,138626055971469","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.251000000000005,16724787,7,35,8603,1386260560181,138626056018170","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.25,16777215,7,30,8603,1386260560649,138626056064971","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"29.9,16777215,7,45,8603,1386260560883,138626056088372","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"29.900999999999996,16724787,7,35,8603,1386260561352,138626056135273","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"29.9,16777215,7,30,8603,1386260562157,138626056215774","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30,16777215,7,45,8603,1386260562285,138626056228575","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.001000000000005,16724787,7,35,8603,1386260563006,138626056300676","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30,16777215,7,30,8603,1386260563459,138626056345977","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.1,16777215,7,45,8603,1386260564159,138626056415978","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.101,16724787,7,35,8603,1386260564638,138626056463879","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.1,16777215,7,30,8603,1386260564879,138626056487980","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.200000000000003,16777215,7,45,8603,1386260565389,138626056538981","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.201,16724787,7,35,8603,1386260566043,138626056604382","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.200000000000003,16777215,7,30,8603,1386260566747,138626056674783","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30.299999999999997,16777215,7,45,8603,1386260566982,138626056698284","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.301,16724787,7,35,8603,1386260567916,138626056791685","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.299999999999997,16777215,7,30,8603,1386260568398,138626056839886","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.4,16777215,7,45,8603,1386260568853,138626056885387","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.400999999999996,16724787,7,35,8603,1386260568854,138626056885488","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.4,16777215,7,30,8603,1386260569414,138626056941489","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.5,16777215,7,45,8603,1386260569882,138626056988290","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.501,16724787,7,35,8603,1386260570349,138626057034991","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.5,16777215,7,30,8603,1386260570775,138626057077592","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.6,16777215,7,45,8603,1386260571568,138626057156893","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.601,16724787,7,35,8603,1386260572038,138626057203894","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.6,16777215,7,30,8603,1386260572504,138626057250495","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30.700000000000003,16777215,7,45,8603,1386260572971,138626057297196","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.701,16724787,7,35,8603,1386260573440,138626057344097","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.700000000000003,16777215,7,30,8603,1386260573914,138626057391498","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30.75,16777215,7,45,8603,1386260574383,138626057438399","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.751,16724787,7,35,8603,1386260575086,13862605750861","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.75,16777215,7,30,8603,1386260575552,13862605755522","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"30.851,16724787,7,35,8603,1386260576016,13862605760163","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.85,16777215,7,45,8603,1386260576245,13862605762454","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.85,16777215,7,30,8603,1386260576480,13862605764805","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30.950000000000003,16777215,7,45,8603,1386260576949,13862605769496","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.951,16724787,7,35,8603,1386260577649,13862605776497","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.950000000000003,16777215,7,30,8603,1386260578121,13862605781218","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"31.050000000000004,16777215,7,45,8603,1386260578122,13862605781229","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"31.051,16724787,7,35,8603,1386260578354,138626057835410","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"31.050000000000004,16777215,7,30,8603,1386260578697,138626057869711","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"31.1,16777215,7,45,8603,1386260579166,138626057916612","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"31.101,16724787,7,35,8603,1386260579635,138626057963513","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"31.1,16777215,7,30,8603,1386260580335,138626058033514","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"31.15000000000001,16777215,7,45,8603,1386260580335,138626058033515","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"31.151000000000003,16724787,7,35,8603,1386260580801,138626058080116","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"31.15000000000001,16777215,7,30,8603,1386260581049,138626058104917","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30.800000000000004,16777215,7,45,8603,1386260581751,138626058175118","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.801,16724787,7,35,8603,1386260581985,138626058198519","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.800000000000004,16777215,7,30,8603,1386260582454,138626058245420","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"30.90000000000001,16777215,7,45,8603,1386260582699,138626058269921","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"30.901000000000003,16724787,7,35,8603,1386260583173,138626058317322","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"30.90000000000001,16777215,7,30,8603,1386260583646,138626058364623","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"31,16777215,7,45,8603,1386260584191,138626058419124","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"31.001000000000005,16724787,7,35,8603,1386260584428,138626058442825","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"31,16777215,7,30,8603,1386260584895,138626058489526","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"31.1,16777215,7,45,8603,1386260585358,138626058535827","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"31.101,16724787,7,35,8603,1386260585589,138626058558928","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"31.1,16777215,7,30,8603,1386260586093,138626058609329","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"31.200000000000003,16777215,7,45,8603,1386260586327,138626058632730","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"31.201000000000008,16724787,7,35,8603,1386260586788,138626058678831","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"31.200000000000003,16777215,7,30,8603,1386260587252,138626058725232","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"31.300000000000004,16777215,7,45,8603,1386260587725,138626058772533","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"31.301,16724787,7,35,8603,1386260587959,138626058795934","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"31.300000000000004,16777215,7,30,8603,1386260588660,138626058866035","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"31.300000000000004,16777215,7,30,8603,1386260588660,138626058866036","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"32.45,16777215,7,45,8603,1386260685090,138626068509037","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"32.451,16724787,7,35,8603,1386260685422,138626068542238","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"32.45,16777215,7,30,8603,1386260685829,138626068582939","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"32.55,16777215,7,45,8603,1386260686391,138626068639140","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"32.551,16724787,7,35,8603,1386260686866,138626068686641","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"32.55,16777215,7,30,8603,1386260687342,138626068734242","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"32.65,16777215,7,45,8603,1386260687588,138626068758843","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"32.650999999999996,16724787,7,35,8603,1386260688057,138626068805744","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"32.65,16777215,7,30,8603,1386260688984,138626068898445","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"33.251000000000005,16724787,7,35,8603,1386260689699,138626068969946","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"33.25,16777215,7,45,8603,1386260689932,138626068993247","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"33.3,16777215,7,45,8603,1386260691095,138626069109548","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"33.25,16777215,7,30,8603,1386260691329,138626069132949","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"33.301,16724787,7,35,8603,1386260691562,138626069156250","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"33.3,16777215,7,30,8603,1386260691799,138626069179951","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"33.351,16724787,7,35,8603,1386260692028,138626069202852","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"33.35,16777215,7,45,8603,1386260692260,138626069226053","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"33.35,16777215,7,30,8603,1386260692489,138626069248954","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"33,16777215,7,45,8603,1386260692723,138626069272355","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"33.001000000000005,16724787,7,35,8603,1386260694459,138626069445956","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"33,16777215,7,30,8603,1386260694692,138626069469257","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"33.1,16777215,7,45,8603,1386260694932,138626069493258","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"33.101,16724787,7,35,8603,1386260695389,138626069538959","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"33.1,16777215,7,30,8603,1386260695850,138626069585060","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"33.2,16777215,7,45,8603,1386260696316,138626069631661","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"33.201,16724787,7,35,8603,1386260696772,138626069677262","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"33.3,16777215,7,45,8603,1386260697246,138626069724663","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"33.2,16777215,7,30,8603,1386260697481,138626069748164","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"33.3,16777215,7,30,8603,1386260698439,138626069843965","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"33.301,16724787,7,35,8603,1386260698674,138626069867466","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"33.4,16777215,7,45,8603,1386260699390,138626069939067","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"33.4,16777215,7,30,8603,1386260699626,138626069962668","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"33.401,16724787,7,35,8603,1386260699628,138626069962869","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"33.5,16777215,7,45,8603,1386260701011,138626070101170","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"33.5,16777215,7,30,8603,1386260701246,138626070124671","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"33.501000000000005,16724787,7,35,8603,1386260701479,138626070147972","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34,16777215,7,45,8603,1386260702652,138626070265273","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.001000000000005,16724787,7,35,8603,1386260703306,138626070330674","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34,16777215,7,30,8603,1386260703772,138626070377275","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.15,16777215,7,45,8603,1386260704243,138626070424376","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.150999999999996,16724787,7,35,8603,1386260704572,138626070457277","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.3,16777215,7,45,8603,1386260704810,138626070481078","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.15,16777215,7,30,8603,1386260705045,138626070504579","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.301,16724787,7,35,8603,1386260705270,138626070527080","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.3,16777215,7,30,8603,1386260705500,138626070550081","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.45099999999999,16724787,7,35,8603,1386260705972,138626070597282","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.449999999999996,16777215,7,45,8603,1386260706205,138626070620583","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.4,16777215,7,45,8603,1386260707880,138626070788084","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.449999999999996,16777215,7,30,8603,1386260708120,138626070812085","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.44999999999999,16777215,7,45,8603,1386260708832,138626070883286","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.4,16777215,7,30,8603,1386260709066,138626070906687","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.400999999999996,16724787,7,35,8603,1386260709311,138626070931188","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.45099999999999,16724787,7,35,8603,1386260709782,138626070978289","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.44999999999999,16777215,7,30,8603,1386260710485,138626071048590","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.49999999999999,16777215,7,45,8603,1386260711205,138626071120591","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.50099999999999,16724787,7,35,8603,1386260711900,138626071190092","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.55,16777215,7,45,8603,1386260713747,138626071374793","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.49999999999999,16777215,7,30,8603,1386260713748,138626071374894","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.550999999999995,16724787,7,35,8603,1386260713986,138626071398695","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.55,16777215,7,30,8603,1386260714226,138626071422696","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.19999999999999,16777215,7,45,8603,1386260714460,138626071446097","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.19999999999999,16777215,7,30,8603,1386260715648,138626071564898","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.20099999999999,16724787,7,35,8603,1386260715649,138626071564999","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.3,16777215,7,45,8603,1386260715883,13862607158831","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.300999999999995,16724787,7,35,8603,1386260716349,13862607163492","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.3,16777215,7,30,8603,1386260717109,13862607171093","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.39999999999999,16777215,7,45,8603,1386260718032,13862607180324","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.400999999999996,16724787,7,35,8603,1386260718336,13862607183365","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.39999999999999,16777215,7,30,8603,1386260718801,13862607188016","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.49999999999999,16777215,7,45,8603,1386260719035,13862607190357","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.50099999999999,16724787,7,35,8603,1386260719511,13862607195118","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.49999999999999,16777215,7,30,8603,1386260719511,13862607195119","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.599999999999994,16777215,7,45,8603,1386260719748,138626071974810","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.599999999999994,16777215,7,30,8603,1386260719988,138626071998811","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.601,16724787,7,35,8603,1386260720222,138626072022212","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.69999999999999,16777215,7,45,8603,1386260720919,138626072091913","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.70099999999999,16724787,7,35,8603,1386260722071,138626072207114","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.69999999999999,16777215,7,30,8603,1386260722779,138626072277915","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.74999999999999,16777215,7,45,8603,1386260723245,138626072324516","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.75099999999999,16724787,7,35,8603,1386260723716,138626072371617","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.74999999999999,16777215,7,30,8603,1386260723957,138626072395718","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.80099999999999,16724787,7,35,8603,1386260724661,138626072466119","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.8,16777215,7,45,8603,1386260724894,138626072489420","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.8,16777215,7,30,8603,1386260725128,138626072512821","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.849999999999994,16777215,7,45,8603,1386260725607,138626072560722","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.851,16724787,7,35,8603,1386260725835,138626072583523","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.849999999999994,16777215,7,30,8603,1386260726803,138626072680324","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.49999999999999,16777215,7,45,8603,1386260727037,138626072703725","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.50099999999999,16724787,7,35,8603,1386260727512,138626072751226","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.49999999999999,16777215,7,30,8603,1386260727513,138626072751327","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.599999999999994,16777215,7,45,8603,1386260727980,138626072798028","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.601,16724787,7,35,8603,1386260728927,138626072892729","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.599999999999994,16777215,7,30,8603,1386260729162,138626072916230","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.69999999999999,16777215,7,45,8603,1386260731065,138626073106531","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.70099999999999,16724787,7,35,8603,1386260731066,138626073106632","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.69999999999999,16777215,7,30,8603,1386260731266,138626073126633","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.8,16777215,7,45,8603,1386260731538,138626073153834","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.80099999999999,16724787,7,35,8603,1386260731775,138626073177535","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.8,16777215,7,30,8603,1386260731986,138626073198636","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.89999999999999,16777215,7,45,8603,1386260732244,138626073224437","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.900999999999996,16724787,7,35,8603,1386260732476,138626073247638","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.89999999999999,16777215,7,30,8603,1386260732932,138626073293239","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.99999999999999,16777215,7,45,8603,1386260733338,138626073333840","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.00099999999999,16724787,7,35,8603,1386260733600,138626073360041","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.99999999999999,16777215,7,30,8603,1386260734023,138626073402342","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.69999999999999,16777215,7,45,8603,1386260734284,138626073428443","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.700999999999986,16724787,7,35,8603,1386260734806,138626073480644","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.69999999999999,16777215,7,30,8603,1386260735272,138626073527245","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"34.79999999999998,16777215,7,45,8603,1386260735740,138626073574046","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.80099999999999,16724787,7,35,8603,1386260736199,138626073619947","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.79999999999998,16777215,7,30,8603,1386260736661,138626073666148","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.89999999999999,16777215,7,45,8603,1386260737352,138626073735249","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.90099999999998,16724787,7,35,8603,1386260738071,138626073807150","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.89999999999999,16777215,7,30,8603,1386260738310,138626073831051","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.94999999999999,16777215,7,45,8603,1386260738543,138626073854352","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.950999999999986,16724787,7,35,8603,1386260738770,138626073877053","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"34.94999999999999,16777215,7,30,8603,1386260739471,138626073947154","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"35.04999999999998,16777215,7,45,8603,1386260739704,138626073970455","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.05099999999999,16724787,7,35,8603,1386260740418,138626074041856","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.04999999999998,16777215,7,30,8603,1386260741110,138626074111057","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"35.14999999999999,16777215,7,45,8603,1386260742261,138626074226158","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.14999999999999,16777215,7,30,8603,1386260742729,138626074272959","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"35.15099999999998,16724787,7,35,8603,1386260742964,138626074296460","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.249999999999986,16777215,7,45,8603,1386260743424,138626074342461","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.25099999999999,16724787,7,35,8603,1386260743657,138626074365762","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.249999999999986,16777215,7,30,8603,1386260743893,138626074389363","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"35.29999999999999,16777215,7,45,8603,1386260744280,138626074428064","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.30099999999999,16724787,7,35,8603,1386260744888,138626074488865","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.29999999999999,16777215,7,30,8603,1386260745124,138626074512466","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"35.349999999999994,16777215,7,45,8603,1386260745594,138626074559467","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.35099999999999,16724787,7,35,8603,1386260745848,138626074584868","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.349999999999994,16777215,7,30,8603,1386260746077,138626074607769","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"34.999999999999986,16777215,7,45,8603,1386260746303,138626074630370","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.00099999999999,16724787,7,35,8603,1386260746780,138626074678071","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.099999999999994,16777215,7,45,8603,1386260747017,138626074701772","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"34.999999999999986,16777215,7,30,8603,1386260747240,138626074724073","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"35.10099999999999,16724787,7,35,8603,1386260748093,138626074809374","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.20099999999999,16724787,7,35,8603,1386260748323,138626074832375","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.19999999999999,16777215,7,45,8603,1386260748556,138626074855676","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.099999999999994,16777215,7,30,8603,1386260748796,138626074879677","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"35.19999999999999,16777215,7,30,8603,1386260749262,138626074926278","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"35.29999999999999,16777215,7,45,8603,1386260749493,138626074949379","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.30099999999999,16724787,7,35,8603,1386260749727,138626074972780","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.29999999999999,16777215,7,30,8603,1386260750196,138626075019681","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"d\":360,\"t\":0,\"e\":0,\"f\":0,\"l\":0.2,\"g\":0}]}"},{"c":"35.39999999999999,16777215,7,45,8603,1386260750478,138626075047882","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.400999999999996,16724787,7,35,8603,1386260750946,138626075094683","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.39999999999999,16777215,7,30,8603,1386260751188,138626075118884","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"35.499999999999986,16777215,7,45,8603,1386260751899,138626075189985","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"t\":0,\"e\":0,\"c\":16777011,\"f\":1.3,\"l\":0.2,\"g\":1.3}]}"},{"c":"35.50099999999999,16724787,7,35,8603,1386260752129,138626075212986","m":"{\"n\":\"●\",\"t\":0,\"b\":false,\"p\":{\"y\":271,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[3,1,45,16737894,1,16711680,1,5,5,3,2,\"inner\",false]],\"b\":true},\"z\":[{\"x\":221,\"y\":271,\"l\":1},{\"c\":16777011,\"f\":1.3,\"l\":0.3,\"t\":0,\"g\":1.3}]}"},{"c":"35.499999999999986,16777215,7,30,8603,1386260752361,138626075236187","m":"{\"n\":\"ド\",\"t\":0,\"b\":false,\"p\":{\"y\":388,\"x\":1100},\"c\":4,\"l\":0,\"w\":{\"f\":\"黑体\",\"l\":[[1,0,1,5,5,5,2,false,false]],\"b\":true},\"z\":[{\"x\":221,\"y\":388,\"l\":1},{\"l\":0.2,\"t\":0,\"e\":0,\"f\":0,\"d\":360,\"g\":0}]}"},{"c":"6,16777215,7,50,211467,1386301830208,138630183020853","m":"{\"n\":\"1X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"6.4,16777215,7,50,211467,1386301830451,138630183045148","m":"{\"n\":\"2X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"6.4,16777215,7,50,211467,1386301830451,138630183045171","m":"{\"n\":\"2X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"6.8,16777215,7,50,211467,1386301830918,138630183091846","m":"{\"n\":\"3X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"7.2,16777215,7,50,211467,1386301831388,138630183138843","m":"{\"n\":\"4X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"7.6,16777215,7,50,211467,1386301831857,138630183185742","m":"{\"n\":\"5X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"8,16777215,7,50,211467,1386301832195,138630183219541","m":"{\"n\":\"6X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"8.4,16777215,7,50,211467,1386301832891,138630183289140","m":"{\"n\":\"7X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"8.8,16777215,7,50,211467,1386301833649,138630183364939","m":"{\"n\":\"8X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"9.1,16777215,7,50,211467,1386301834364,138630183436436","m":"{\"n\":\"9X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"9.3,16777215,7,50,211467,1386301835104,138630183510435","m":"{\"n\":\"10X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"9.5,16777215,7,50,211467,1386301835964,138630183596492","m":"{\"n\":\"11X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"9.9,16777215,7,50,211467,1386301836782,138630183678233","m":"{\"n\":\"12X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"10.3,16777215,7,50,211467,1386301837368,138630183736885","m":"{\"n\":\"13X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"10.7,16777215,7,50,211467,1386301838118,138630183811831","m":"{\"n\":\"14X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"11,16777215,7,50,211467,1386301838937,138630183893730","m":"{\"n\":\"15X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.3}]}"},{"c":"11.4,16777215,7,50,211467,1386301839646,138630183964667","m":"{\"n\":\"16X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"11.8,16777215,7,50,211467,1386301840559,138630184055926","m":"{\"n\":\"17X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"12.2,16777215,7,50,211467,1386301841084,138630184108424","m":"{\"n\":\"18X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"12.5,16777215,7,50,211467,1386301841877,138630184187723","m":"{\"n\":\"19X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.3}]}"},{"c":"12.8,16777215,7,50,211467,1386301842672,138630184267222","m":"{\"n\":\"20X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"13,16777215,7,50,211467,1386301843423,138630184342352","m":"{\"n\":\"21X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"13.2,16777215,7,50,211467,1386301844112,138630184411261","m":"{\"n\":\"22X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"13.4,16777215,7,50,211467,1386301845062,138630184506251","m":"{\"n\":\"23X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"14.05,16777215,7,50,211467,1386301845664,138630184566415","m":"{\"n\":\"25X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.35}]}"},{"c":"13.7,16777215,7,50,211467,1386301846364,138630184636410","m":"{\"n\":\"24X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.35}]}"},{"c":"14.4,16777215,7,50,211467,1386301847124,13863018471248","m":"{\"n\":\"26X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.35}]}"},{"c":"14.8,16777215,7,50,211467,1386301847866,13863018478667","m":"{\"n\":\"27X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"15.2,16777215,7,50,211467,1386301848666,13863018486666","m":"{\"n\":\"28X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"15.6,16777215,7,50,211467,1386301849447,13863018494474","m":"{\"n\":\"29X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"16,16777215,7,50,211467,1386301850269,13863018502693","m":"{\"n\":\"31X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"15.8,16777215,7,50,211467,1386301850955,13863018509552","m":"{\"n\":\"30X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"16.2,16777215,7,50,211467,1386301851782,138630185178298","m":"{\"n\":\"32X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"16.5,16777215,7,50,211467,1386301852067,138630185206797","m":"{\"n\":\"33X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"16.9,16777215,7,50,211467,1386301852479,138630185247996","m":"{\"n\":\"34X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"17.3,16777215,7,50,211467,1386301852953,138630185295395","m":"{\"n\":\"35X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.3}]}"},{"c":"17.6,16777215,7,50,211467,1386301853432,13863018534321","m":"{\"n\":\"36X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.3}]}"},{"c":"17.9,16777215,7,50,211467,1386301853692,138630185369292","m":"{\"n\":\"37X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"18.3,16777215,7,50,211467,1386301854174,138630185417490","m":"{\"n\":\"38X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.4}]}"},{"c":"18.7,16777215,7,50,211467,1386301854502,138630185450289","m":"{\"n\":\"39X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"18.9,16777215,7,50,211467,1386301855072,138630185507294","m":"{\"n\":\"40X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"19.1,16777215,7,50,211467,1386301855314,138630185531419","m":"{\"n\":\"41X\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":800,\"x\":80},\"c\":4,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"l\":0.2}]}"},{"c":"6,16777215,7,50,211467,1386301855788,138630185578814","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"1X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"6.4,16777215,7,50,211467,1386301856252,138630185625217","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"2X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"6.8,16777215,7,50,211467,1386301856712,138630185671218","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"3X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"7.2,16777215,7,50,211467,1386301856943,138630185694329","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"4X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"7.6,16777215,7,50,211467,1386301857405,138630185740532","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"5X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"8,16777215,7,50,211467,1386301857753,138630185775316","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"6X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"8.4,16777215,7,50,211467,1386301858204,138630185820412","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"7X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"8.8,16777215,7,50,211467,1386301858656,138630185865650","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"8X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"9.2,16777215,7,50,211467,1386301858968,138630185896820","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"9X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"9.5,16777215,7,50,211467,1386301859442,138630185944228","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"11X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"9.3,16777215,7,50,211467,1386301859788,138630185978859","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"10X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"9.9,16777215,7,50,211467,1386301860260,138630186026034","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"12X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"10.3,16777215,7,50,211467,1386301860739,138630186073999","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"13X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"10.7,16777215,7,50,211467,1386301861219,138630186121921","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"14X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"11.1,16777215,7,50,211467,1386301861459,138630186145993","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"15X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"11.4,16777215,7,50,211467,1386301861939,138630186193991","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"16X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"11.8,16777215,7,50,211467,1386301862419,138630186241988","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"17X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"12.2,16777215,7,50,211467,1386301862672,13863018626725","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"18X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"12.5,16777215,7,50,211467,1386301863140,13863018631409","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"19X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"12.8,16777215,7,50,211467,1386301863501,138630186350111","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"20X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"13,16777215,7,50,211467,1386301863980,138630186398013","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"21X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"13.2,16777215,7,50,211467,1386301864460,138630186446063","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"22X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"13.4,16777215,7,50,211467,1386301864726,138630186472665","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"23X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"13.7,16777215,7,50,211467,1386301865132,138630186513225","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"24X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"14.05,16777215,7,50,211467,1386301865610,138630186561027","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"25X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"14.4,16777215,7,50,211467,1386301866132,138630186613237","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"26X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"14.8,16777215,7,50,211467,1386301866361,138630186636138","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"27X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"15.2,16777215,7,50,211467,1386301866771,138630186677144","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"28X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"15.6,16777215,7,50,211467,1386301867222,138630186722245","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"29X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"15.8,16777215,7,50,211467,1386301867575,138630186757547","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"30X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"16,16777215,7,50,211467,1386301868050,138630186805049","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"31X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"16.2,16777215,7,50,211467,1386301868522,138630186852256","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"32X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"16.5,16777215,7,50,211467,1386301868780,138630186878058","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"33X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"16.9,16777215,7,50,211467,1386301869196,138630186919660","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"34X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"17.3,16777215,7,50,211467,1386301869608,138630186960864","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"35X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"17.6,16777215,7,50,211467,1386301870070,138630187007066","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"36X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"17.9,16777215,7,50,211467,1386301870529,138630187052971","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"37X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"18.3,16777215,7,50,211467,1386301870991,138630187099177","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"38X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"18.7,16777215,7,50,211467,1386301871234,138630187123478","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"39X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"18.9,16777215,7,50,211467,1386301871789,138630187178979","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"40X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"19.1,16777215,7,50,211467,1386301872027,138630187202780","m":"{\"f\":1.2,\"a\":0.2,\"t\":0,\"b\":false,\"p\":{\"y\":860,\"x\":38},\"c\":6,\"n\":\"41X\",\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"z\":[{\"f\":1,\"l\":0.2,\"g\":1}],\"e\":1.5}"},{"c":"5,16777215,7,20,211467,1386301872524,138630187252481","m":"{\"f\":1.2,\"a\":0,\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":-120},\"c\":3,\"n\":\"□\",\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,16777215,1,8,8,4,2,false,false]],\"b\":true},\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"e\":25}"},{"c":"5,16711680,7,20,211467,1386301872849,138630187284982","m":"{\"f\":1.2,\"a\":0,\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":-120},\"c\":3,\"n\":\"■\",\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,16777215,1,8,8,4,2,false,false]],\"b\":true},\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"e\":25}"},{"c":"5,16763904,7,20,211467,1386301873270,138630187327087","m":"{\"a\":0,\"t\":0,\"b\":false,\"c\":3,\"l\":0,\"w\":{\"b\":true,\"f\":\"楷体\"},\"e\":10,\"k\":0,\"f\":1.2,\"z\":[{\"c\":16763904,\"l\":0},{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"p\":{\"y\":56,\"x\":330},\"n\":\"■\"}"},{"c":"5,16763904,7,60,211467,1386301873669,138630187366988","m":"{\"n\":\"■\",\"a\":0,\"t\":0,\"b\":false,\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"p\":{\"y\":10,\"x\":600},\"c\":3,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,8,8,4,2,false,false]],\"b\":true},\"r\":45}"},{"c":"5,16711680,7,40,211467,1386301874149,138630187414993","m":"{\"n\":\"気\",\"a\":1,\"t\":0,\"b\":false,\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}],\"p\":{\"y\":60,\"x\":600},\"c\":3,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,2,2,4,2,false,false]],\"b\":false},\"r\":-10}"},{"c":"5,16777215,7,60,211467,1386301874609,138630187460954","m":"{\"n\":\"100%\",\"a\":1,\"t\":0,\"b\":false,\"p\":{\"y\":60,\"x\":800},\"c\":3,\"l\":0,\"w\":{\"f\":\"楷体\",\"l\":[[1,0,1,2,2,4,2,false,false]],\"b\":false},\"z\":[{\"l\":1,\"t\":1},{\"l\":13},{\"l\":1,\"t\":0}]}"}] diff --git a/test/synthetic/AcfunFormat.json b/test/synthetic/AcfunFormat.json new file mode 100644 index 0000000..500f108 --- /dev/null +++ b/test/synthetic/AcfunFormat.json @@ -0,0 +1,10 @@ +[ + { + "c":"1,16763904,5,25,guest,1315736602.0", + "m":"This is just some test." + }, + { + "c":"1,16777215,1,25,guest,1315736602.0", + "m":"Comment 2." + } +] diff --git a/test/synthetic/BilibiliFormat.xml b/test/synthetic/BilibiliFormat.xml new file mode 100644 index 0000000..86e1508 --- /dev/null +++ b/test/synthetic/BilibiliFormat.xml @@ -0,0 +1,4 @@ + + + 这是一个测试 + diff --git a/test/synthetic/CommonDanmakuFormat.json b/test/synthetic/CommonDanmakuFormat.json new file mode 100644 index 0000000..1270311 --- /dev/null +++ b/test/synthetic/CommonDanmakuFormat.json @@ -0,0 +1,27 @@ +[ + { + "mode": 1, + "text": "This is a normal scrolling comment. Color is white.", + "size": 25, + "color": 16777215, + "stime": 0 + }, + { + "mode": 1, + "text": "This is a normal scrolling comment. Size is large", + "size": 60, + "color": 16777215, + "stime": 100 + }, + { + "mode": 1, + "text": "This is a normal scrolling comment. Color is red.", + "size": 25, + "color": 16711680, + "stime": 200 + }, + { + "mode": 2, + "text": "This is a normal " + } +]