Explorar el Código

更新地图1

chelios hace 3 años
padre
commit
86d9971c7a

+ 85 - 85
assets/Script/game/fight/map/FMap.ts

@@ -6,7 +6,7 @@ const { ccclass, property } = cc._decorator;
 
 @ccclass
 export default class FMap extends cc.Component {
-    
+
     @property(cc.Node)
     mSprites: cc.Node = null;//精灵层
 
@@ -25,7 +25,7 @@ export default class FMap extends cc.Component {
     @property(cc.TiledLayer)
     mColliderTiled: cc.TiledLayer = null;//地图碰撞层
 
-    public ff:FF;
+    public ff: FF;
     shoot: cc.Vec2 = cc.v2();//摄像机位置
 
     public mCamera: cc.Camera = null//地图上的摄像机
@@ -33,12 +33,12 @@ export default class FMap extends cc.Component {
     /**
      * 所有房间
      */
-    public rooms:Array<cc.Node> = null
+    public rooms: Array<cc.Node> = null
 
     private midWidth = 360;
     private midHeidht = 640;
     //当前所处房间
-    private curRoom:cc.Node = null;
+    private curRoom: cc.Node = null;
 
     /**
      * 单元格尺寸
@@ -46,8 +46,8 @@ export default class FMap extends cc.Component {
     private cellSize = 64;
 
     onLoad() {
-        this.midWidth = cc.winSize.width/2;
-        this.midHeidht = cc.winSize.height/2;
+        this.midWidth = cc.winSize.width / 2;
+        this.midHeidht = cc.winSize.height / 2;
 
         this.rooms = this.mRooms.children
 
@@ -59,7 +59,7 @@ export default class FMap extends cc.Component {
     /**
      * 添加碰撞
      */
-    private addCollider(){
+    private addCollider() {
         //地图边界碰撞墙
         // let width   = this.node.width;
         // let height  = this.node.height;
@@ -72,9 +72,9 @@ export default class FMap extends cc.Component {
         // this._addBound(node, 0, height/2, 20, height);
         // this._addBound(node, width, height/2, 20, height);
         // node.parent = this.node;
-        
+
         //地形碰撞处理
-        if(this.mColliderTiled){
+        if (this.mColliderTiled) {
             let size = this.mColliderTiled.getLayerSize();
             for (let i = size.height - 1; i >= 0; i--) {
                 let count = 0;
@@ -82,54 +82,54 @@ export default class FMap extends cc.Component {
                 let startX = 0;
                 let startY = size.height - i - 1;
                 for (let j = 0; j < size.width; j++) {
-                    let t = this.mColliderTiled.getTileGIDAt(j,i);
-                    if(t > 0){
-                        if(count <= 0){
+                    let t = this.mColliderTiled.getTileGIDAt(j, i);
+                    if (t > 0) {
+                        if (count <= 0) {
                             startX = j;
                         }
-                        count ++
+                        count++
                         isEnd = false;
-                    }else{
+                    } else {
                         isEnd = true
                     }
-                    if(count > 0 && isEnd){
+                    if (count > 0 && isEnd) {
                         isEnd = true;
                         let node = new cc.Node();
-                        node.x = startX*this.cellSize
-                        node.y = startY*this.cellSize
+                        node.x = startX * this.cellSize
+                        node.y = startY * this.cellSize
                         node.group = 'map'
                         let body = node.addComponent(cc.RigidBody);
                         body.type = cc.RigidBodyType.Static;
-                        let cwidth = this.cellSize*count
-                        this._addBound(node,cwidth/2,32,cwidth,this.cellSize);
+                        let cwidth = this.cellSize * count
+                        this._addBound(node, cwidth / 2, 32, cwidth, this.cellSize);
                         node.parent = this.node;
 
                         count = 0;
                     }
                 }
-                if(count > 0){
+                if (count > 0) {
                     let node = new cc.Node();
-                    node.x = startX*this.cellSize
-                    node.y = startY*this.cellSize
+                    node.x = startX * this.cellSize
+                    node.y = startY * this.cellSize
                     node.group = 'map'
                     let body = node.addComponent(cc.RigidBody);
                     body.type = cc.RigidBodyType.Static;
-                    let cwidth = this.cellSize*count
-                    this._addBound(node,cwidth/2,32,cwidth,this.cellSize);
+                    let cwidth = this.cellSize * count
+                    this._addBound(node, cwidth / 2, 32, cwidth, this.cellSize);
                     node.parent = this.node;
                 }
-                
+
             }
 
         }
     }
 
 
-    
-    private _addBound (node, x, y, width, height) {
+
+    private _addBound(node, x, y, width, height) {
         // cc.log('nodeXY:',node.x,node.y)
         // cc.log(x,y,width,height)
-        let collider:cc.PhysicsBoxCollider = node.addComponent(cc.PhysicsBoxCollider);
+        let collider: cc.PhysicsBoxCollider = node.addComponent(cc.PhysicsBoxCollider);
         collider.offset.x = x;
         collider.offset.y = y;
         collider.size.width = width
@@ -140,49 +140,49 @@ export default class FMap extends cc.Component {
     /**
      * 获取当前所在房间
      */
-    private getRoom(){
+    private getRoom() {
         for (let i = 0; i < this.rooms.length; i++) {
             const element = this.rooms[i];
-            if(this.inRoom(element)){
+            if (this.inRoom(element)) {
                 return element;
             }
         }
         return null;
     }
 
-    private inRoom(node:cc.Node):boolean{
-        if (this.shoot.x <= node.x 
+    private inRoom(node: cc.Node): boolean {
+        if (this.shoot.x <= node.x
             || this.shoot.y <= node.y
             || this.shoot.x >= node.x + node.width
             || this.shoot.y >= node.y + node.height
-            ) {
+        ) {
             return false;
         }
         return true;
     }
-    
-    
-    public setFF(ff:FF){
+
+
+    public setFF(ff: FF) {
         this.ff = ff;
         let nodes = this.mSprites.children;
         nodes.forEach(node => {
-            if(this.checkIn(node.name)){
+            if (this.checkIn(node.name)) {
                 node.destroy();
             }
         });
-        if(this.mBgm){
+        if (this.mBgm) {
             ff.main.playMusicByClip(this.mBgm);
         }
-        
+
     }
-    public checkIn(name:string):boolean{
+    public checkIn(name: string): boolean {
         let stage = this.ff.main.player.stage;
         return stage.element.indexOf(name) >= 0;
     }
     /**
      * 初始化摄像机位置
      */
-    public initCamera(){
+    public initCamera() {
         let winSize = cc.winSize;
         let targetPos = this.shoot;//摄像机的目标位置
         let targetX = targetPos.x - this.midWidth;
@@ -206,16 +206,16 @@ export default class FMap extends cc.Component {
             }
         }
 
-        if(this.mGuide){
+        if (this.mGuide) {
             this.mGuide.ff = this.ff;
             this.mGuide.run();
         }
     }
-    private pauseFF(){
+    private pauseFF() {
         this.ff.mainSprite.setPause(true);
         cc.tween(this).sequence(
             cc.delayTime(0.6),
-            cc.callFunc(()=>{
+            cc.callFunc(() => {
                 this.ff.mainSprite.setPause(false);
             })
         ).start()
@@ -224,15 +224,15 @@ export default class FMap extends cc.Component {
         this.spriteOrder();
         this.ff.mMu.x = this.mCamera.node.x + this.midWidth
         this.ff.mMu.y = this.mCamera.node.y + this.midHeidht
-        if(!this.ff.lockCamera){
+        if (!this.ff.lockCamera) {
             return;
         }
         let room = this.getRoom();
-        if(!room){
+        if (!room) {
             return;
         }
-        if(this.curRoom != room){
-            if(this.curRoom != null){
+        if (this.curRoom != room) {
+            if (this.curRoom != null) {
                 this.pauseFF();
             }
             this.curRoom = room;
@@ -240,12 +240,12 @@ export default class FMap extends cc.Component {
 
         let winSize = cc.winSize;
         let targetPos = this.shoot;//摄像机的目标位置
-        if(room.width > winSize.width){
+        if (room.width > winSize.width) {
             let targetX = targetPos.x - this.midWidth;
             let sideWidth = room.x + room.width - winSize.width;
-            if(targetX < room.x){
+            if (targetX < room.x) {
                 targetX = room.x
-            }else if(targetX > sideWidth){
+            } else if (targetX > sideWidth) {
                 targetX = sideWidth
             }
             if (targetX != this.mCamera.node.x) {
@@ -254,20 +254,20 @@ export default class FMap extends cc.Component {
                     this.mCamera.node.x = targetX;
                 } else {
                     let dx = offsetx / 10;
-                if(Math.abs(dx) < 5){
-                        if(dx > 0){
+                    if (Math.abs(dx) < 5) {
+                        if (dx > 0) {
                             dx = 5;
-                        }else{
+                        } else {
                             dx = -5;
                         }
                     }
-                    dx = dx*(1+dt)
+                    dx = dx * (1 + dt)
                     this.mCamera.node.x += dx;
                 }
             }
-        }else{
+        } else {
             let targetX = room.x - this.midWidth;
-            if(targetX < room.x){
+            if (targetX < room.x) {
                 targetX = room.x
             }
             if (targetX != this.mCamera.node.x) {
@@ -276,25 +276,25 @@ export default class FMap extends cc.Component {
                     this.mCamera.node.x = targetX;
                 } else {
                     let dx = offsetx / 10;
-                if(Math.abs(dx) < 5){
-                        if(dx > 0){
+                    if (Math.abs(dx) < 5) {
+                        if (dx > 0) {
                             dx = 5;
-                        }else{
+                        } else {
                             dx = -5;
                         }
                     }
-                    dx = dx*(1+dt)
+                    dx = dx * (1 + dt)
                     this.mCamera.node.x += dx;
                 }
             }
 
         }
-        if(room.height > winSize.height){
+        if (room.height > winSize.height) {
             let targetY = targetPos.y - this.midHeidht;
             let sideHeight = room.y + room.height - winSize.height;
-            if(targetY < room.y){
+            if (targetY < room.y) {
                 targetY = room.y
-            }else if(targetY > sideHeight){
+            } else if (targetY > sideHeight) {
                 targetY = sideHeight
             }
             if (targetY != this.mCamera.node.y) {
@@ -303,20 +303,20 @@ export default class FMap extends cc.Component {
                     this.mCamera.node.y = targetY;
                 } else {
                     let dy = offsety / 10;
-                    if(Math.abs(dy) < 5){
-                        if(dy > 0){
+                    if (Math.abs(dy) < 5) {
+                        if (dy > 0) {
                             dy = 5;
-                        }else{
+                        } else {
                             dy = -5;
                         }
                     }
-                    dy = dy*(1+dt)
+                    dy = dy * (1 + dt)
                     this.mCamera.node.y += dy;
                 }
             }
-        }else{
+        } else {
             let targetY = room.y - this.midHeidht;
-            if(targetY < room.y){
+            if (targetY < room.y) {
                 targetY = room.y
             }
             if (targetY != this.mCamera.node.y) {
@@ -325,14 +325,14 @@ export default class FMap extends cc.Component {
                     this.mCamera.node.y = targetY;
                 } else {
                     let dy = offsety / 10;
-                    if(Math.abs(dy) < 5){
-                        if(dy > 0){
+                    if (Math.abs(dy) < 5) {
+                        if (dy > 0) {
                             dy = 5;
-                        }else{
+                        } else {
                             dy = -5;
                         }
                     }
-                    dy = dy*(1+dt)
+                    dy = dy * (1 + dt)
                     this.mCamera.node.y += dy;
                 }
             }
@@ -345,14 +345,14 @@ export default class FMap extends cc.Component {
         let children = this.mSprites.children;
         for (let i = 0; i < children.length; i++) {
             const e = children[i];
-            if(e.zIndex == 9999 || e.zIndex == -9999){
-            }else{
+            if (e.zIndex == 9999 || e.zIndex == -9999) {
+            } else {
                 let zIndex = (cc.macro.MAX_ZINDEX - e.y) / 10;
                 e.zIndex = zIndex;
             }
         }
     }
-    public addSprite(sprite:FSprite) {
+    public addSprite(sprite: FSprite) {
         sprite.ff = this.ff;
         sprite.map = this;
         this.mSprites.addChild(sprite.node);
@@ -360,8 +360,8 @@ export default class FMap extends cc.Component {
     public setCamera(mCamera: cc.Camera) {
         this.mCamera = mCamera;
     }
-    public updateShoot(x, y):boolean {
-        if(this.shoot.x == x && this.shoot.y == y){
+    public updateShoot(x, y): boolean {
+        if (this.shoot.x == x && this.shoot.y == y) {
             return false;
         }
         this.shoot.x = x;
@@ -374,7 +374,7 @@ export default class FMap extends cc.Component {
     /**
      * 当前摄像机是否停止
      */
-    public cameraStop():boolean{
+    public cameraStop(): boolean {
 
         return false;
     }
@@ -383,14 +383,14 @@ export default class FMap extends cc.Component {
      * @param x 
      * @param y 
      */
-    public checkCollision(x,y){
+    public checkCollision(x, y) {
         let size = this.mColliderTiled.getLayerSize();
-        let dx = x/64
-        let dy = size.height - y/64
-        if(dy > size.height){
+        let dx = x / 64
+        let dy = size.height - y / 64
+        if (dy > size.height) {
             dy = size.height - 1
         }
-        let t = this.mColliderTiled.getTileGIDAt(dx,dy);
+        let t = this.mColliderTiled.getTileGIDAt(dx, dy);
         return t > 0
     }
 

+ 2 - 2
assets/res/effect/Follow_spot/Follow_spot.mtl

@@ -14,13 +14,13 @@
         "USE_ALPHA_TEST": true
       },
       "props": {
-        "feather": 0.4,
+        "feather": 0.1,
         "size": {
           "__type__": "cc.Vec2",
           "x": 1134,
           "y": 750
         },
-        "radius": 0.35,
+        "radius": 0.2,
         "center": {
           "__type__": "cc.Vec2",
           "x": 0.5,

La diferencia del archivo ha sido suprimido porque es demasiado grande
+ 2438 - 2329
assets/resources/prefab/map/map1.prefab


+ 255 - 201
assets/resources/test/1.1(new).tmx

@@ -1,228 +1,282 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<map version="1.5" tiledversion="1.7.0" orientation="orthogonal" renderorder="right-down" width="75" height="50" tilewidth="32" tileheight="32" infinite="0" nextlayerid="6" nextobjectid="1">
+<map version="1.2" tiledversion="1.3.1" orientation="orthogonal" renderorder="right-down" compressionlevel="0" width="75" height="50" tilewidth="32" tileheight="32" infinite="0" nextlayerid="15" nextobjectid="1">
  <editorsettings>
   <export target="1_01.tmx" format="tmx"/>
  </editorsettings>
  <tileset firstgid="1" name="1_01" tilewidth="32" tileheight="32" tilecount="1024" columns="32">
   <image source="1_01.png" width="1024" height="1024"/>
  </tileset>
- <layer id="1" name="tuhei" width="75" height="50">
+ <layer id="1" name="ditu" width="75" height="50">
   <data encoding="csv">
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,0,0,0,0,0,0,
-0,0,0,0,0,0,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,0,0,0,0,0,0,
-0,0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,
-0,0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,
-0,0,0,0,0,0,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,0,0,0,0,0,0,0,0,
-0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,0,0,0,0,0,0,0,0,
-0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,0,0,0,0,0,0,0,0,
-0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,0,0,0,0,0,0,0,0,
-0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,0,0,0,0,0,0,0,0,
-0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,0,0,0,0,0,0,0,0,
-0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,77,77,0,0,0,0,0,0,0,0,
-0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,
-0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,
-0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,77,77,77,77,77,77,77,77,77,77,77,77,77,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,645,645,0,489,489,489,489,645,645,645,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,489,489,489,489,489,645,489,489,489,489,489,489,489,489,489,489,489,489,489,645,645,0,0,0,0,0,645,645,645,645,645,645,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,489,645,645,645,645,645,645,645,645,645,645,645,645,645,645,489,489,489,489,645,645,0,0,0,0,0,645,645,645,645,645,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,489,645,645,645,645,645,406,407,408,645,645,645,645,645,645,645,645,645,645,645,645,485,610,611,610,611,486,645,645,645,645,645,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,489,645,645,645,645,645,438,439,440,645,645,645,645,406,407,408,645,406,407,408,645,580,642,643,610,611,673,674,675,611,486,645,645,645,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,645,645,645,645,613,614,470,471,472,614,613,614,645,438,439,440,645,438,439,440,645,612,325,325,325,325,705,706,707,643,518,645,645,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,0,0,645,485,674,675,674,675,674,675,674,675,486,470,471,472,613,470,471,472,614,580,5,6,7,8,9,10,195,195,577,645,645,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,0,0,645,580,706,707,706,707,706,707,706,707,673,674,675,610,611,674,675,610,611,676,37,38,39,40,174,42,324,329,609,645,645,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,0,0,645,612,1,2,3,4,1,2,3,4,705,706,707,642,643,706,707,642,643,708,69,70,138,139,73,74,325,329,641,645,645,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,0,0,645,644,138,139,35,36,144,145,35,36,37,142,39,40,37,299,300,300,300,300,300,300,300,300,301,106,325,329,518,645,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,0,0,0,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,0,0,645,612,65,66,67,174,176,177,67,68,173,70,71,72,69,363,364,364,364,364,364,332,332,332,333,10,545,546,550,645,489,489,489,489,489,489,489,645,0,645,645,645,645,645,645,645,645,645,645,645,645,645,0,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,406,407,408,549,581,582,581,582,581,582,582,548,101,102,103,104,101,102,101,102,103,104,176,304,332,332,365,42,577,645,645,645,489,489,489,489,489,489,489,645,0,645,406,407,408,645,645,406,407,408,645,645,645,645,0,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,438,439,440,645,645,645,645,645,645,645,645,580,100,101,102,103,104,100,261,262,261,262,69,70,331,333,73,74,609,645,645,645,645,489,489,489,489,489,489,645,0,645,438,439,440,645,645,438,439,440,645,645,645,645,0,0,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+0,470,471,472,645,645,645,645,645,645,645,645,517,329,329,545,546,547,548,293,294,293,294,101,102,331,333,105,106,641,645,645,645,645,489,489,645,645,645,645,645,645,645,470,471,472,645,645,470,471,472,485,610,611,486,0,0,0,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+0,0,0,645,645,645,645,645,645,645,645,645,549,581,582,550,645,645,549,581,582,546,547,547,548,331,333,0,0,577,645,645,645,645,645,645,645,645,645,645,485,675,610,611,674,675,674,675,610,611,675,676,642,643,518,0,0,0,489,489,0,0,489,489,489,489,0,0,0,0,0,0,0,489,489,
+0,0,0,645,645,645,613,614,613,614,613,614,613,614,645,645,645,645,645,645,645,645,485,675,676,331,333,291,325,673,674,486,645,645,645,645,645,485,610,611,676,707,642,643,706,707,706,707,642,643,707,708,260,260,577,0,0,0,0,645,485,610,611,610,611,674,675,674,675,674,675,486,0,0,489,
+0,645,645,645,645,485,610,611,610,611,610,611,610,611,486,645,645,645,645,645,645,645,517,707,708,331,333,291,325,705,706,518,645,645,645,645,645,517,642,329,708,260,9,10,11,12,9,144,145,6,7,8,260,260,609,0,0,0,0,645,612,642,643,642,643,706,707,706,707,706,707,518,0,489,489,
+0,645,645,645,645,517,41,42,642,643,642,643,642,643,673,611,486,613,614,614,613,614,644,329,105,363,365,291,325,325,291,641,645,645,645,485,610,676,325,325,325,325,41,141,43,44,41,176,177,38,39,40,260,260,641,0,0,645,645,0,644,261,261,0,0,0,0,261,261,261,261,577,645,489,489,
+645,645,645,645,645,580,73,74,0,0,0,0,73,74,642,643,673,674,610,611,674,675,676,329,105,73,74,325,325,0,0,673,674,675,611,676,642,329,325,325,325,325,73,74,75,76,73,74,75,70,71,72,260,260,673,674,674,675,610,611,676,261,1,2,142,144,145,6,7,261,261,609,0,645,489,
+645,645,645,645,645,612,1,2,3,4,1,2,3,142,73,74,705,706,642,643,706,707,708,105,105,105,106,325,325,291,291,705,706,707,643,708,259,259,0,0,0,0,105,106,138,299,300,300,300,301,103,104,260,260,705,706,706,707,642,643,708,261,33,173,35,176,177,38,39,0,0,641,0,645,489,
+645,645,645,645,645,580,33,34,35,36,33,34,173,36,37,38,39,40,37,38,144,299,300,300,301,174,37,38,39,138,139,38,39,40,37,38,299,300,300,300,300,300,300,301,11,331,332,332,332,333,7,8,299,300,300,300,301,6,144,145,5,6,65,66,67,68,174,70,71,261,261,577,0,0,489,
+645,645,645,645,645,612,65,66,174,68,65,66,67,68,69,70,71,72,174,70,176,363,364,364,365,72,69,70,71,72,69,70,71,72,69,70,363,364,364,364,364,364,364,365,43,331,332,332,332,333,39,40,363,364,364,364,365,38,176,177,37,38,97,98,99,100,101,102,103,261,261,609,0,645,489,
+645,645,645,645,645,644,97,98,99,100,97,98,99,100,545,581,582,581,582,581,582,581,582,548,69,70,69,70,69,70,69,70,545,581,582,581,548,69,70,545,582,548,9,144,145,331,332,332,332,333,71,72,545,546,547,546,547,546,547,546,547,546,548,9,10,138,139,11,12,261,261,641,0,645,489,
+645,645,645,645,645,549,546,547,548,293,294,545,582,582,550,0,0,0,645,645,0,0,0,580,101,102,101,102,69,70,69,70,577,0,0,0,580,329,329,609,645,580,41,176,177,363,364,364,364,365,103,104,609,645,0,0,0,0,645,645,645,645,580,41,42,43,44,43,44,261,261,577,0,0,489,
+0,0,0,0,0,0,645,645,580,329,329,577,0,0,645,0,0,0,0,0,0,0,0,549,581,582,581,548,329,329,329,329,609,489,0,0,612,329,329,641,0,612,73,74,75,76,73,74,75,70,71,72,641,645,645,645,645,645,645,0,0,645,549,582,548,102,103,293,293,293,329,609,0,489,489,
+0,0,0,0,0,0,645,645,580,329,329,609,0,0,0,0,0,0,0,0,0,0,645,0,0,0,0,549,581,582,581,489,489,489,489,0,549,581,582,550,0,517,105,106,107,108,105,106,107,102,103,141,518,645,645,0,0,489,489,489,489,489,485,70,71,7,8,293,0,545,582,550,489,489,489,
+0,0,0,0,0,645,645,645,549,581,581,550,0,0,485,610,611,610,611,674,675,486,645,645,489,489,0,0,0,0,0,489,489,0,0,0,645,645,0,0,0,549,582,581,582,581,582,581,581,582,581,582,550,645,0,0,0,489,489,489,489,489,580,102,103,11,12,293,329,577,0,0,489,489,489,
+489,0,485,611,610,611,610,611,610,611,674,675,674,675,676,642,643,642,643,706,707,609,645,645,489,489,489,489,489,489,489,489,489,0,0,0,645,645,645,0,0,0,645,645,645,645,645,645,645,645,645,0,0,0,0,0,0,489,489,489,489,0,549,582,548,144,145,545,582,550,0,489,489,489,489,
+489,0,580,643,642,643,642,643,642,643,706,707,706,707,708,0,0,0,0,0,0,641,0,645,489,489,489,489,489,489,489,489,489,0,485,610,611,610,611,610,611,486,645,645,645,645,645,645,645,645,645,0,0,0,489,489,489,489,489,489,489,0,0,0,580,176,177,577,0,0,0,489,489,489,489,
+489,0,612,0,0,1,2,3,4,5,6,7,8,3,4,5,6,7,8,545,581,550,0,489,489,0,0,489,489,489,489,0,0,0,644,642,643,642,643,642,643,673,674,675,611,486,0,0,645,645,0,0,0,0,0,0,0,489,489,489,489,0,0,0,580,107,108,609,0,0,0,489,489,489,489,
+489,0,644,0,0,33,34,35,174,37,144,145,40,35,36,139,140,39,40,609,0,0,0,0,0,0,0,0,0,0,0,0,485,611,676,0,0,0,0,0,0,705,706,707,643,518,645,645,645,0,0,0,645,645,0,0,0,0,0,0,0,0,0,0,612,11,12,641,0,0,0,489,489,489,489,
+489,0,549,582,548,65,66,144,145,69,176,177,72,67,68,69,70,71,72,641,0,0,0,0,0,0,0,0,0,0,0,0,612,643,708,5,6,7,2,3,4,1,2,3,4,673,611,486,0,485,610,611,486,645,0,0,0,0,0,0,0,0,0,0,644,43,44,673,674,674,675,489,489,489,489,
+0,0,0,645,580,97,98,299,300,301,102,103,299,300,301,101,102,103,104,673,674,674,675,486,645,645,645,645,0,0,485,610,676,329,329,37,144,145,34,35,36,33,34,35,36,705,643,673,675,676,642,643,673,675,675,486,645,645,485,674,675,675,674,675,676,75,76,705,706,706,707,489,489,489,489,
+0,0,485,610,676,1,2,331,332,332,300,300,332,332,333,144,145,7,8,705,706,706,707,673,674,675,674,675,674,675,676,642,708,329,0,69,176,177,66,67,173,65,66,67,68,0,0,705,707,708,0,0,705,707,707,673,610,611,676,70,71,707,706,707,708,107,142,0,0,0,0,489,489,489,489,
+489,0,612,642,708,33,34,363,364,332,364,332,332,332,333,176,177,39,40,0,0,0,0,705,706,707,706,707,706,707,708,0,0,329,0,101,102,299,300,300,300,300,301,145,100,1,2,3,4,2,3,4,144,145,4,705,642,643,708,102,103,0,0,0,0,173,12,0,329,0,329,609,489,489,489,
+489,489,644,0,0,65,66,67,68,235,174,331,332,332,333,69,70,71,72,10,11,12,9,10,11,12,9,10,11,12,5,6,7,8,43,5,6,331,332,332,332,332,332,300,300,300,300,300,300,300,301,36,176,177,36,69,203,300,300,300,300,300,300,300,300,301,44,545,581,581,582,550,489,489,489,
+489,0,549,582,548,97,98,299,300,332,300,332,332,332,333,139,140,299,300,300,300,300,300,300,300,300,301,42,43,144,145,38,39,40,43,37,203,332,332,332,332,332,332,332,364,364,364,364,364,364,365,68,66,67,68,101,363,364,364,364,364,364,364,364,364,365,76,577,0,0,0,0,489,489,489,
+489,0,0,645,612,1,2,331,332,332,332,332,332,332,333,5,6,363,364,364,364,364,364,364,364,364,365,74,75,176,177,70,174,72,43,69,331,332,332,332,332,332,332,333,68,97,98,99,100,176,177,100,98,99,100,545,581,582,548,68,69,70,71,68,69,107,108,577,0,0,0,489,489,489,489,
+489,0,0,645,644,33,173,363,364,332,332,332,332,332,333,37,38,138,139,106,107,108,105,173,107,108,105,106,107,108,101,102,103,104,43,101,331,332,332,332,332,332,364,365,100,69,70,545,582,548,292,293,545,581,582,550,0,0,580,68,69,70,71,68,69,70,71,609,0,0,0,489,489,489,489,
+489,0,0,0,612,65,66,67,68,331,332,332,332,332,332,300,301,71,72,71,72,71,72,545,581,582,581,582,581,581,582,582,548,67,68,5,363,364,364,332,332,333,6,7,8,101,102,577,0,612,324,325,577,0,0,0,0,0,612,329,329,329,329,329,101,102,329,641,0,0,489,489,489,489,489,
+489,489,0,0,644,97,98,99,100,363,364,364,364,364,332,332,333,103,104,103,104,103,104,577,0,0,0,0,0,0,0,0,580,99,100,37,38,39,174,363,364,365,38,39,40,69,70,609,0,644,0,0,518,0,0,0,0,0,549,581,582,581,582,581,582,581,582,550,0,0,489,489,489,489,489,
+489,0,0,0,580,1,2,144,145,5,6,7,8,3,363,364,365,7,8,0,0,0,0,609,0,0,0,0,0,0,0,0,612,329,0,69,70,71,70,69,70,67,68,69,70,101,102,577,0,549,581,582,550,0,0,0,489,489,489,489,0,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,489,0,0,612,33,34,176,177,37,38,39,174,35,36,37,38,39,40,545,581,581,582,0,0,0,0,0,0,0,0,0,549,582,548,99,100,101,102,101,102,99,100,101,102,545,581,550,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,489,0,0,644,65,66,67,68,69,70,71,72,67,68,69,70,71,72,577,0,0,0,0,0,489,489,489,489,489,489,489,0,0,612,0,0,0,0,545,581,582,548,0,0,577,0,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,489,0,0,517,97,98,99,100,101,102,103,104,99,100,101,102,103,104,518,0,0,0,0,489,489,489,489,489,489,489,489,0,0,549,581,582,581,582,550,0,0,549,581,582,550,0,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,489,0,0,549,582,581,582,581,582,548,5,6,5,6,5,6,545,581,550,0,0,0,489,489,489,489,489,489,489,489,489,0,0,0,0,0,0,0,0,0,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,489,489,489,0,0,0,0,0,0,580,37,38,37,38,37,38,577,0,0,0,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,489,489,489,489,489,489,489,0,0,517,0,0,0,0,0,0,609,0,0,0,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,489,489,489,0,0,0,489,489,0,549,581,582,581,582,581,582,550,0,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,
+489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489,489
 </data>
  </layer>
- <layer id="2" name="dibiao" width="75" height="50">
+ <layer id="6" name="waijing" width="75" height="50">
   <data encoding="csv">
 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,37,69,5,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,5,6,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,37,38,39,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,41,42,43,9,10,11,12,43,44,41,42,43,41,105,41,42,43,44,5,69,70,71,72,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,73,74,75,41,42,43,44,75,76,9,10,11,9,10,73,74,75,76,37,101,102,103,104,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,101,102,103,104,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,101,102,103,104,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,101,101,102,103,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,9,9,9,9,10,11,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,41,9,9,41,9,10,11,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,9,9,10,11,12,11,12,12,44,0,0,0,0,0,0,0,0,0,0,0,5,5,6,7,8,8,0,0,0,0,0,0,
-0,0,0,0,0,0,5,6,7,8,37,38,39,40,0,0,0,0,0,0,0,0,0,0,0,102,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,41,9,9,10,11,12,12,44,76,0,0,0,0,0,0,0,0,0,0,0,5,5,5,6,7,8,0,0,0,0,0,0,
-0,0,0,0,0,0,5,5,6,7,69,70,71,72,73,74,75,76,41,73,74,41,9,10,11,12,9,10,11,12,9,10,11,12,44,9,10,73,73,74,75,76,9,9,10,9,9,10,11,12,76,108,73,41,73,73,73,41,41,9,10,11,12,5,5,6,7,8,7,0,0,0,0,0,0,
-0,0,0,0,0,0,37,5,5,5,101,102,103,104,105,106,107,108,73,105,106,9,41,42,43,44,41,42,43,44,41,42,43,44,76,41,42,105,105,106,107,108,9,9,9,41,9,9,10,11,12,12,105,73,105,105,105,73,73,41,42,43,44,37,5,6,7,8,8,0,0,0,0,0,0,
-0,0,0,0,0,0,69,37,37,37,101,102,103,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,41,41,73,41,41,42,43,44,12,0,0,0,0,0,0,0,0,0,0,0,69,37,38,39,40,40,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,73,73,105,73,73,74,75,76,44,0,0,0,0,0,0,0,0,0,0,0,101,69,70,71,72,72,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,105,105,105,105,105,106,107,108,76,0,0,0,0,0,0,0,0,0,0,0,0,0,102,103,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105,106,107,108,105,105,106,107,108,108,0,0,0,0,0,0,0,0,0,0,0,0,0,7,8,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,40,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,39,0,0,0,0,0,0,0,0,
-0,0,0,0,0,9,9,10,11,12,9,10,11,12,9,9,10,11,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,8,0,0,0,0,0,0,0,0,
-0,0,0,0,0,41,9,10,11,12,9,10,11,12,12,10,11,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,40,0,0,0,0,0,0,0,0,
-0,0,0,0,0,73,41,9,10,11,12,12,12,12,12,12,12,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,75,41,42,73,74,73,74,75,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,
-0,0,0,0,0,105,73,9,9,10,11,12,44,44,44,44,44,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,73,74,75,9,10,11,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,39,0,0,0,0,0,0,0,0,
-0,0,0,0,0,105,105,41,9,10,11,12,76,76,76,76,76,108,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,5,5,6,7,41,42,43,44,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,71,0,0,0,0,0,0,0,0,
-0,0,0,0,0,9,9,10,11,12,12,12,108,108,108,108,108,108,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,6,7,8,7,73,10,75,76,40,5,5,5,5,6,7,8,6,7,8,0,0,0,0,0,0,0,0,0,0,102,103,0,0,0,0,0,0,0,0,
-0,0,0,0,0,41,9,9,10,11,12,44,108,108,105,106,107,108,76,37,37,37,37,5,37,37,37,37,69,37,5,6,7,8,43,5,5,5,5,6,7,8,72,10,72,37,37,37,37,38,39,40,38,39,40,1,2,3,4,3,4,66,67,68,2,3,4,0,0,0,0,0,0,0,0,
-0,0,0,0,0,73,41,9,10,11,12,76,108,105,106,107,108,76,108,69,69,69,69,37,69,69,69,69,101,69,37,38,39,40,43,5,5,5,6,7,8,6,7,8,8,69,69,69,69,70,71,72,70,71,72,33,34,35,36,3,4,98,99,100,34,35,36,0,0,0,0,0,0,0,0,
-0,0,0,0,0,105,73,9,9,10,11,12,108,105,106,107,108,108,108,101,101,101,101,69,101,101,101,101,101,101,69,70,71,72,43,5,6,5,5,6,7,8,7,10,8,101,101,101,101,102,103,104,102,103,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,105,9,9,10,11,9,9,9,9,9,9,10,11,12,102,103,104,104,101,101,102,103,104,104,101,101,102,103,104,43,5,5,37,5,5,5,10,6,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,9,9,9,9,9,41,41,41,9,9,10,11,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,37,69,37,37,37,37,38,39,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,41,41,41,41,41,73,73,9,9,9,9,10,11,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,69,101,69,69,69,69,70,71,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,73,73,73,73,73,105,105,41,41,9,10,11,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,105,105,105,105,105,105,106,73,73,41,42,43,44,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,105,106,107,105,106,105,105,105,105,73,74,75,76,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,105,106,107,105,106,107,108,105,106,105,106,107,108,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,509,510,385,386,389,390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,651,0,541,542,417,418,421,422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,379,380,0,0,377,378,0,479,480,449,450,453,454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,389,390,0,0,0,0,389,390,0,411,412,0,0,409,410,0,511,512,0,0,0,0,0,0,391,392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,421,422,481,482,483,484,421,422,0,443,444,0,0,441,442,0,543,544,0,0,0,0,0,0,423,424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,453,454,513,514,515,516,453,454,475,475,476,0,0,473,474,0,0,0,0,0,0,0,0,0,455,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,487,488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,489,0,491,556,557,558,559,560,0,0,479,480,385,386,481,482,483,484,387,388,387,388,0,0,0,0,0,0,445,446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+489,489,489,0,588,589,590,591,592,0,0,511,512,417,418,513,514,515,516,419,420,419,420,0,0,0,0,0,0,477,478,0,0,0,0,0,0,0,0,0,0,0,0,377,378,377,378,0,379,380,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+489,489,489,0,620,621,622,623,624,0,0,543,544,449,450,0,0,0,0,451,452,451,452,0,0,0,0,387,388,383,384,0,0,0,0,0,0,0,0,0,0,0,0,409,410,409,410,0,411,412,413,0,387,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+489,489,0,0,652,653,654,655,656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,420,415,416,0,0,0,0,0,0,0,0,0,0,0,0,441,442,441,442,0,443,444,0,0,419,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+489,489,0,0,684,685,686,687,688,0,0,0,0,0,0,0,0,0,0,0,0,479,480,0,0,0,0,451,452,447,448,0,0,0,0,0,0,0,387,388,385,386,0,473,474,473,474,0,475,476,0,0,451,452,0,0,0,0,0,0,0,0,0,0,0,0,0,387,388,385,386,0,0,0,0,
+489,489,0,0,0,0,389,390,0,0,0,0,385,386,0,0,379,380,381,377,378,511,512,391,392,0,0,391,392,0,0,379,380,381,377,378,0,0,419,420,417,418,0,0,0,0,0,0,0,0,0,0,391,392,0,377,378,0,379,380,381,391,392,481,482,483,484,419,420,417,418,0,0,0,0,
+489,489,0,0,0,0,421,422,481,482,483,484,417,418,387,388,411,412,413,409,410,543,544,423,424,0,0,423,424,387,388,411,412,413,409,410,385,386,451,452,449,450,0,0,0,0,0,0,0,0,0,0,423,424,0,409,410,0,411,412,413,423,424,513,514,515,516,451,452,449,450,0,0,0,0,
+489,489,489,0,0,0,453,454,513,514,515,516,449,450,419,420,443,444,0,441,442,0,0,455,456,0,0,455,456,419,420,443,444,0,441,442,417,418,481,482,483,484,0,0,0,0,0,0,0,0,0,0,455,456,0,441,442,0,443,444,0,455,456,0,0,0,0,0,0,387,388,0,0,0,0,
+489,489,489,0,0,0,0,0,0,0,0,0,0,0,451,452,475,476,0,473,474,0,0,487,488,0,0,487,488,451,452,475,476,0,473,474,449,450,513,514,515,516,0,0,0,0,0,0,0,0,0,0,487,488,0,473,474,0,475,476,0,487,488,0,0,0,0,0,0,419,420,0,0,0,0,
+489,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,451,452,0,0,0,0,
+489,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,392,0,0,0,0,
+489,489,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,481,482,483,484,389,390,387,388,0,0,0,0,0,387,388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,423,424,0,0,0,0,
+489,489,489,0,0,0,0,0,0,387,388,0,0,0,0,0,0,0,0,0,0,0,0,0,513,514,515,516,421,422,419,420,0,0,0,0,0,419,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,455,456,0,0,0,0,
+489,489,489,0,0,0,0,0,0,419,420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,453,454,451,452,0,0,0,0,0,451,452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,387,388,0,0,389,390,487,488,0,0,0,0,
+489,0,0,0,0,0,379,380,381,451,452,0,379,380,381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,419,420,0,0,421,422,0,0,0,0,0,0,
+489,0,0,0,0,0,411,412,413,0,0,0,411,412,413,395,396,393,394,395,396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,390,389,390,0,0,389,390,0,0,0,0,0,0,0,0,0,0,0,0,451,452,0,0,453,454,0,0,0,0,0,0,
+0,0,0,0,0,0,443,444,0,0,0,0,443,444,0,427,428,425,426,427,428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,421,422,421,422,0,0,421,422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,395,396,0,475,476,0,0,0,0,475,476,0,459,460,457,458,459,460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,395,396,397,398,393,394,0,0,453,454,453,389,390,0,453,454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,384,0,0,0,0,0,0,
+0,0,0,427,428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,427,428,429,430,425,426,0,0,0,0,415,421,422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,416,0,0,0,0,0,0,
+0,0,0,459,460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,459,460,461,462,457,458,0,0,0,0,447,453,454,380,381,0,0,0,379,380,381,0,0,0,0,0,0,0,0,0,0,0,447,448,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,448,0,0,0,0,0,0,379,380,381,0,0,0,391,392,0,0,0,0,0,0,0,0,0,0,393,394,411,412,413,397,398,0,411,412,413,377,378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393,394,397,398,0,0,0,0,411,412,413,0,397,398,423,424,0,0,0,0,0,0,0,0,0,0,425,426,443,444,0,429,430,0,443,444,0,409,410,0,389,390,395,396,397,398,0,0,397,398,393,394,0,0,0,0,
+0,0,0,393,394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,426,429,430,0,0,0,0,443,444,0,0,429,430,455,456,0,0,0,0,0,0,0,0,0,0,457,458,475,476,0,461,462,0,475,476,0,441,442,0,421,422,427,428,429,430,0,0,429,430,425,426,0,0,0,0,
+0,0,0,425,426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,458,461,462,0,0,0,0,475,476,0,0,461,462,487,488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,473,474,0,453,454,459,460,461,462,0,0,461,462,457,458,0,0,0,0,
+0,0,0,457,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,384,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,416,0,0,0,0,0,0,
+0,0,0,479,480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,389,390,387,388,395,396,393,394,447,448,0,0,0,0,0,0,
+0,0,0,511,512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,391,392,383,384,0,393,394,0,0,0,0,0,0,0,421,422,419,420,427,428,425,426,0,0,0,0,0,0,0,0,
+0,0,0,543,544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,397,398,395,396,383,384,0,0,0,0,0,0,0,0,395,396,0,0,0,0,0,0,0,0,0,0,423,424,415,416,0,425,426,0,0,0,0,0,0,0,453,454,451,452,459,460,457,458,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,430,427,428,415,416,0,0,0,0,0,0,0,0,427,428,0,0,0,0,0,0,0,0,0,0,455,456,447,448,0,457,458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,461,462,459,460,447,448,0,0,0,0,0,0,0,0,459,460,393,394,397,398,481,482,483,484,397,398,487,488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,509,510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,383,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,425,426,429,430,513,514,515,516,429,430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,541,542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,415,416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,457,458,461,462,0,0,0,0,461,462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,447,448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,393,394,395,396,397,398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,425,426,427,428,429,430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,457,458,459,460,461,462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
 </data>
  </layer>
- <layer id="3" name="zhangai" width="75" height="50">
+ <layer id="12" name="图块层 51" width="75" height="50">
   <data encoding="csv">
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+0,0,0,0,0,715,716,717,718,719,0,0,0,0,0,0,0,0,0,0,0,0,0,720,721,722,723,724,0,715,716,717,718,719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,747,748,749,750,751,0,0,720,721,722,723,724,0,0,0,0,0,0,752,753,754,755,756,0,747,748,749,750,751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,779,780,781,782,783,0,0,752,753,754,755,756,0,720,721,722,723,724,784,785,786,787,788,0,779,780,781,782,783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,811,812,813,814,815,0,0,784,785,786,787,788,0,752,753,754,755,756,816,817,818,819,820,0,811,812,813,814,815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+880,881,882,883,884,843,844,845,846,847,0,0,816,817,818,819,820,0,784,785,786,787,788,848,849,850,851,852,0,843,844,845,846,847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+912,913,914,915,916,0,0,0,0,0,0,0,848,849,850,851,852,0,816,817,818,819,820,0,0,0,0,0,0,0,726,727,728,729,730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+944,945,946,947,948,0,0,0,0,0,0,0,0,0,0,0,0,0,848,849,850,851,852,0,0,0,0,0,0,0,758,759,760,761,762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+976,977,978,979,980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,791,792,793,794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+1008,1009,1010,1011,1012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,823,824,825,826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854,855,856,857,858,0,0,0,0,737,738,739,740,741,0,715,716,717,718,719,0,0,720,721,722,723,724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,769,770,771,772,773,0,747,748,749,750,751,0,0,752,753,754,755,756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,886,887,888,889,890,0,0,0,0,801,802,803,804,805,0,779,780,781,782,783,0,0,784,785,786,787,788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,551,552,553,554,555,0,0,0,0,0,0,0,0,0,0,0,0,918,919,920,921,922,715,716,717,718,833,834,835,836,837,0,811,812,813,814,815,0,0,816,817,818,819,820,0,0,0,0,0,715,716,717,718,719,0,710,711,712,713,714,0,0,
+0,0,0,0,0,0,0,0,561,562,563,564,565,583,584,585,586,587,0,0,0,0,0,0,0,0,0,0,0,0,950,951,952,953,954,747,748,749,750,865,866,867,868,869,0,843,844,845,846,847,0,0,848,849,850,851,852,0,0,0,0,0,747,748,749,750,751,0,742,743,744,745,746,0,0,
+0,0,0,0,0,0,0,0,593,594,595,596,597,615,616,617,618,619,0,0,0,0,0,0,0,0,0,0,0,0,982,983,984,985,986,779,780,781,782,783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,721,722,723,724,0,0,0,779,780,781,782,783,0,774,775,776,777,778,0,0,
+0,875,876,877,878,879,0,0,625,626,627,628,629,647,648,649,650,651,0,0,0,0,0,0,0,0,0,0,0,0,1014,1015,1016,1017,1018,811,812,813,814,815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,752,753,754,755,756,0,0,0,811,812,813,814,815,0,806,807,808,809,810,0,0,
+0,907,908,909,910,911,0,0,657,658,659,660,661,679,680,681,682,683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,843,844,845,846,847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,784,785,786,787,788,0,0,0,843,844,845,846,847,0,838,839,840,841,842,0,0,
+0,939,940,941,942,943,0,0,689,690,691,692,693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,816,817,818,819,820,0,0,0,0,0,0,0,0,0,0,0,726,727,728,729,730,
+0,971,972,973,974,975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,848,849,850,851,852,0,0,0,0,0,0,0,0,0,0,0,758,759,760,761,762,
+0,1003,1004,1005,1006,1007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,791,792,793,794,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,823,824,825,826,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,854,855,856,857,858,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,561,562,563,564,565,561,562,563,564,565,0,0,0,0,0,0,0,0,0,0,891,892,893,894,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,731,732,733,734,735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,720,721,722,723,724,556,557,558,559,560,0,0,593,594,595,596,597,593,594,595,596,597,0,0,0,731,732,733,734,735,0,0,923,924,925,926,927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,763,764,765,766,767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,752,753,754,755,756,588,589,590,591,592,0,0,625,626,627,628,629,625,626,627,628,629,0,0,0,763,764,765,766,767,0,0,955,956,957,958,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,795,796,797,798,799,0,0,0,0,0,0,0,0,0,0,886,887,888,889,890,0,0,
+0,0,784,785,786,787,788,620,621,622,623,624,0,0,657,658,659,660,661,657,658,659,660,661,0,0,0,795,796,797,798,799,0,0,987,988,989,990,561,562,563,564,565,0,0,0,0,0,0,0,0,0,0,827,828,829,830,831,0,0,2684355563,2684355531,2684355499,2684355467,2684355435,0,0,0,918,919,920,921,922,0,0,
+0,0,816,817,818,819,820,652,653,654,655,656,0,0,689,690,691,692,693,689,690,691,692,693,0,0,0,827,828,829,830,831,0,0,1019,1020,1021,1022,593,594,595,596,597,0,0,556,557,558,559,560,556,557,558,859,860,861,862,863,0,0,2684355564,2684355532,2684355500,2684355468,2684355436,0,0,0,950,951,952,953,954,0,0,
+0,0,848,849,850,851,852,684,685,686,687,688,0,0,0,0,0,0,0,561,562,563,564,565,0,0,0,859,860,861,862,863,0,0,0,0,0,0,625,626,627,628,629,0,0,588,589,590,591,592,588,589,590,591,592,0,0,0,0,0,2684355565,2684355533,2684355501,2684355469,2684355437,0,0,0,982,983,984,985,986,0,0,
+875,876,877,878,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,593,594,595,596,597,720,721,722,723,724,0,715,716,717,718,719,0,0,0,657,658,659,660,661,0,0,620,621,622,623,624,620,621,622,623,624,0,0,0,0,0,2684355566,2684355534,2684355502,2684355470,2684355438,0,0,0,1014,1015,1016,1017,1018,0,0,
+907,908,909,910,911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,625,626,627,628,629,752,753,754,755,756,0,747,748,749,750,751,0,0,0,689,690,691,692,693,0,0,652,653,654,655,656,652,653,654,655,656,0,0,720,721,722,2684355567,2684355535,2684355503,2684355471,2684355439,0,0,0,0,0,0,0,0,0,0,
+939,940,941,942,943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,658,659,660,661,784,785,786,787,788,0,779,780,781,782,783,0,0,0,0,0,0,0,0,0,0,684,685,686,687,688,684,685,686,687,688,0,0,752,753,754,755,756,0,0,0,0,0,0,886,887,888,889,890,0,0,
+971,972,973,974,975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,689,690,691,692,693,816,817,818,819,820,0,811,812,813,814,815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,784,785,786,787,788,0,0,0,0,0,0,918,919,920,921,922,0,0,
+1003,1004,1005,1006,1007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,848,849,850,851,852,0,843,844,845,846,847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,816,817,818,819,820,0,0,0,0,0,0,950,951,952,953,954,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,848,849,850,851,852,0,0,0,0,0,0,982,983,984,985,986,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1014,1015,1016,1017,1018,0,0,
+876,877,878,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,727,728,729,730,0,0,0,
+908,909,910,911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,758,759,760,761,762,0,0,0,
+940,941,942,943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,731,732,733,734,735,0,0,0,0,0,0,0,790,791,792,793,794,0,0,0,
+972,973,974,975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,731,732,733,734,735,765,766,767,0,0,731,732,733,734,735,822,823,824,825,826,0,0,0,
+1004,1005,1006,1007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,731,732,733,734,735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,891,892,893,894,895,0,763,764,765,766,767,797,798,799,0,0,763,764,765,766,767,854,855,856,857,858,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,763,764,765,766,767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,924,925,926,927,0,795,796,797,798,799,829,830,831,0,0,795,796,797,798,799,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,795,796,797,798,799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,955,956,957,958,959,0,827,828,829,830,831,861,862,863,0,0,827,828,829,830,831,0,0,0,0,0,0,0,0,
+880,881,882,883,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,727,728,729,730,827,828,829,830,831,0,0,731,732,733,734,735,0,0,0,731,732,733,734,735,0,0,987,988,989,990,991,0,859,860,861,862,863,0,0,0,0,0,859,860,861,862,863,0,0,0,0,0,0,0,0,
+912,913,914,915,916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,758,759,760,761,762,859,860,861,862,863,0,0,763,764,765,766,767,0,0,0,763,764,765,766,767,0,0,1019,1020,1021,1022,1023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+944,945,946,947,948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,791,792,793,794,0,0,0,0,0,0,0,795,796,797,798,799,0,0,0,795,796,797,798,799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+976,977,978,979,980,0,0,891,892,893,894,895,0,0,0,0,0,0,0,822,823,824,825,826,0,0,0,0,0,0,0,827,828,829,830,831,0,0,0,827,828,829,830,831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+1008,1009,1010,1011,1012,0,0,923,924,925,926,927,0,0,891,892,893,894,895,854,855,856,857,858,0,0,0,0,0,0,0,859,860,861,862,863,0,0,0,859,860,861,862,863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,955,956,957,958,959,0,0,923,924,925,926,927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,987,988,989,990,991,0,0,955,956,957,958,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,1019,1020,1021,1022,1023,0,0,987,988,989,990,991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
 </data>
  </layer>
- <layer id="4" name="jiguan&amp;daoju" width="75" height="50">
+ <layer id="14" name="图块层 6" width="75" height="50">
   <data encoding="csv">
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,265,0,0,265,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,265,0,0,265,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,265,0,0,265,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,265,0,0,265,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,265,265,265,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,265,0,0,0,0,0,0,265,0,265,0,266,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,266,0,0,0,266,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0,265,0,266,0,0,265,0,265,0,265,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,298,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,297,0,265,0,265,0,265,0,0,0,0,0,0,
-0,0,0,0,0,0,265,265,265,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,265,265,0,265,266,0,265,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,265,265,0,297,298,0,265,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,265,0,0,0,265,0,0,0,265,266,265,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0,0,266,265,0,0,0,265,265,265,0,265,265,0,0,265,0,0,265,0,0,0,0,265,0,0,0,265,0,297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,265,0,0,0,265,0,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,297,297,298,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0,265,0,0,0,265,0,297,298,297,297,298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0,0,298,297,0,298,0,297,298,298,0,265,265,0,0,0,0,0,265,0,0,0,0,265,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,265,265,0,265,266,0,265,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,265,265,0,297,298,0,265,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,769,770,771,772,773,0,0,742,743,744,745,746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,737,738,739,740,741,0,0,710,711,712,713,714,0,0,0,0,0,0,801,802,803,804,805,0,0,774,775,776,777,778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,769,770,771,772,773,0,0,742,743,744,745,746,0,0,710,711,712,713,714,834,835,836,837,0,0,806,807,808,809,810,566,567,568,569,570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,801,802,803,804,805,0,0,774,775,776,777,778,0,0,742,743,744,745,746,866,867,868,869,0,0,838,839,840,841,842,598,599,600,601,602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,833,834,835,836,837,0,0,806,807,808,809,810,0,0,774,775,776,777,778,0,0,0,0,0,0,0,0,0,0,0,630,631,632,633,634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,865,866,867,868,869,0,0,838,839,840,841,842,0,0,806,807,808,809,810,0,0,0,0,0,0,0,0,0,0,0,662,663,664,665,666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,838,839,840,841,842,0,0,0,0,0,0,0,0,0,0,0,694,695,696,697,698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+875,876,877,878,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,721,722,723,724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+907,908,909,910,911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,886,887,888,889,890,0,0,0,0,0,0,0,0,710,711,712,713,714,0,0,752,753,754,755,756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+939,940,941,942,943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,918,919,920,921,922,0,0,0,0,0,0,0,0,742,743,744,745,746,0,0,784,785,786,787,788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+971,972,973,974,975,0,0,0,551,552,553,554,555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,950,951,952,953,954,0,0,0,0,0,0,0,0,774,775,776,777,778,0,0,816,817,818,819,820,566,567,568,569,570,0,0,0,0,0,0,710,711,712,713,714,0,0,0,0,0,
+1003,1004,1005,1006,0,0,0,0,583,584,585,586,587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,982,983,984,985,986,0,0,0,720,721,722,723,724,806,807,808,809,810,0,0,848,849,850,851,852,598,599,600,601,602,0,0,0,0,0,0,742,743,744,745,746,0,0,0,0,0,
+0,875,876,877,878,879,0,0,615,616,617,618,619,0,0,0,0,556,557,558,559,560,0,0,0,0,0,0,0,1014,1015,720,721,722,723,724,0,752,753,754,755,756,838,839,840,841,842,0,0,0,0,0,0,0,630,631,632,633,715,716,717,718,719,0,0,774,775,776,777,778,566,567,568,569,570,
+0,907,908,909,910,911,0,0,647,648,649,650,651,0,0,0,0,588,589,590,591,592,0,0,0,0,0,0,0,0,0,752,753,754,755,756,0,784,785,786,787,788,0,0,0,0,0,0,0,0,0,0,0,0,662,663,664,665,747,748,749,750,751,0,0,806,807,808,809,810,598,599,600,601,602,
+0,939,940,941,942,943,0,0,679,680,681,682,683,0,0,0,0,620,621,622,623,624,0,0,0,0,0,0,0,0,0,784,785,786,787,788,0,816,817,818,819,820,0,0,0,0,0,0,0,0,0,0,0,0,694,695,696,697,779,780,781,782,783,0,0,838,839,840,841,842,630,631,632,633,634,
+0,971,972,973,974,975,0,0,0,0,0,0,0,0,0,0,0,652,653,654,655,656,0,0,0,0,0,0,0,0,0,816,817,818,819,820,0,848,849,850,851,852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,811,812,813,814,815,0,0,0,0,0,0,0,662,663,664,665,666,
+0,1003,1004,1005,1006,1007,0,0,0,0,0,0,0,0,0,0,0,684,685,686,687,688,0,0,0,0,0,0,0,0,0,848,849,850,851,852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,843,844,845,846,847,0,0,0,0,0,0,0,694,695,696,697,698,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+869,870,871,872,873,874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+901,902,903,904,905,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+933,934,935,936,937,938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,886,887,888,889,890,
+965,966,967,968,969,970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,891,892,893,894,895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,891,892,893,894,895,0,0,0,0,0,0,0,0,918,919,920,921,922,
+997,998,999,1000,1001,1002,0,0,0,0,556,557,558,559,560,0,0,561,562,563,564,565,0,731,732,733,734,735,0,0,0,923,924,925,926,927,0,561,562,563,564,565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,923,924,925,926,927,0,0,0,0,0,0,0,0,950,951,952,953,954,
+738,739,740,741,0,0,0,0,0,0,588,589,590,591,592,0,0,593,594,595,596,597,0,763,764,765,766,767,0,0,0,955,956,957,958,959,0,593,594,595,596,597,0,0,0,0,0,0,0,0,0,0,0,571,572,573,574,955,956,957,958,959,0,0,0,0,0,0,0,0,982,983,984,985,986,
+770,771,772,773,0,0,0,0,0,0,620,621,622,623,624,0,0,625,626,627,628,629,0,795,796,797,798,799,0,0,0,987,715,716,717,718,719,625,626,627,628,629,0,0,0,0,0,0,0,0,0,0,0,603,604,605,606,987,988,989,990,991,0,0,0,0,0,0,0,0,1014,1015,1016,1017,1018,
+802,803,804,805,0,0,0,0,0,0,652,653,654,655,656,0,0,657,658,659,660,661,0,827,828,829,830,831,0,0,0,1019,747,748,749,750,751,657,658,659,660,661,0,0,0,0,0,0,0,0,0,0,0,635,636,637,638,1019,1020,1021,1022,1023,0,0,0,0,0,0,0,0,0,0,0,0,0,
+834,835,836,837,0,0,0,0,0,0,684,685,686,687,688,0,0,689,690,691,692,693,0,859,860,861,862,863,0,0,0,0,779,780,781,782,783,689,690,691,692,693,0,0,0,0,0,0,0,0,0,0,0,667,668,669,670,671,0,0,0,0,0,0,0,0,0,886,887,888,889,890,0,0,0,
+866,867,868,869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,811,812,813,814,815,0,0,0,0,0,0,0,0,0,0,0,556,557,558,559,560,720,721,722,723,724,0,0,875,876,877,878,879,0,0,918,919,920,921,922,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,720,721,722,723,724,0,720,721,722,723,724,843,844,845,846,847,0,0,0,0,0,0,0,0,0,0,0,588,589,590,591,592,752,753,754,755,756,0,0,907,908,909,910,911,0,0,950,951,952,953,954,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,752,753,754,755,756,0,752,753,754,755,756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,620,621,622,623,624,784,785,786,787,788,0,0,939,940,941,942,943,0,0,982,983,984,985,986,0,0,0,
+876,877,878,879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,784,785,786,787,788,0,784,785,786,787,788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,652,653,654,655,656,816,817,818,819,820,0,0,971,972,973,974,975,0,0,1014,1015,1016,1017,1018,0,0,0,
+908,909,910,911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,816,817,818,819,820,0,816,817,818,819,820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,684,685,686,687,688,848,849,850,851,852,0,0,1003,1004,1005,1006,1007,0,0,0,0,0,0,0,0,0,0,
+940,941,942,943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,848,849,850,851,852,0,848,849,850,851,852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,726,727,728,729,730,0,0,
+972,973,974,975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,758,759,760,761,762,0,0,
+1004,1005,1006,1007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,790,791,792,793,794,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,822,823,824,825,826,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,731,732,0,0,0,0,0,0,0,0,0,0,0,854,855,856,857,858,0,0,
+880,881,882,883,884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,731,732,733,734,735,0,0,763,764,0,891,892,893,894,895,0,0,0,571,572,573,574,575,0,0,0,0,
+912,913,914,915,916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,731,732,733,734,735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,763,764,765,766,767,0,0,795,796,0,923,924,925,926,927,0,0,0,603,604,605,606,607,0,0,0,0,
+944,945,946,947,948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,731,732,733,734,735,0,0,763,764,765,766,767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,795,796,797,798,799,0,0,827,828,0,955,956,957,958,959,0,0,0,635,636,637,638,639,0,0,0,0,
+976,977,978,979,980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,763,764,765,766,767,0,0,795,796,797,798,799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,828,829,830,831,0,0,859,860,0,987,988,989,990,991,0,0,0,667,668,669,670,671,0,0,0,0,
+1008,1009,1010,1011,1012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,795,796,797,798,799,0,0,827,828,829,830,831,0,0,731,732,733,734,735,0,0,0,891,892,893,894,895,859,860,861,862,863,0,0,0,0,0,1019,1020,1021,1022,1023,0,0,0,699,700,701,702,703,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,827,828,829,830,831,0,0,859,860,861,862,863,0,0,763,764,765,766,767,0,0,0,923,924,925,926,927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,859,860,861,862,863,0,0,0,0,0,0,0,0,0,795,796,797,798,799,0,0,0,955,956,957,958,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,731,732,733,734,735,0,0,0,0,0,0,0,0,0,891,892,893,894,895,0,0,0,0,0,0,0,0,0,0,0,0,0,827,828,829,830,831,0,0,0,987,988,989,990,991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,763,764,765,766,767,0,0,891,892,893,894,895,0,0,923,924,925,926,927,0,0,0,0,0,0,0,0,0,0,0,0,0,859,860,861,862,863,0,0,0,1019,1020,1021,1022,1023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,795,796,797,798,799,0,0,923,924,925,926,927,0,0,955,956,957,958,959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,827,828,829,830,831,0,0,955,956,957,958,959,0,0,987,988,989,990,991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+0,0,0,859,860,861,862,863,0,0,987,988,989,990,991,0,0,1019,1020,1021,1022,1023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
+</data>
+ </layer>
+ <layer id="3" name="zhezhao" width="75" height="50" visible="0" locked="1" opacity="0.41">
+  <data encoding="csv">
+370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,433,402,402,402,402,402,402,402,402,402,434,370,370,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+370,370,370,433,402,402,402,402,402,402,402,402,402,434,370,370,370,370,370,370,370,371,0,0,0,0,0,0,0,0,0,369,370,370,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+370,370,370,371,0,0,0,0,0,0,0,0,0,401,402,402,402,402,402,402,402,403,0,0,0,0,0,0,0,0,0,369,370,370,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+370,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+370,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,
+370,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,
+370,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,466,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,
+370,370,370,465,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,339,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,
+370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,371,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,
+370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,371,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,370,370,370,433,402,402,402,402,402,402,402,402,402,402,402,402,434,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,
+370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,465,338,339,0,0,0,0,0,0,369,370,370,370,370,370,370,370,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,
+370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,371,0,0,0,0,0,337,466,370,370,370,370,370,370,370,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,433,402,402,402,402,402,402,402,402,402,402,434,370,370,370,
+370,370,370,370,433,402,402,402,402,402,402,402,402,402,434,370,370,370,370,370,370,370,370,371,0,0,0,0,0,369,370,370,370,370,370,370,370,370,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,371,0,0,0,0,0,0,0,0,0,0,369,370,370,370,
+370,370,370,370,371,0,0,0,0,0,0,0,0,0,401,402,402,402,402,402,402,402,402,403,0,0,0,0,0,401,402,402,402,402,402,402,402,402,402,402,403,0,0,0,0,0,0,0,0,0,0,0,0,401,402,402,402,402,402,402,403,0,0,0,0,0,0,0,0,0,0,369,370,370,370,
+370,370,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,
+370,370,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,
+370,370,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,
+370,370,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,
+370,370,370,370,371,0,0,0,0,0,0,0,0,0,0,337,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,338,339,0,0,0,0,0,0,0,0,0,0,0,337,338,338,338,338,338,338,338,339,0,0,0,0,0,0,0,0,0,369,370,370,370,
+77,370,370,370,465,338,338,338,338,338,338,338,338,338,338,466,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,371,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,370,371,0,0,0,0,0,0,0,0,0,369,370,370,370,
+77,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,371,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,370,371,0,0,0,0,0,0,0,0,0,369,370,370,370,
+77,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,371,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,370,465,338,339,0,0,0,0,0,337,338,466,370,370,370,
+77,370,370,433,402,402,402,402,402,402,402,402,402,402,402,402,402,402,402,402,434,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,465,338,338,338,338,338,338,338,338,338,338,338,466,370,370,370,370,370,370,370,370,370,371,0,0,0,0,0,369,370,370,370,370,370,
+77,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,371,0,0,0,0,337,466,370,370,370,370,370,
+77,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,370,370,370,370,370,433,402,402,402,402,402,402,402,402,402,402,402,402,402,434,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,371,0,0,0,0,369,370,370,370,370,370,370,
+77,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,370,370,370,370,433,403,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,371,0,0,0,0,369,370,370,370,370,370,370,
+77,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,370,370,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,402,402,402,402,402,402,402,402,434,370,370,370,370,370,370,370,371,0,0,0,0,369,370,370,370,370,370,370,
+77,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,402,402,402,402,402,402,402,402,402,402,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,434,433,402,402,402,402,402,403,0,0,0,0,401,434,370,370,370,370,370,
+77,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,401,403,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,
+77,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,
+77,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,
+77,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,466,370,370,370,370,370,
+77,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,
+77,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,
+77,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,338,338,338,338,338,338,338,338,338,338,338,338,338,466,370,370,370,370,370,370,
+77,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,338,338,338,338,338,338,338,466,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,
+77,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,338,338,338,338,338,338,338,338,339,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,
+77,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,338,338,466,370,370,370,370,370,370,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,
+77,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,370,370,370,370,370,465,338,339,0,0,0,0,0,0,0,0,0,0,337,466,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,
+77,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,370,370,370,370,370,370,370,465,338,338,338,338,338,338,338,338,338,338,466,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,
+77,370,370,371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,369,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,
+77,370,370,465,338,338,338,338,338,339,0,0,0,0,0,0,0,337,338,338,466,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,
+77,370,370,370,370,370,370,370,370,465,338,338,338,338,338,338,338,466,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,
+77,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,
+77,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,
+77,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370,370
 </data>
  </layer>
- <layer id="5" name="pengzhuang" width="75" height="50">
+ <layer id="5" name="pengzhuang" width="75" height="50" visible="0" locked="1">
   <data encoding="csv">
 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,

BIN
assets/resources/test/1_01.png


+ 2 - 2
assets/resources/test/1_01.png.meta

@@ -19,11 +19,11 @@
       "trimThreshold": 1,
       "rotated": false,
       "offsetX": 0,
-      "offsetY": 266,
+      "offsetY": 0,
       "trimX": 0,
       "trimY": 0,
       "width": 1024,
-      "height": 492,
+      "height": 1024,
       "rawWidth": 1024,
       "rawHeight": 1024,
       "borderTop": 0,

+ 1 - 1
settings/project.json

@@ -83,7 +83,7 @@
     "width": 960,
     "height": 640
   },
-  "last-module-event-record-time": 1625451440015,
+  "last-module-event-record-time": 1626402982158,
   "assets-sort-type": "name",
   "facebook": {
     "appID": "",